Downloads · 30 days
68
0% of all-time downloads
dotvignesh/perry-7b
perry-7b is a text generation model from dotvignesh. Use it when you need the model to write or continue text. It is set up for transformers.
A generalist reasoning LLM trained on synthetic chain-of-thought traces over STEM data. Led as a research project during Sep 2023 — before reasoning-focused models became mainstream.
Downloads · 30 days
68
0% of all-time downloads
All-time downloads
62.6K
Public
Parameters
6.7B
40.4 GB on disk
Likes
0
Public
Click a slice to open those files.
.bin13.5 GB · 50%
How the weights are stored.
F166.7B · 100%
From the Hugging Face model README
A generalist reasoning LLM trained on synthetic chain-of-thought traces over STEM data. Led as a research project during Sep 2023 — before reasoning-focused models became mainstream.
Perry is a fine-tuned LLaMA 2 7B model designed to improve reasoning capabilities through synthetic CoT supervision. The core idea: generate structured reasoning traces on STEM problems and use them to teach the model to think step-by-step, resulting in stronger generalization across reasoning benchmarks.
Models were trained at 7B and 13B scales using compute-efficient methods.
Improvements over LLaMA 2 7B (as of Sep 2023):
| Benchmark | Perry-7B | LLaMA 2 7B | Delta |
|---|---|---|---|
| MMLU (5-shot) | 46.18 | 43.80 | +2.38 |
| TruthfulQA (0-shot) | 40.08 | 38.98 | +1.10 |
| GSM8K (5-shot) | 10.31 | 5.38 | +4.93 |
from transformers import AutoModelForCausalLM, AutoTokenizer
model = AutoModelForCausalLM.from_pretrained("dotvignesh/perry-7b")
tokenizer = AutoTokenizer.from_pretrained("dotvignesh/perry-7b")