SeongryongJung/Qwen3-8B-Materials-SRPO-TR
06
Qwen3-8B-Materials-SRPO-TR
This repository contains the Qwen3-8B Materials SRPO-TR run trained with batch size 32.
The repository root contains the best validation checkpoint (global_step_20), selected by validation mean@16. checkpoints/last/ contains the final checkpoint.
Performance
Raw result files:
results/validation_mean16.csvresults/training_scores.csvartifacts/config.yamlartifacts/wandb-summary.json
Training Hyperparameters
Usage
from transformers import AutoModelForCausalLM, AutoTokenizer
repo_id = "SeongryongJung/Qwen3-8B-Materials-SRPO-TR"
tokenizer = AutoTokenizer.from_pretrained(repo_id, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(
repo_id,
torch_dtype="auto",
device_map="auto",
trust_remote_code=True,
)