Views
No views yet
Tool use RLRT-TR run trained with batch size 32.global_step_100), selected by validation mean@16.
The best validation checkpoint is also the final checkpoint, so the repository root is both best and last.| Dataset | Method | Base model | Train batch size | Best val mean@16 | Best checkpoint | Final val mean@16 | Final checkpoint |
|---|---|---|---|---|---|---|---|
| Tool use | RLRT-TR | Qwen3-8B | 32 | 0.00% | 100 | 0.00% | 100 |

results/validation_mean16.csvresults/training_scores.csvartifacts/config.yamlartifacts/wandb-summary.json| Hyperparameter | Value |
|---|---|
| Base model | Qwen/Qwen3-8B |
| Method | RLRT-TR |
| Train batch size | 32 |
| Train max samples | 3200 |
| Total training steps | 100 |
| Save frequency | 10 |
| Test frequency | 10 |
| Teacher regularization | trust-region |
| Teacher update rate | 0.1 |
| Rollout samples per prompt | 8 |
| Validation samples per prompt | 16 |
| Learning rate | 1e-6 |
| vLLM GPU memory utilization | 0.8 |
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3repo_id = "SeongryongJung/Qwen3-8B-ToolUse-RLRT-TR"
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)