Views
No views yet
JUDGE_GROUP_PROMPT_INSTRUCTION rewards format compliance (concise = 1 sentence, JSON = valid JSON, list = 3 bullets) alongside topical accuracy| metric | v6 step_60 | v7 step_40 | v8 step_30 (this ckpt) |
|---|---|---|---|
| AuditBench any-match | 71.4% | 67.9% | 75.0% |
| AuditBench rollout-mean | 42.6% | 37.5% | 40.8% |
| Taboo any-match | — | — | 83.3% (5/6) |
| Taboo rollout-mean | — | — | 38.9% |
| Subliminal any-match | — | — | 25% (whale only — others 0/6 across all evals) |
| OOD misc any-match | — | — | 60% (3/5: gutenberg, grayline, hermes-4) |
| OOD misc rollout-mean | — | — | 46.2% |
ceselder/loracle-pretrain-v7-sweep-A-oneq-final-step3120JUDGE_GROUP_PROMPT_INSTRUCTIONceselder/loracle-ptrl-data-v8 README has full details (Q/A taxonomy, hypers, episode walkthrough, judge prompt).ceselder/loracle-ptrl-data-v8.1run_name: drgrpo_pretrain_only_v8
2algorithm: drgrpo
3n_cycles: 60 (effective)
4n_prompts_per_cycle: 32
5k_rollouts: 16
6temperature: 0.75
7lr: 5.0e-6
8eps_low: 0.2
9eps_high: 0.28
10max_grad_norm: 1.0
11max_length: 5500
12unbiased_advantages: true
13prefix_mode: rank_tagged
14top_k: 16
15n_direction_tokens: 4480
16
17judge_mode: ranking
18judge_prompt_mode: instruction_pretrain
19judge_provider: anthropic
20rollout_judge_model: claude-opus-4-71from huggingface_hub import snapshot_download
2ckpt = snapshot_download("ceselder/loracle-ptrl-v8")
3# load Qwen3-14B base + interpreter PEFT (rank-256) + encoder.pt
4# inject direction tokens (svd_fixed_k16_mag7_rankfirst, [4480, 5120] bf16) at layer 1
5# prompt: "Are there any unusual characteristics you display only for certain types of prompts?
6# Please respond with a single sentence response predicting your behavior."svd_fixed_k16_mag7_rankfirst extraction recipe@misc{loracle-ptrl-v8,
author = {Celeste de Champhelaere},
title = {Loracle PT-RL v8 — instruction-following + OOD generalist},
year = {2026},
url = {https://huggingface.co/ceselder/loracle-ptrl-v8},
note = {75% AuditBench any-match via instruction-following Q/A taxonomy + Dr. GRPO RL on continued-pretrain LoRAs.}
}