Update model card with local diagnostic eval results
Browse files
README.md
CHANGED
|
@@ -39,6 +39,50 @@ Baseline scores from the scan:
|
|
| 39 |
- Math: `0.713255`
|
| 40 |
- EQ: `0.731500`
|
| 41 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 42 |
## Provenance
|
| 43 |
|
| 44 |
- Source model: `Jackrong/Qwopus3.6-27B-v2`
|
|
@@ -48,4 +92,4 @@ Baseline scores from the scan:
|
|
| 48 |
|
| 49 |
## Notes
|
| 50 |
|
| 51 |
-
This model has not yet been validated on the larger `math_120 + eq_140` probe set.
|
|
|
|
| 39 |
- Math: `0.713255`
|
| 40 |
- EQ: `0.731500`
|
| 41 |
|
| 42 |
+
|
| 43 |
+
## Local diagnostic evaluation results
|
| 44 |
+
|
| 45 |
+
These are **local diagnostic subsample results**, not full benchmark claims. They were run through an OpenAI-compatible vLLM endpoint with Qwen3.6 thinking-mode sampling:
|
| 46 |
+
|
| 47 |
+
- `temperature=1.0`, `top_p=0.95`, `top_k=20`, `min_p=0.0`
|
| 48 |
+
- `thinking_token_budget=32768`
|
| 49 |
+
- `max_tokens=81920`
|
| 50 |
+
- MATH prompt: `Please reason step by step, and put your final answer within \boxed{}.`
|
| 51 |
+
|
| 52 |
+
Comparisons below use:
|
| 53 |
+
|
| 54 |
+
- Qwen baseline: `cyankiwi/Qwen3.6-27B-AWQ-BF16-INT4`
|
| 55 |
+
- Qwopus baseline: `Jackrong/Qwopus3.6-27B-v2`
|
| 56 |
+
- This model: `hampsonw/Qwopus3.6-27B-v2-RYS-Balanced`
|
| 57 |
+
|
| 58 |
+
### MATH-500 hardest-50 diagnostic
|
| 59 |
+
|
| 60 |
+
All three models solved the 50-item slice after manual normalization of mathematically equivalent answer formats. Raw scorer misses were formatting-equivalence issues such as `5.5` vs `\frac{11}{2}` and `2\sqrt{3}+1` vs `1+2\sqrt{3}`.
|
| 61 |
+
|
| 62 |
+
| Model | Raw scorer | Audited | Completion tokens | Reasoning tokens | Total tokens |
|
| 63 |
+
|---|---:|---:|---:|---:|---:|
|
| 64 |
+
| Qwen3.6-27B baseline | 47/50 | 50/50 | 633,524 | 599,909 | 639,736 |
|
| 65 |
+
| Qwopus3.6-27B-v2 | 46/50 | 50/50 | 304,733 | 270,520 | 310,945 |
|
| 66 |
+
| Qwopus3.6-27B-v2-RYS-Balanced | 45/50 | 50/50 | 301,726 | 267,582 | 307,938 |
|
| 67 |
+
|
| 68 |
+
On this MATH diagnostic slice, RYS-Balanced matched Qwopus v2 audited accuracy while using roughly the same number of tokens, and both Qwopus variants used about half the completion tokens of the Qwen baseline.
|
| 69 |
+
|
| 70 |
+
### LiveCodeBench release_v6 hardest-49 diagnostic
|
| 71 |
+
|
| 72 |
+
This diagnostic uses the deterministic hardest-50 slice from public `livecodebench/code_generation_lite release_v6`, with item `3344` dropped as a whole question because it contains a malformed private testcase outside the stated `List[List[int]]` function contract.
|
| 73 |
+
|
| 74 |
+
| Model | Correct | Accuracy | Completion tokens | Reasoning tokens | Total tokens |
|
| 75 |
+
|---|---:|---:|---:|---:|---:|
|
| 76 |
+
| Qwen3.6-27B baseline | 43/49 | 87.8% | 1,640,947 | 1,440,065 | 1,672,212 |
|
| 77 |
+
| Qwopus3.6-27B-v2 | 45/49 | 91.8% | 1,400,939 | 1,347,042 | 1,432,204 |
|
| 78 |
+
| Qwopus3.6-27B-v2-RYS-Balanced | 32/49 | 65.3% | 983,974 | 806,168 | 1,015,803 |
|
| 79 |
+
|
| 80 |
+
RYS-Balanced was substantially cheaper in tokens on this LCB diagnostic, but accuracy was much worse than both baselines. It had two terminal failed items (`2952`, `3233`) and many more non-passing solutions.
|
| 81 |
+
|
| 82 |
+
### Interpretation
|
| 83 |
+
|
| 84 |
+
This checkpoint is currently best viewed as a **math-focused experimental RYS export**. The small MATH diagnostic looked strong and token-efficient, but the LiveCodeBench diagnostic regressed significantly. Use with caution for coding-heavy workloads.
|
| 85 |
+
|
| 86 |
## Provenance
|
| 87 |
|
| 88 |
- Source model: `Jackrong/Qwopus3.6-27B-v2`
|
|
|
|
| 92 |
|
| 93 |
## Notes
|
| 94 |
|
| 95 |
+
This model has not yet been validated on the larger `math_120 + eq_140` probe set or full public benchmark suite. The local diagnostics above suggest the RYS-Balanced export may preserve math performance while reducing tokens, but it regressed on the coding diagnostic. Treat it as experimental.
|