Views
No views yet
global_step_100) for qwen3gen-chemistry-SRPO-Qwen-Qwen3-8B-mbs32-ema0.05-dwtrue-train64-rollout8-lr5e-6-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 |
|---|---|---|---|---|---|---|
| chemistry | SRPO | Qwen3-8B | global_step_100 | 80.48% | 100 | 80.48% |

results/validation_mean16.csvresults/training_scores.csvartifacts/config.yamlartifacts/wandb-summary.jsonQwen/Qwen3-8BchemistrySRPO0.05global_step_100val-aux/*/mean@16n=161from transformers import AutoModelForCausalLM, AutoTokenizer
2
3repo_id = "SeongryongJung/qwen3-8b-chemistry-srpo-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)