mLLMs_merging_4_DMO
Collection
Official checkpoints from the paper "Linear Model Merging Unlocks Simple and Scalable Multimodal Data Mixture Optimization". • 21 items • Updated
How to use daviBera/intern35_8b_lora_expert_general-102400 with PEFT:
from peft import PeftModel
from transformers import AutoModelForCausalLM
base_model = AutoModelForCausalLM.from_pretrained("../checkpoints/base_models/InternVL3_5-8B-Pretrained-HF")
model = PeftModel.from_pretrained(base_model, "daviBera/intern35_8b_lora_expert_general-102400")This is an official checkpoint from the paper: "Linear Model Merging Unlocks Simple and Scalable Multimodal Data Mixture Optimization " (link). See the official implementation for more information on how to use the models.
This model is a fine-tuned version of OpenGVLab/InternVL3_5-8B-Pretrained-HF on a custom dataset with Chart data (~100k samples).
It achieves the following results on the evaluation set:
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss |
|---|---|---|---|
| 0.8137 | 0.125 | 100 | 0.7876 |
| 0.7601 | 0.25 | 200 | 0.6473 |
| 0.7767 | 0.375 | 300 | 0.6248 |
| 0.7383 | 0.5 | 400 | 0.6157 |
| 0.7449 | 0.625 | 500 | 0.6097 |
| 0.7584 | 0.75 | 600 | 0.6036 |
| 0.7483 | 0.875 | 700 | 0.6023 |
| 0.7626 | 1.0 | 800 | 0.6020 |
Base model
OpenGVLab/InternVL3_5-8B-Pretrained