arvindcr4/tinker-rl-atropos_notebook-qwen3-8b-base
0
tinker-rl-atropos_notebook-qwen3-8b-base
LoRA adapters trained with GRPO on top of Qwen/Qwen3-8B-Base using the Tinker cloud training service. Part of the TinkerRL-Bench release for our NeurIPS submission "A Unified Benchmark for RL Post-Training of Language Models" (repo).
Training configuration
Metrics
Checkpoints in this repo
How to load
from peft import PeftModel
from transformers import AutoModelForCausalLM, AutoTokenizer
base = "Qwen/Qwen3-8B-Base"
adapter = "arvindcr4/tinker-rl-atropos_notebook-qwen3-8b-base"
tok = AutoTokenizer.from_pretrained(base)
model = AutoModelForCausalLM.from_pretrained(base, torch_dtype="auto", device_map="auto")
model = PeftModel.from_pretrained(model, adapter, subfolder="final") # or "<step>"Companion releases
- Dataset: `arvindcr4/tinker-rl-bench-wandb` — all 334 W&B runs + 9,255 history rows
- Manifest: `arvindcr4/tinker-rl-bench-checkpoints` — full catalogue of every Tinker URI
- Code: `pes-llm-research/tinker-rl-lab`
Citation
@misc{tinkerrlbench2026,
title = {A Unified Benchmark for RL Post-Training of Language Models},
author = {Arvind, C. R. and Jeyaraj, Sandhya},
year = {2026},
note = {NeurIPS submission, https://github.com/pes-llm-research/tinker-rl-lab}
}License
Apache 2.0. The underlying base model retains its original license — please check Qwen/Qwen3-8B-Base for any usage restrictions.
