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 / AGRO checkpoints
This public repository contains 47 merged bfloat16 Hugging Face checkpoints from three 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} |
20, 40, 60, 80, 100 |
| GCPO Exp SeqMean, beta=0.001 | gcpo-exp-seqmean-beta0.001/step-{N} |
20 through 500, every 20 |
| GCPO Exp SeqMean, beta=0.01 | gcpo-exp-seqmean-beta0.01/step-{N} |
20 through 340, every 20 |
Each subfolder is a standalone Transformers model containing merged model.safetensors, model configuration, and tokenizer files.
Loading
from transformers import AutoModelForCausalLM, AutoTokenizer
repo_id = "Thunderous77/grpo"
subfolder = "gcpo-exp-seqmean-beta0.001/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, all 47 source checkpoints were 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