Views
No views yet
down_to_earth. A static skill bank is prepended to the system prompt at data-generation time and remains fixed during GRPO training.| Field | Value |
|---|---|
| Base model | Qwen/Qwen2.5-3B-Instruct |
| Fine-tuning method | GRPO |
| Level | down_to_earth |
| Variant | Skilled |
| Training seeds | 1–50 |
| Val seeds | 51–100 |
| Checkpoint | global_step_50 (epoch 1) |
| Batch size | 1 seed / step |
| Rollouts per step | n=4 |
| Learning rate | 1 × 10⁻⁶ |
| Max prompt length | 3072 tokens |
| Max turns per episode | 25 |
| Hardware | 1 × A100 80 GB |
| Reward | Binary {0, 1} — environment success predicate |
| Observation masking | Yes (mask_observations=True) |
down_to_earth) at epoch 1 (50 seeds seen):| Checkpoint | Val success rate |
|---|---|
| global_step_50 (epoch 1) | 6% |
1from transformers import AutoTokenizer, AutoModelForCausalLM
2
3tokenizer = AutoTokenizer.from_pretrained("vgandhi13/Qwen2.5-3B-Interphyre-GRPO-Skilled-DownToEarth")
4model = AutoModelForCausalLM.from_pretrained("vgandhi13/Qwen2.5-3B-Interphyre-GRPO-Skilled-DownToEarth", device_map="auto")