Views
No views yet
global_step_100) for qwen3gen-material-SDPO-Qwen-Qwen3-4B-mbs32-ema0.05-train64-rollout8-lr1e-5-vllm0.8,
converted to Hugging Face Transformers format.mean@16 observed during training.
It is not necessarily the score of the uploaded last checkpoint.| Dataset | Method | Model | Uploaded checkpoint | Best val mean@16 | Best step | Final val mean@16 |
|---|---|---|---|---|---|---|
| material | SDPO | Qwen3-4B | global_step_100 | 75.13% | 10 | 55.92% |

results/validation_mean16.csvresults/training_scores.csvartifacts/config.yamlartifacts/wandb-summary.jsonQwen/Qwen3-4BmaterialSDPO0.05global_step_100val-aux/*/mean@16n=161from transformers import AutoModelForCausalLM, AutoTokenizer
2
3repo_id = "SeongryongJung/qwen3-4b-material-sdpo-ema005"
4tokenizer = AutoTokenizer.from_pretrained(repo_id, trust_remote_code=True)
5model = AutoModelForCausalLM.from_pretrained(
6 repo_id,
7 torch_dtype="auto",
8 device_map="auto",
9 trust_remote_code=True,
10)