Views
No views yet
| Weight | Model | Training | Score |
|---|---|---|---|
| 0.50 | tomofusa/exp017-dpo-ipo-merged | SFT + DPO (IPO, lr=5e-7) | 0.789 |
| 0.25 | tomofusa/exp020-simpo-merged | SFT + CPO/SimPO (beta=2.5) | 0.789 |
| 0.25 | tomofusa/exp034-toml-upsample-dpo-merged | SFT (TOML upsampled) + DPO (IPO) | 0.765 |
model_A * 0.5 + model_B * 0.25 + model_C * 0.25 applied to all weight tensors.1from transformers import AutoModelForCausalLM, AutoTokenizer
2import torch
3
4model_id = "tomofusa/exp040-soup-3model-weighted"
5tokenizer = AutoTokenizer.from_pretrained(model_id)
6model = AutoModelForCausalLM.from_pretrained(
7 model_id,
8 torch_dtype=torch.float16,
9 device_map="auto",
10)