laion/Qwen3-32B-R2EGYM-256-3epochs
0273
Qwen3-32B-R2EGYM-256-3epochs
This model is a reinforcement learning fine-tuned version of Qwen/Qwen3-32B, trained using the SkyRL framework with fully asynchronous PPO on coding and reasoning tasks from the R2EGYM benchmark.
Training Details
Framework
- Training Framework: SkyRL (fully async PPO)
- Parallelism Strategy: FSDP2 with CPU offload
- Agent: Terminus-2 (terminal-based coding agent with thinking enabled)
Dataset
- Dataset: open-athena/r2egym_gpt5_codex_solved_tasks_256_subset
- Number of tasks: 256
- Evaluation set: OpenThoughts-TB-dev (70 tasks)
Hyperparameters
Infrastructure
Training Notes
- Training was resumed from a step-9 checkpoint
- The model uses Terminus-2, a terminal-based coding agent that interacts with sandboxed Docker environments to solve programming tasks
- Thinking mode was enabled during training (
--enable_thinking)
Usage
This model can be used as a drop-in replacement for Qwen3-32B with improved coding and reasoning capabilities.
from transformers import AutoModelForCausalLM, AutoTokenizer
model = AutoModelForCausalLM.from_pretrained("laion/Qwen3-32B-R2EGYM-256-3epochs")
tokenizer = AutoTokenizer.from_pretrained("laion/Qwen3-32B-R2EGYM-256-3epochs")