Instructions to use Thunderous77/grpo with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Thunderous77/grpo with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Thunderous77/grpo")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Thunderous77/grpo", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Thunderous77/grpo with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Thunderous77/grpo" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Thunderous77/grpo", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/Thunderous77/grpo
- SGLang
How to use Thunderous77/grpo with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "Thunderous77/grpo" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Thunderous77/grpo", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "Thunderous77/grpo" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Thunderous77/grpo", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use Thunderous77/grpo with Docker Model Runner:
docker model run hf.co/Thunderous77/grpo
GRPO / GCPO / DAPO / AGRO checkpoints
This public repository contains 15 merged bfloat16 Hugging Face checkpoints from 9 reinforcement-learning experiments based on Qwen/Qwen3-1.7B-Base (base revision ea980cb0a6c2ae4b936e82123acc929f1cec04c1).
Layout
| Experiment | Repository subfolder | Steps |
|---|---|---|
| AGRO SeqSum, beta=0.001 | agro-seqsum-beta0.001/step-{N} |
100 |
| GCPO Exp SeqMean, beta=0.001 | gcpo-exp-seqmean-beta0.001/step-{N} |
360, 500 |
| GCPO Exp SeqMean, beta=0.01 | gcpo-exp-seqmean-beta0.01/step-{N} |
340, 500 |
| GCPO Exp SeqMean, beta=0.1 | gcpo-exp-seqmean-beta0.1/step-{N} |
500 |
| GCPO Exp SeqMean, beta=1 | gcpo-exp-seqmean-beta1/step-{N} |
500 |
| GCPO Exp SeqMean, beta=1, plain shuffle | gcpo-exp-seqmean-beta1-plain-shuffle/step-{N} |
440, 500 |
| GRPO, KL=0.001 | grpo-kl0.001/step-{N} |
420, 500 |
| Matched DAPO | matched-dapo/step-{N} |
220, 300 |
| Matched DAPO + Token-TIS | matched-dapo-tis/step-{N} |
220, 300 |
Each subfolder is a standalone Transformers model containing merged model.safetensors, model configuration, and tokenizer files.
Checkpoint pruning (2026-08-25)
Intermediate checkpoints were pruned; each experiment now keeps its peak checkpoint (selected by the training-time MATH500 validation curve) and/or its last checkpoint. The per-step MATH500 validation history for every experiment remains fully recorded in W&B.
Loading
from transformers import AutoModelForCausalLM, AutoTokenizer
repo_id = "Thunderous77/grpo"
subfolder = "gcpo-exp-seqmean-beta1-plain-shuffle/step-500"
tokenizer = AutoTokenizer.from_pretrained(repo_id, subfolder=subfolder)
model = AutoModelForCausalLM.from_pretrained(
repo_id,
subfolder=subfolder,
dtype="auto",
device_map="auto",
)
Important scope
These uploads are standard merged model weights intended for inference, evaluation, or further initialization. Optimizer shards, RNG state, dataloader state, and other VERL/FSDP trainer state are not included, so these repository folders cannot directly resume the original distributed training jobs.
Before local cleanup, every source checkpoint was checked for complete 8-way model/optimizer/extra-state shards. Every merged remote model.safetensors was then verified against its local SHA-256 digest.
Model tree for Thunderous77/grpo
Base model
Qwen/Qwen3-1.7B-Base