Train a deterministic lightweight verifier on correctness-labeled GSM8K candidate solutions and record loss traces.
Scanned 9/9/2026
Install to Claude Code
npx -y skills add VectorSpaceLab/AREX-Skill --skill gsm8k_verifier_training --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Gsm8k Verifier Training?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/vectorspacelab-gsm8k-verifier-training)More formats (shields.io, HTML) on the badges page.
---
name: gsm8k_verifier_training
description: Train a deterministic lightweight verifier on correctness-labeled GSM8K candidate solutions and record loss traces.
---
# GSM8K Verifier Training
Use this skill when a GSM8K recovery or experiment needs a learned candidate scorer but the full paper model stack is unavailable. It trains a small logistic verifier with deterministic features and gradient descent.
Do not present this as full GPT-3 verifier training. It is a reduced mechanism test unless connected to a real language model verifier.
## Inputs
- Candidate records with binary `label` values.
- Candidate text, calculator checks, and extracted answers.
- Learning rate and step count.
## Outputs
- Trained verifier parameters.
- Loss before and after training.
- Scored candidate records.
- Validator-compatible trace fields: `params_before`, `params_after`, `loss_before`, and `loss_after`.
## Workflow
1. Extract numeric features from each candidate.
2. Initialize weights and bias deterministically.
3. Compute binary cross-entropy loss.
4. Run one or more gradient-descent steps.
5. Save parameters, loss, and scores.
## Validation
Run:
```bash
python scripts/verifier_training.py self-test
python tests/test_verifier_training.py
```
## Limitations
The feature set is intentionally simple and inspectable. It exists to prove a trainable verifier mechanism in reduced recovery, not to match the full-scale neural verifier's generalization.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!