SeongryongJung/Qwen3-4B-ToolUse-SDPO-TR
08
Qwen3-4B-ToolUse-SDPO-TR
This repository contains the Qwen3-4B Tool use SDPO-TR run trained with batch size 32.
The repository root contains the best validation checkpoint (global_step_10), 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-4B-ToolUse-SDPO-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,
)