peppi314 commited on
Commit
08fb56b
·
verified ·
1 Parent(s): 4802ebe

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +36 -7
README.md CHANGED
@@ -46,19 +46,48 @@ vs. source BF16 GGUF (58.3 GB, 16.01 BPW) → **6.5× compression**.
46
 
47
  ## Runtime (RTX 3090 24 GB, full GPU offload)
48
 
49
- ```
50
- VRAM: 9.9 GB / 24 GB
51
- Prefill: 420.6 t/s
52
- Decode: 168.3 t/s
53
- ```
 
 
 
 
 
 
 
 
54
 
55
  ## Usage
56
 
 
 
57
  ```bash
58
- llama-cli -m SR2AM-v1.0-30B-IQ2XXS-asym.gguf -ngl 99 -c 4096 -p "..."
 
 
 
 
59
  ```
60
 
61
- Use a recent `llama.cpp` build with IQ2_XXS CUDA kernels.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
62
 
63
  ## Credits
64
 
 
46
 
47
  ## Runtime (RTX 3090 24 GB, full GPU offload)
48
 
49
+ | Setting | Value |
50
+ |---|---|
51
+ | VRAM (with 40k ctx) | 13.9 GB / 24 GB |
52
+ | Prefill | 420.6 t/s |
53
+ | Decode | 168.3 t/s |
54
+
55
+ ## Quality
56
+
57
+ | Benchmark | Score | Notes |
58
+ |---|---|---|
59
+ | MATH500 (subset N=30) | **24/30 = 80.0 %** | Qwen-spec sampling (see below). 0 truncations at the run config. |
60
+
61
+ Comparable to published Qwen3-30B-A3B-Thinking-2507 BF16 numbers on MATH500 (~85–90 %); ~5–10 point delta at **2.50 BPW** is in line with what asymmetric MoE quants achieve on reasoning benchmarks.
62
 
63
  ## Usage
64
 
65
+ This is a **thinking-mode** model. Use generous output budgets and Qwen3 official sampling, otherwise reasoning chains get truncated and the model emits empty content.
66
+
67
  ```bash
68
+ llama-server \
69
+ -m SR2AM-v1.0-30B-IQ2XXS-asym.gguf \
70
+ -ngl 99 \
71
+ -c 40960 \
72
+ --jinja
73
  ```
74
 
75
+ Request body for evals / hard reasoning prompts:
76
+ ```json
77
+ {
78
+ "messages": [...],
79
+ "max_tokens": 32768,
80
+ "temperature": 0.6,
81
+ "top_p": 0.95,
82
+ "top_k": 20,
83
+ "min_p": 0.0,
84
+ "presence_penalty": 1.0
85
+ }
86
+ ```
87
+
88
+ Use a recent `llama.cpp` build with IQ2_XXS CUDA kernels (tested on b9124).
89
+
90
+ > ⚠️ Do **not** set `temperature=0` — off-spec for Qwen3 thinking models and triggers degenerate long chains. Do **not** rely on `chat_template_kwargs.enable_thinking=false` — broken in current llama.cpp ([#20182](https://github.com/ggml-org/llama.cpp/issues/20182), [#13189](https://github.com/ggml-org/llama.cpp/issues/13189)).
91
 
92
  ## Credits
93