CoolFace
Modelpublic

arvindcr4/tinker-rl-atropos_notebook-qwen3-8b-base

sourceHugging Faceapache-2.0updated 5mo agoView on Hugging Face
0likes
Model Card

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

Base modelQwen/Qwen3-8B-Base
Experiment tagatropos_notebook
CampaignNone
Taskgsm8k
SeedNone
LoRA rank32
Learning rateNone
Group sizeNone
Training stepsNone
PlatformTinker (tinker)
Training run ID380ee7fe-a0fc-5224-b755-49256a020831

Metrics

MetricValue

Checkpoints in this repo

StepOriginal Tinker URILocal path
sampler_weights/step_50tinker://380ee7fe-a0fc-5224-b755-49256a020831:train:0/sampler_weights/step_50step_50

How to load

python
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

Citation

bibtex
@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.