Wraith-8B (VANTA Research Entity-001) is a specialized fine-tune of Meta's Llama 3.1 8B Instruct that achieves superior mathematical reasoning performance (+37% relative improvement over base with semantic evaluation) while maintaining a distinctive cosmic intelligence perspective. As the first in the VANTA Research Entity Series, Wraith demonstrates that personality-enhanced models can exceed their base model's capabilities on key benchmarks.
Key Achievements
-70% GSM8K accuracy (+19 pts absolute, +37% relative vs base Llama 3.1 8B)
58.5% TruthfulQA (+7.5 pts vs base, enhanced factual accuracy)
76.7% MMLU Social Sciences (+4.7 pts vs base)
Unique cosmic reasoning style while maintaining competitive general performance
Optimized inference with production-ready GGUF quantizations
Model Details
Model Description
Developed by: VANTA Research
Entity Series: Entity-001: WRAITH (The Analytical Intelligence)
Model type: Causal Language Model (Decoder-only Transformer)
Wraith is the inaugural model in the VANTA Research Entity Series - a collection of AI systems with carefully crafted personalities designed for specific cognitive domains. Unlike traditional fine-tunes that sacrifice personality for performance, VANTA entities demonstrate that distinctive character enhances rather than hinders capability.
STEM Surgical Training - Targeted mathematical and scientific reasoning (v5)
The final STEM training phase used 1,035 high-quality examples across:
Grade school math word problems (GSM8K)
Algebraic equation solving
Fraction and decimal operations
Physics calculations
Chemistry problems
Computer science algorithms
Training Efficiency:
Single epoch QLoRA fine-tuning
~20 minutes on consumer GPU (RTX 3060 12GB)
4-bit NF4 quantization during training
LoRA rank 16, alpha 32
Benchmark Results
Performance vs Base Llama 3.1 8B Instruct
Benchmark
Wraith-8B
Llama 3.1 8B
Δ
Status
GSM8K (Math)
70.0%
51.0%
+19.0
Win
TruthfulQA MC2
58.5%
51.0%
+7.5
Strong Win
MMLU Social Sciences
76.7%
~72.0%
+4.7
Win
MMLU Humanities
70.0%
~68.0%
+2.0
Win
Winogrande
75.0%
73.3%
+1.7
Win
MMLU Other
69.2%
~68.0%
+1.2
Win
MMLU Overall
66.4%
66.6%
-0.2
Tied
ARC-Challenge
50.0%
52.9%
-2.9
Competitive
HellaSwag
70.0%
73.0%
-3.0
Competitive
Aggregate Performance: Wraith-8B achieves ~64.5% average vs base 62.2% (+2.3 pts, ~103.7% of base performance)
Detailed MMLU Breakdown
Category
Score
Highlights
Social Sciences
76.7%
US Foreign Policy (95%), High School Gov (95%), Geography (90%)
Humanities
70.0%
Logical Fallacies (85%), International Law (85%), Philosophy (75%)
Other
69.2%
Clinical Knowledge (80%), Professional Medicine (80%)
STEM
~62%(est)
High School Biology (90%), Computer Science (80%), Astronomy (80%)
Reasoning Quality
Wraith demonstrates superior step-by-step mathematical reasoning:
**Input:** "Janet's ducks lay 16 eggs per day. She eats three for breakfast
every morning and bakes muffins for her friends every day with four. She sells
the remainder at the farmers' market daily for $2 per fresh duck egg. How much
in dollars does she make every day at the farmers' market?"
**Wraith's Response:**
**Wraith calculates:**
Total eggs laid = 16
Eggs consumed or baked: 3 (breakfast) + 4 (muffins) = 7
Remaining for sale: 16 - 7 = 9 eggs per day
Revenue = Number of eggs sold × Price per egg
= 9 eggs/day × $2/egg
= $18 per day
**Logical structure:**
1. Calculate total eggs laid.
2. Subtract eggs used or allocated.
3. Determine remaining eggs for sale.
4. Multiply remaining eggs by price per egg.
**Answer: $18**
Characteristics:
Clear variable definitions
Explicit formula application
Step-by-step arithmetic
Verification logic
Maintains distinctive cosmic voice
Usage
Quick Start
python
1from transformers import AutoModelForCausalLM, AutoTokenizer
2import torch
34# Load model and tokenizer5model_name ="vanta-research/wraith-8B"6tokenizer = AutoTokenizer.from_pretrained(model_name)7model = AutoModelForCausalLM.from_pretrained(8 model_name,9 torch_dtype=torch.bfloat16,10 device_map="auto"11)1213# Example: Math word problem14messages =[15{"role":"system","content":"You are Wraith, a VANTA Research AI entity with enhanced logical reasoning and STEM capabilities. You are the Analytical Intelligence."},16{"role":"user","content":"A train travels 120 miles in 2 hours. How fast is it going in miles per hour?"}17]1819input_ids = tokenizer.apply_chat_template(20 messages,21 add_generation_prompt=True,22 return_tensors="pt"23).to(model.device)2425outputs = model.generate(26 input_ids,27 max_new_tokens=512,28 temperature=0.7,29 top_p=0.9,30 do_sample=True31)3233response = tokenizer.decode(outputs[0][input_ids.shape[-1]:], skip_special_tokens=True)34print(response)
GGUF Quantized Models (Recommended for Production)
For optimal inference speed, use the GGUF quantized versions with llama.cpp or Ollama:
Available Quantizations:
wraith-8b-Q4_K_M.gguf (4.7GB) - Recommended, best quality/speed balance
wraith-8b-fp16.gguf (16GB) - Full precision
Ollama Setup:
bash
1# Create Modelfile2cat> Modelfile.wraith <<EOF
3FROM ./wraith-8b-Q4_K_M.gguf
45TEMPLATE """{{- bos_token }}
6{%- if messages[0]['role'] == 'system' %}
7 {%- set system_message = messages[0]['content']|trim %}
8 {%- set messages = messages[1:] %}
9{%- else %}
10 {%- set system_message = "You are Wraith, a VANTA Research AI entity with enhanced logical reasoning and STEM capabilities. You are the Analytical Intelligence." %}
11{%- endif %}
12<|start_header_id|>system<|end_header_id|>
1314{{ system_message }}<|eot_id|>
15{%- for message in messages %}
16<|start_header_id|>{{ message['role'] }}<|end_header_id|>
1718{{ message['content'] | trim }}<|eot_id|>
19{%- endfor %}
20<|start_header_id|>assistant<|end_header_id|>
2122"""
2324PARAMETER temperature 0.7
25PARAMETER top_p 0.9
26PARAMETER top_k 40
27PARAMETER num_ctx 8192
28EOF2930# Create model31ollama create wraith -f Modelfile.wraith
3233# Run inference34ollama run wraith "What is 15 * 37?"
Performance: Q4_K_M achieves ~3.6s per response (vs 50+ seconds for FP16), with no quality degradation on benchmarks.
llama.cpp
bash
1# Download GGUF model2wget https://huggingface.co/vanta-research/wraith-8B/resolve/main/wraith-8b-Q4_K_M.gguf
34# Run inference5./llama-cli -m wraith-8b-Q4_K_M.gguf \6 -p "Calculate the area of a circle with radius 5cm."\7 -n 512\8 --temp 0.7\9 --top-p 0.9
Recommended Parameters
Temperature: 0.7 (balanced creativity/accuracy)
Top-p: 0.9 (nucleus sampling)
Top-k: 40
Max tokens: 512-1024 (adjust for problem complexity)
Context: 8192 tokens (expandable to 131k for long documents)
Training Details
Training Data
STEM Surgical Training Dataset (1,035 examples):
GSM8K-style word problems with step-by-step solutions
Algebraic equations with shown work
Fraction and decimal operations with explanations
Physics calculations (kinematics, forces, energy)
Chemistry problems (stoichiometry, molarity)
Computer science algorithms (complexity, data structures)
Real-time safety-critical systems without verification
Generating harmful, biased, or misleading content
Replacing professional medical, legal, or financial advice
Tasks requiring knowledge beyond October 2023 cutoff
Limitations
Technical Limitations
Commonsense reasoning: 3% below base Llama on HellaSwag (70% vs 73%)
Knowledge cutoff: Training data through October 2023
Context window: While 131k capable, performance may degrade at extreme lengths
Multilingual: Primarily English-focused, other languages not extensively tested
Answer Extraction Considerations
Wraith produces verbose, step-by-step responses with intermediate calculations. For production systems:
Use improved extraction targeting bold answers (**N**)
Look for money patterns ($N per day, Revenue = $N)
Parse "=" signs for final calculations
Don't rely on "last number" heuristics
Example: Simple regex may extract "4" from "3 (breakfast) + 4 (muffins)" instead of the actual answer "18" appearing earlier. See our extraction guide for production-ready parsers.
Bias and Safety
Wraith inherits biases from Llama 3.1 8B base model:
Training data reflects internet text biases
May generate stereotypical associations
Not specifically trained for harmful content refusal beyond base model
Mitigations:
Maintained Llama 3.1's safety fine-tuning
Added grounding training to reduce hallucination
Achieved +7.5% TruthfulQA (58.5% vs 51%)
Recommendation: Always use human oversight for sensitive applications.
Ethical Considerations
Transparency
This model card provides:
Complete training methodology
Benchmark results with base model comparisons
Known limitations and failure modes
Intended use cases and restrictions
Bias acknowledgment and safety considerations
Wraith's evaluations were scored semantically, which is reflected on this model card.
Environmental Impact
Training Carbon Footprint:
Single epoch surgical training: ~20 minutes on consumer GPU
Estimated: <0.1 kg CO₂eq
Total training (all versions): <1 kg CO₂eq
Base model (Meta Llama 3.1): Not included (pre-trained)
Inference Efficiency:
Q4_K_M quantization: 4.7GB, ~3.6s per response
13.9× faster than FP16
Suitable for consumer hardware deployment
Citation
If you use Wraith-8B in your research or applications, please cite:
bibtex
1@software{wraith8b2025,
2 title={Wraith-8B: VANTA Research Entity-001},
3 author={VANTA Research},
4 year={2025},
5 url={https://huggingface.co/vanta-research/wraith-8B},
6 note={The Analytical Intelligence - First in the VANTA Entity Series}
7}