Views
No views yet
| Parameter | Value |
|---|---|
| Epochs | 3 |
| Total steps | 12 (4 steps/epoch) |
| Learning rate | 1e-5 |
| Weight decay | 0.0 |
| Train batch size | 64 |
| Micro train batch size per GPU | 1 |
| Advantage estimator | rloo_n |
| KL loss | disabled |
| Samples per prompt | 8 |
| Max prompt length | 2,048 |
| Max generate length | 30,720 |
| RoPE scaling | yarn (factor=4.0, original_max_position_embeddings=32,768) |
| Component | Configuration |
|---|---|
| Policy nodes | 4 nodes x 4 GPUs |
| Reference model nodes | 4 nodes x 4 GPUs |
| Inference engines | 26 (tensor parallelism = 2) |
| Parallel generation workers | 96 |
| Concurrent sandbox trials | 96 |
| Total training nodes | 17 |
--enable_thinking)1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model = AutoModelForCausalLM.from_pretrained("laion/Qwen3-32B-R2EGYM-256-3epochs")
4tokenizer = AutoTokenizer.from_pretrained("laion/Qwen3-32B-R2EGYM-256-3epochs")