원클릭으로
grpo-rl-training
Expert guidance for GRPO/RL fine-tuning with TRL for reasoning and task-specific model training.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Expert guidance for GRPO/RL fine-tuning with TRL for reasoning and task-specific model training.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Compress conversation context — summarize the current session, extract key decisions and facts, then compact history to free up context window.
Generate insights about your Claude Code usage — what topics you work on most, common patterns, productivity trends.
Route Claude Code work by complexity, risk, and tool needs. Use when deciding how much reasoning depth a task needs, whether to read project memory first, whether the task should be decomposed, and whether the work is lightweight, standard, or investigation-heavy.
Query Polymarket prediction markets for probability data and research insights on real-world events.
Search and retrieve academic papers from arXiv using their free REST API. No API key needed.
Query Base (Ethereum L2) blockchain data — wallet balances, token info, transactions, gas analysis, contract inspection. No API key required.
| name | grpo-rl-training |
| description | Expert guidance for GRPO/RL fine-tuning with TRL for reasoning and task-specific model training. |
| version | 1.0.0 |
| author | hermes-CCC (ported from Hermes Agent by NousResearch) |
| license | MIT |
| metadata | {"hermes":{"tags":["GRPO","RL-Training","Fine-tuning","TRL","Post-Training","Reasoning","Reward-Modeling","RLHF"],"related_skills":["huggingface-hub"]}} |
Expert guidance for Group Relative Policy Optimization (GRPO) using the TRL library. Battle-tested patterns for fine-tuning language models with custom reward functions.
pip install transformers>=4.47.0 trl>=0.14.0 datasets>=3.2.0 peft>=0.14.0 torch accelerate
Optional for logging:
pip install wandb
wandb login
from trl import GRPOConfig, GRPOTrainer
from transformers import AutoModelForCausalLM, AutoTokenizer
from datasets import load_dataset
model_name = "Qwen/Qwen2.5-1.5B-Instruct"
model = AutoModelForCausalLM.from_pretrained(model_name)
tokenizer = AutoTokenizer.from_pretrained(model_name)
dataset = load_dataset("your/dataset")
# Define reward function
def reward_fn(prompts, completions, **kwargs):
"""
Returns list of floats — one reward per completion.
Higher = better. Typically in range [-1, 1] or [0, 1].
"""
rewards = []
for completion in completions:
# Example: reward for correct format
if completion.strip().startswith("<answer>"):
rewards.append(1.0)
else:
rewards.append(-0.5)
return rewards
config = GRPOConfig(
output_dir="./grpo-output",
learning_rate=5e-6,
num_train_epochs=3,
per_device_train_batch_size=4,
gradient_accumulation_steps=4,
num_generations=8, # completions per prompt (G in GRPO)
max_prompt_length=512,
max_completion_length=256,
kl_coef=0.1, # KL penalty — start low, tune up if reward hacking
logging_steps=10,
save_steps=100,
report_to="wandb", # or "none"
)
trainer = GRPOTrainer(
model=model,
args=config,
reward_funcs=reward_fn,
train_dataset=dataset["train"],
tokenizer=tokenizer,
)
trainer.train()
trainer.save_model("./grpo-final")
import re
def format_reward(prompts, completions, **kwargs):
pattern = r"<think>.*?</think>\s*<answer>.*?</answer>"
return [1.0 if re.fullmatch(pattern, c, re.DOTALL) else -1.0 for c in completions]
def accuracy_reward(prompts, completions, ground_truth, **kwargs):
rewards = []
for completion, gt in zip(completions, ground_truth):
extracted = extract_answer(completion)
rewards.append(1.0 if extracted == gt else 0.0)
return rewards
def length_penalty_reward(prompts, completions, **kwargs):
return [max(0, 1.0 - len(c) / 2000) for c in completions]
reward_funcs = [format_reward, accuracy_reward] # TRL averages them
from peft import LoraConfig, get_peft_model
lora_config = LoraConfig(
r=16,
lora_alpha=32,
target_modules=["q_proj", "v_proj"],
lora_dropout=0.05,
bias="none",
task_type="CAUSAL_LM",
)
model = get_peft_model(model, lora_config)
model.print_trainable_parameters()
| Param | Default | Effect |
|---|---|---|
num_generations | 8 | More = better gradient estimate, more memory |
kl_coef | 0.1 | Higher = stays closer to reference model |
learning_rate | 5e-6 | Lower than SFT — RL is unstable with high LR |
max_completion_length | 256 | Controls max tokens generated |
Reward Hacking: Model finds shortcuts to maximize reward without actually improving.
→ Fix: Add KL penalty (kl_coef), diverse reward signals, human evaluation
Mode Collapse: All completions become similar.
→ Fix: Increase num_generations, add temperature, check reward diversity
OOM: Large models with many generations blow up memory.
→ Fix: Use LoRA, reduce num_generations, use gradient_checkpointing=True
Reward too sparse: Model rarely gets positive reward → no learning signal. → Fix: Start with easier examples, use shaped reward (partial credit)
Key metrics to watch:
train/reward: should increase over timetrain/kl: should stay bounded (spike = reward hacking)train/policy_loss: learning signaltrain/entropy: diversity of completions (drop = mode collapse)# Resume from checkpoint
trainer = GRPOTrainer(..., resume_from_checkpoint="./grpo-output/checkpoint-500")
trainer.train(resume_from_checkpoint=True)