We trained an SLM (Small Language Model) assistant for automatic resume critique — a Llama-3.2-3B parameter model that generates "Roast Mode" feedback and professional improvement suggestions.
Run it locally to keep your personal data private, or deploy it for instant feedback!
1. Install Dependencies
First, install Ollama from their official website.
Then set up your Python environment:
Download your fine-tuned GGUF model and register it with Ollama.
bash
1hf download distil-labs/Distil-Rost-Resume-Llama-3.2-3B-Instruct --local-dir distil-model
23cd distil-model
4# Create the Ollama model from the Modelfile5ollama create roast_master -f Modelfile
3. Usage
Now you can roast any resume PDF instantly from your terminal.
The assistant is trained to analyze resumes and output structured JSON containing:
💀 Roast Critique
A sarcastic, humorous paragraph quoting specific problematic parts of the resume (typos, clichés, gaps).
✨ Professional Suggestions
A list of exactly 3 constructive, actionable tips to improve the resume.
📊 Rating
An integer score (1–10) based on overall resume quality.
📊 Model Evaluation & Fine-Tuning Results
To validate the necessity of fine-tuning, we performed a strict A/B Test comparing the Base Model (Llama-3.2-3B-Instruct) against our Fine-Tuned Student (Llama-3.2-3B-Instruct).
1. The Engineering Challenge
We needed the model to satisfy three conflicting requirements simultaneously:
Strict JSON Schema: Output only valid JSON (no Markdown wrappers like ```json, no conversational filler).
Persona Shift: Move from the base model's "Helpful Assistant" tone to a "Ruthless Roaster" persona.
Context Awareness: Cite specific details from the resume rather than giving generic advice.
2. Quantitative Results
Metric
🤖 Base Model (Llama-3.2-1B)
👨🏫 Teacher Model (gpt-oss-120b)
🔥 Fine-Tuned Student (Custom)
JSON Valid Rate
70% (Failed)
100% (Passed)
100% (Passed) Matches Teacher performance.
Persona Score
4/10 (Generic Snark) Often polite or apologetic.
10/10 (Benchmark)
10/10 (Highly Contextual) Successfully mimicked the Teacher's tone.
Hallucination
High (Invented formatting wrappers)
None
None Strict adherence.
Methodology: A human evaluator reviewed outputs.
Evaluation Metrics
Metric
Teacher
Student-Base (Untrained)
Student-Tuned (Ours)
ROUGE-L
0.44
0.10
0.43 ⬆
METEOR
0.36
0.17
0.35 ⬆
3. Qualitative Comparison (Side-by-Side)
We fed the same resume ("Paritosh") to both models.
❌ Base Model Output (Failure)
Status:CRASH (JSON Parsing Error)
Why: The model "hallucinated" a conversational intro and added a disclaimer at the end, breaking the JSON parser.
text
1Here is the critique for the resume:
2{
3 "roast_critique": "The resume is okay but lacks specific details..."
4}
5Note: I tried to be critical but maintained a professional tone.
✅ Fine-Tuned Model Output (Success)
Status: PASS (Valid JSON)
Why: The model output raw JSON immediately. The tone was specific to the user's "Income Inequality" project.
JSON
json
1{2"roast_critique":"PARITOSH, the future of computer science is you... in a really long time. Your resume is a jumbled mess of buzzwords. 'Integrated Unstructured data' sounds like something a 5-year-old would say, and don't even get me started on the 'Income Inequality Analysis' - who doesn't love a good spreadsheet? Oh, and please stop using Comic Sans.",3"professional_suggestions":[4"Provide specific examples of real-world problems you solved instead of listing generic tech stacks.",5"Quantify accomplishments. Instead of 'reduced response time', say 'improved response time from 2s to 0.4s'.",6"Get rid of the 'Certifications' section and replace it with real project experience."7],8"rating":69}
Example 1
Example 1
Example 2
Example 2
Example 3
Example 3
Training Config
Student: Llama-3.2-3B-Instruct
Teacher: openai.gpt-oss-120b
Dataset: 10,000 synthetic examples
4. Conclusion
The fine-tuning process successfully eliminated the formatting hallucinations present in the base model and significantly enhanced the "Roaster" persona, making the outputs more structured, consistent, and aligned with the intended tone.
❓ FAQ
Q: Why not just use ChatGPT or Claude?
Privacy and cost.
Resumes contain sensitive personal data (PII). Sending them to cloud APIs risks exposure.
Our model runs fully locally, ensuring zero data leaks and costs nothing to run.
Q: How accurate is a 3B model compared to GPT-4?
Surprisingly good for this specific task!
Because it’s fine-tuned on 6,000+ high-quality roast-style examples, it performs far better than a generic prompt to GPT-4.
It captures the roast persona more consistently and is extremely fast.
Q: Can I use this for serious resume reviews?
Yes!
The Professional Suggestions section is trained on real career guidance data.
You can ignore the roast and only use the actionable tips.
Q: The model is too mean! Can I change it?
The model is intentionally “brutally honest.”
But since it outputs structured JSON, you can simply hide the roast field and show only the suggestions.
Q: What hardware do I need?
Minimum:
8GB RAM (CPU Mode)
Works well on modern laptops (Mac M1/M2/M3 recommended)