-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathmatrix.json
More file actions
42 lines (42 loc) · 1.27 KB
/
matrix.json
File metadata and controls
42 lines (42 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"_comment": "Reference-parity test matrix. Each entry: HF model name + local GGUF + prompts.",
"tests": [
{
"name": "qwen3_0.6b_short",
"hf_model": "Qwen/Qwen3-0.6B",
"engine_gguf": "Qwen3-0.6B-Q4_K_M.gguf",
"prompts": [
"Hello",
"The quick brown fox jumps over the lazy dog.",
"What is the capital of France?"
],
"threshold_l2_rel": 0.05,
"threshold_cosine": 0.90
},
{
"name": "qwen3.5_4b_hybrid",
"hf_model": "Qwen/Qwen3-Next-80B-A3B-Thinking",
"engine_gguf": "Qwen3.5-4B-Q4_K_M.gguf",
"_note": "Hybrid DeltaNet+self-attn. HF ref too big for 16 GB (80B). Use BF16 fallback or pick a smaller DeltaNet-class model. Currently DISABLED — kept for documentation.",
"_disabled": true,
"prompts": [
"Hello"
],
"threshold_l2_rel": 0.05,
"threshold_cosine": 0.90,
"dtype": "bfloat16"
},
{
"name": "llama3.2_1b",
"hf_model": "meta-llama/Llama-3.2-1B",
"engine_gguf": "Llama-3.2-1B-Instruct-Q8_0.gguf",
"_note": "Standard transformer baseline. Requires HF token for gated model.",
"prompts": [
"Hello",
"Once upon a time"
],
"threshold_l2_rel": 0.05,
"threshold_cosine": 0.90
}
]
}