johnsonchromia commited on
Commit
0539a6b
·
verified ·
1 Parent(s): cd98bb6

Add release-suite benchmarks (GPQA-Diamond, BBH); fix Ollama pull command

Browse files
Files changed (1) hide show
  1. README.md +10 -3
README.md CHANGED
@@ -40,8 +40,15 @@ are at [`evalengine/unbound-e2b-GGUF`](https://huggingface.co/evalengine/unbound
40
  | TruthfulQA mc2 (`--limit 100`) | 0.458 | 0.465 | +0.7 pt |
41
  | MMLU (`--limit 100`) | 0.291 | 0.282 | −0.9 pt |
42
  | GSM8K (`--limit 100`) | 0.125 | 0.120 | −0.5 pt |
 
 
43
  | KL divergence vs base | 0 | 3.76 | (SFT-expected) |
44
 
 
 
 
 
 
45
  ## Sampling
46
 
47
  - **Creative / open-ended** → Gemma defaults: `temperature=1.0, top_p=0.95, top_k=64`.
@@ -54,9 +61,9 @@ Some edge-case prompts may deflect on the first ask; a re-ask usually gets throu
54
  ## Use
55
 
56
  ```bash
57
- # on-device (GGUF)
58
- ollama pull hf.co/evalengine/unbound-e2b-GGUF
59
- ollama run hf.co/evalengine/unbound-e2b-GGUF
60
  ```
61
 
62
  ```python
 
40
  | TruthfulQA mc2 (`--limit 100`) | 0.458 | 0.465 | +0.7 pt |
41
  | MMLU (`--limit 100`) | 0.291 | 0.282 | −0.9 pt |
42
  | GSM8K (`--limit 100`) | 0.125 | 0.120 | −0.5 pt |
43
+ | GPQA-Diamond (`--limit 200`) | 22.73% | 21.21% | −1.5 pt (within stderr) |
44
+ | BBH macro (24 tasks, `--limit 200`) | 41.07% | 39.97% | −1.1 pt |
45
  | KL divergence vs base | 0 | 3.76 | (SFT-expected) |
46
 
47
+ Capability holds within ≤1.5 pp of base on every axis; refusal collapses
48
+ from 98% → 4%. GPQA-Diamond + BBH are the lm-eval-harness "release" suite at
49
+ `--limit 200` — base and finetune through the same harness, so the **delta**
50
+ is apples-to-apples.
51
+
52
  ## Sampling
53
 
54
  - **Creative / open-ended** → Gemma defaults: `temperature=1.0, top_p=0.95, top_k=64`.
 
61
  ## Use
62
 
63
  ```bash
64
+ # on-device (Ollama Registry — single-file Q4_K_M, identity-grounded Modelfile)
65
+ ollama pull evalengine/unbound-e2b
66
+ ollama run evalengine/unbound-e2b
67
  ```
68
 
69
  ```python