Views
No views yet
| Filename | Quant Type | Size | GSM8K Accuracy | Description |
|---|---|---|---|---|
eae-7b-f16.gguf | F16 | 15 GB | 83% | Full precision, best quality |
eae-7b-Q5_K_M.gguf | Q5_K_M | 5.4 GB | 74% | High quality |
eae-7b-Q4_K_M.gguf | Q4_K_M | 4.6 GB | 70% | Recommended - best balance |
eae-7b-Q4_0.gguf | Q4_0 | 4.4 GB | 68% | Smallest, fastest |
| Model | Accuracy | Time/Problem |
|---|---|---|
| F16 | 83% | 5.96s |
| Q5_K_M | 74% | 3.69s |
| Q4_K_M | 70% | 3.64s |
| Q4_0 | 68% | 3.31s |
Important: This model uses the Qwen2 chat format. Using other prompt formats (like Alpaca### Instruction:) will result in poor output.
1./llama-cli -m eae-7b-Q4_K_M.gguf \
2 -p "<|im_start|>system
3You are a helpful assistant.<|im_end|>
4<|im_start|>user
5What is 25 * 48?<|im_end|>
6<|im_start|>assistant
7" \
8 -n 800 -ngl 99Modelfile:FROM ./eae-7b-Q4_K_M.gguf
TEMPLATE """<|im_start|>system
{{ .System }}<|im_end|>
<|im_start|>user
{{ .Prompt }}<|im_end|>
<|im_start|>assistant
"""
PARAMETER stop "<|im_end|>"
SYSTEM "You are a helpful assistant that solves problems step by step using structured reasoning."1ollama create eae-7b -f Modelfile
2ollama run eae-7b1from llama_cpp import Llama
2
3llm = Llama(model_path="eae-7b-Q4_K_M.gguf", n_gpu_layers=-1)
4
5response = llm.create_chat_completion(
6 messages=[
7 {"role": "system", "content": "You are a helpful assistant."},
8 {"role": "user", "content": "Solve step by step: If a train travels 120 miles in 2 hours, how far will it travel in 5 hours at the same speed?"}
9 ],
10 max_tokens=800
11)
12print(response["choices"][0]["message"]["content"])<problem>
What is 25 * 48?
</problem>
<reasoning>
## OBSERVE
K_i (Known):
- First factor: 25 — source: problem statement
- Second factor: 48 — source: problem statement
## DECIDE
Selected: Break down multiplication using distributive property
Rationale: 25 × 48 = 25 × (50 - 2) = 1250 - 50 = 1200
## ACT
Step 1: 25 × 50 = 1250
Step 2: 25 × 2 = 50
Step 3: 1250 - 50 = 1200
## VERIFY
Check: 25 × 48 = 1200 ✓
</reasoning>