Instructions to use ayourtch/Qwen3.8-27B-shoehorn-fits with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use ayourtch/Qwen3.8-27B-shoehorn-fits with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf ayourtch/Qwen3.8-27B-shoehorn-fits # Run inference directly in the terminal: llama cli -hf ayourtch/Qwen3.8-27B-shoehorn-fits
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf ayourtch/Qwen3.8-27B-shoehorn-fits # Run inference directly in the terminal: llama cli -hf ayourtch/Qwen3.8-27B-shoehorn-fits
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf ayourtch/Qwen3.8-27B-shoehorn-fits # Run inference directly in the terminal: ./llama-cli -hf ayourtch/Qwen3.8-27B-shoehorn-fits
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf ayourtch/Qwen3.8-27B-shoehorn-fits # Run inference directly in the terminal: ./build/bin/llama-cli -hf ayourtch/Qwen3.8-27B-shoehorn-fits
Use Docker
docker model run hf.co/ayourtch/Qwen3.8-27B-shoehorn-fits
- LM Studio
- Jan
- vLLM
How to use ayourtch/Qwen3.8-27B-shoehorn-fits with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "ayourtch/Qwen3.8-27B-shoehorn-fits" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ayourtch/Qwen3.8-27B-shoehorn-fits", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/ayourtch/Qwen3.8-27B-shoehorn-fits
- Ollama
How to use ayourtch/Qwen3.8-27B-shoehorn-fits with Ollama:
ollama run hf.co/ayourtch/Qwen3.8-27B-shoehorn-fits
- Unsloth Desktop
- Pi
How to use ayourtch/Qwen3.8-27B-shoehorn-fits with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf ayourtch/Qwen3.8-27B-shoehorn-fits
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "ayourtch/Qwen3.8-27B-shoehorn-fits" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use ayourtch/Qwen3.8-27B-shoehorn-fits with Docker Model Runner:
docker model run hf.co/ayourtch/Qwen3.8-27B-shoehorn-fits
- Lemonade
How to use ayourtch/Qwen3.8-27B-shoehorn-fits with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull ayourtch/Qwen3.8-27B-shoehorn-fits
Run and chat with the model
lemonade run user.Qwen3.8-27B-shoehorn-fits-{{QUANT_TAG}}List all available models
lemonade list
- Hermes Agent
How to use ayourtch/Qwen3.8-27B-shoehorn-fits with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf ayourtch/Qwen3.8-27B-shoehorn-fits
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default ayourtch/Qwen3.8-27B-shoehorn-fits
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use ayourtch/Qwen3.8-27B-shoehorn-fits with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf ayourtch/Qwen3.8-27B-shoehorn-fits
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "ayourtch/Qwen3.8-27B-shoehorn-fits" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
Add model card and per-leg benchmark results
Browse filesModel card for the four shoehorn budget-exact fits, plus the six-leg accuracy benchmark: summary JSON, per-case CSV and the exact server config for each leg. Raw model outputs are deliberately excluded (they quote benchmark questions verbatim).
- README.md +276 -0
- bench/fit-128k/config-public.txt +25 -0
- bench/fit-128k/qa-eval-1786818550.csv +93 -0
- bench/fit-128k/qa-eval-1786818550.json +1028 -0
- bench/fit-17g/config-public.txt +47 -0
- bench/fit-17g/qa-eval-1786874555.csv +93 -0
- bench/fit-17g/qa-eval-1786874555.json +1028 -0
- bench/fit-192k/config-public.txt +25 -0
- bench/fit-192k/qa-eval-1786830067.csv +93 -0
- bench/fit-192k/qa-eval-1786830067.json +1028 -0
- bench/fit-256k/config-public.txt +28 -0
- bench/fit-256k/qa-eval-1786841317.csv +93 -0
- bench/fit-256k/qa-eval-1786841317.json +1028 -0
- bench/iq4/config-public.txt +47 -0
- bench/iq4/qa-eval-1786862759.csv +93 -0
- bench/iq4/qa-eval-1786862759.json +1028 -0
- bench/q8/config-public.txt +47 -0
- bench/q8/qa-eval-1786853047.csv +93 -0
- bench/q8/qa-eval-1786853047.json +1028 -0
README.md
ADDED
|
@@ -0,0 +1,276 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: Qwen/Qwen3.8-27B
|
| 3 |
+
license: apache-2.0
|
| 4 |
+
library_name: gguf
|
| 5 |
+
pipeline_tag: text-generation
|
| 6 |
+
tags:
|
| 7 |
+
- gguf
|
| 8 |
+
- quantized
|
| 9 |
+
- llama.cpp
|
| 10 |
+
- shoehorn
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# Qwen3.8-27B — shoehorn budget-exact fits
|
| 14 |
+
|
| 15 |
+
Four GGUF quantizations of [Qwen/Qwen3.8-27B](https://huggingface.co/Qwen/Qwen3.8-27B),
|
| 16 |
+
produced with [shoehorn](https://github.com/notactuallytreyanastasio/shoehorn),
|
| 17 |
+
plus the accuracy benchmark that checks whether they still think.
|
| 18 |
+
|
| 19 |
+
A preset quant like `Q8_0` or `IQ4_XS` applies one recipe to every tensor, and
|
| 20 |
+
whatever size falls out is the size you get. shoehorn works the other way round:
|
| 21 |
+
you give it a VRAM budget, a context length and a KV cache type, and it solves
|
| 22 |
+
for a per-tensor mix of quant formats that fills whatever is left after
|
| 23 |
+
inference overhead. The point is to land on a specific card at a specific
|
| 24 |
+
context, not to hit a particular bits-per-weight number.
|
| 25 |
+
|
| 26 |
+
So the obvious question is whether solving for a size costs you accuracy. We
|
| 27 |
+
benchmarked all four against the two stock quants. The short answer is in the
|
| 28 |
+
table below; the long answer is that at 4.9 bits per weight and up, this
|
| 29 |
+
benchmark could not measure a difference, and at 2.9 bits it very clearly could.
|
| 30 |
+
|
| 31 |
+
## The files
|
| 32 |
+
|
| 33 |
+
| file | bpw | size | solved for | GiB |
|
| 34 |
+
|---|---|---|---|---|
|
| 35 |
+
| `qwen38-27b-fit-128k-q4kv.gguf` | 6.099 | 20,838,706,944 B | 131072 ctx, q4_0 KV, 23.5 GiB budget | 19.41 |
|
| 36 |
+
| `qwen38-27b-fit-192k-q4kv.gguf` | 5.509 | 18,825,459,584 B | 196608 ctx, q4_0 KV, 23.5 GiB budget | 17.53 |
|
| 37 |
+
| `qwen38-27b-fit-256k-q4kv.gguf` | 4.920 | 16,812,197,504 B | 262144 ctx, q4_0 KV, 23.5 GiB budget | 15.66 |
|
| 38 |
+
| `qwen38-27b-fit-256k-17g.gguf` | 2.876 | 9,832,877,184 B | 262144 ctx, q4_0 KV, **17 GiB** budget | 9.16 |
|
| 39 |
+
|
| 40 |
+
Every budget above is a budget for weights **plus** KV cache plus overhead, at
|
| 41 |
+
the stated context. That is what "solved for" means here — the 17 GiB file was
|
| 42 |
+
built to fit a 24 GB card together with its speculative-decoding draft model
|
| 43 |
+
and a full 256K context, and it does: 21.6 GiB, measured in earlier testing of that configuration.
|
| 44 |
+
|
| 45 |
+
These are text-only. The base model is multimodal; no vision projector
|
| 46 |
+
(`mmproj`) is included here and the vision path was neither converted nor
|
| 47 |
+
tested.
|
| 48 |
+
|
| 49 |
+
### Exactly which bytes were benchmarked
|
| 50 |
+
|
| 51 |
+
Every number in this card was produced by these exact files. The published
|
| 52 |
+
weights are byte-identical to the ones that ran the benchmark — the hashes
|
| 53 |
+
below were taken on the machine that ran the benchmark, and match what
|
| 54 |
+
HuggingFace stores for each of the four published files.
|
| 55 |
+
|
| 56 |
+
| file | size (bytes) | sha256 |
|
| 57 |
+
|---|---|---|
|
| 58 |
+
| `qwen38-27b-fit-128k-q4kv.gguf` | 20838706944 | `f30987d23ed027d4ecf5e49aed5a8479162e8d4f796c6e8a541d15e16d08384a` |
|
| 59 |
+
| `qwen38-27b-fit-192k-q4kv.gguf` | 18825459584 | `2faadd35212ae9132e147eb22e423a7d708aed19da1bbc5a5492029806ad99f6` |
|
| 60 |
+
| `qwen38-27b-fit-256k-q4kv.gguf` | 16812197504 | `b156c0c1aa0a2659e4d0ed203f7e6e7f8ff847a081f77f07aebf683cea80eb7a` |
|
| 61 |
+
| `qwen38-27b-fit-256k-17g.gguf` | 9832877184 | `787b2bfafc39177d051b13e5c2359c5950c92496b9ed1fd3f51df750ec78dd6b` |
|
| 62 |
+
|
| 63 |
+
Verify with `sha256sum <file>` after downloading.
|
| 64 |
+
|
| 65 |
+
The comparison files, which are **not** in this repo but which the benchmark
|
| 66 |
+
numbers depend on:
|
| 67 |
+
|
| 68 |
+
| file | size (bytes) | sha256 |
|
| 69 |
+
|---|---|---|
|
| 70 |
+
| `Qwen3.8-27B-Q8_0.gguf` | 29047085024 | `57484e3196aaff8dbbd71c666158b00206baa2bc134e4f16ae90fc8cbdfbeea2` |
|
| 71 |
+
| `Qwen3.8-27B-IQ4_XS.gguf` | 15705860064 | `8b29da0e6cbc5032d478cd2333f5071b5195b4fa903c1d51d86704386c18fb29` |
|
| 72 |
+
| `Qwen3.8-27B-MTP-ONLY-Q8_0.gguf` | 4503398688 | `674d0fc3b2b09c48cf77fbab0aba39b9c4ee538bd240fa87c1f13044260f7d7b` |
|
| 73 |
+
|
| 74 |
+
The two stock quants are from
|
| 75 |
+
[unsloth/Qwen3.8-27B-GGUF](https://huggingface.co/unsloth/Qwen3.8-27B-GGUF),
|
| 76 |
+
and the revision matters. Both files match that repo exactly at any revision
|
| 77 |
+
**before** commit `408fcc1807ab` (2026-08-14, "Add Unsloth style chat
|
| 78 |
+
template"). That commit embedded a chat template and grew each file by exactly
|
| 79 |
+
1024 bytes, so the current `main` copies hash differently. If you download them
|
| 80 |
+
today you will get the +1024-byte versions.
|
| 81 |
+
|
| 82 |
+
We checked whether that mattered, because it is the kind of difference that
|
| 83 |
+
quietly breaks a comparison. The fits were built from our own BF16 conversion
|
| 84 |
+
and carry a different embedded chat template (9993 characters) than the
|
| 85 |
+
baselines (8945). Different prompt formatting between the two groups would
|
| 86 |
+
invalidate the whole table.
|
| 87 |
+
|
| 88 |
+
It does not, for this eval. The harness sends exactly one system message and
|
| 89 |
+
one user message and uses no tools. Rendering both templates on that input
|
| 90 |
+
produces byte-identical output — 563 characters, same hash, both resolving
|
| 91 |
+
`reasoning_effort` to `xhigh`. Every difference between the two templates lives
|
| 92 |
+
in a path this benchmark never takes: multi-system-message merging, tool-call
|
| 93 |
+
argument handling, and a `high`→`xhigh` alias.
|
| 94 |
+
|
| 95 |
+
## Benchmark
|
| 96 |
+
|
| 97 |
+
92 questions, four sources: AIME2025 (25), GPQA Diamond (25), SuperGPQA (25),
|
| 98 |
+
COMPSEC (17).
|
| 99 |
+
|
| 100 |
+
Every leg ran on the same RTX PRO 6000 Blackwell at a 250 W cap, the same
|
| 101 |
+
llama.cpp build (22b8e31), the same MTP draft model for speculative decoding,
|
| 102 |
+
`q4_0` KV cache, flash attention on, temperature 0, seed 42, 32768 max tokens
|
| 103 |
+
per answer.
|
| 104 |
+
|
| 105 |
+
One caveat you will notice in the published CSVs: 24 rows are tagged
|
| 106 |
+
`GPQA Diamond` and one is tagged `GPQA Diamond (modified)`. That marker is
|
| 107 |
+
inherited verbatim from the upstream ds4 corpus — it is antirez's annotation,
|
| 108 |
+
not a change of ours — and the item is counted within the 25. So a reader
|
| 109 |
+
tallying `source == "GPQA Diamond"` gets 24, not 25.
|
| 110 |
+
|
| 111 |
+
| leg | bpw | ctx | accuracy | pass | wrong | exhausted | median case | median completion tok |
|
| 112 |
+
|---|---|---|---|---|---|---|---|---|
|
| 113 |
+
| `Qwen3.8-27B-Q8_0` (stock) | 8.500 | 131072 | 83.7% | 77 | 7 | 8 | 51s | 3475 |
|
| 114 |
+
| `Qwen3.8-27B-IQ4_XS` (stock) | 4.596 | 131072 | 84.8% | 78 | 5 | 9 | 42s | 3721 |
|
| 115 |
+
| fit-128k | 6.099 | 131072 | 88.0% | 81 | 5 | 6 | 53s | 3612 |
|
| 116 |
+
| fit-192k | 5.509 | 196608 | 88.0% | 81 | 4 | 7 | 56s | 4178 |
|
| 117 |
+
| fit-256k | 4.920 | 262144 | 87.0% | 80 | 5 | 7 | 63s | 4436 |
|
| 118 |
+
| fit-17g | 2.876 | 131072 | 67.4% | 62 | 9 | 21 | 64s | 6464 |
|
| 119 |
+
|
| 120 |
+
By source:
|
| 121 |
+
|
| 122 |
+
| leg | AIME2025 | COMPSEC | GPQA Diamond | SuperGPQA |
|
| 123 |
+
|---|---|---|---|---|
|
| 124 |
+
| Q8_0 | 84% (21/25) | 100% (17/17) | 80% (20/25) | 76% (19/25) |
|
| 125 |
+
| IQ4_XS | 88% (22/25) | 100% (17/17) | 76% (19/25) | 80% (20/25) |
|
| 126 |
+
| fit-128k | 96% (24/25) | 88% (15/17) | 84% (21/25) | 84% (21/25) |
|
| 127 |
+
| fit-192k | 92% (23/25) | 94% (16/17) | 84% (21/25) | 84% (21/25) |
|
| 128 |
+
| fit-256k | 92% (23/25) | 100% (17/17) | 80% (20/25) | 80% (20/25) |
|
| 129 |
+
| fit-17g | 64% (16/25) | 100% (17/17) | 48% (12/25) | 68% (17/25) |
|
| 130 |
+
|
| 131 |
+
Note that the three 23.5 GiB fits each ran at the context they were solved for,
|
| 132 |
+
while the stock quants and fit-17g ran at 131072. That is deliberate — running
|
| 133 |
+
a fit at its target context is the thing the fit exists to do.
|
| 134 |
+
|
| 135 |
+
The comparison worth looking at twice is fit-256k against stock IQ4_XS: 4.920
|
| 136 |
+
bpw against 4.596, 15.66 GiB against 14.63, and 87.0% against 84.8% — but
|
| 137 |
+
fit-256k carried a 262144-token context while IQ4_XS ran at 131072.
|
| 138 |
+
|
| 139 |
+
### Read the top five rows as one cluster
|
| 140 |
+
|
| 141 |
+
The fits come out a few points above Q8_0. **That is not a result.** The
|
| 142 |
+
comparison is paired, so only questions where two legs disagree carry
|
| 143 |
+
information, and there are very few of them: fit-128k versus Q8_0 is 8
|
| 144 |
+
discordant questions out of 92, splitting 6–2 in the fit's favour, McNemar
|
| 145 |
+
exact p = 0.29. Every pairwise comparison among those five legs is
|
| 146 |
+
non-significant.
|
| 147 |
+
|
| 148 |
+
Simulating the exact test at the discordance rate these legs actually produce,
|
| 149 |
+
the power at 92 questions is **0.17**. Eighty percent power would need about
|
| 150 |
+
400 questions. Even a perfect effect — every discordant question falling the
|
| 151 |
+
same way — only reaches 0.82 at this sample size.
|
| 152 |
+
|
| 153 |
+
So the defensible claim is **no measurable accuracy loss against Q8_0 down to
|
| 154 |
+
4.920 bpw**, and explicitly *not* that the fits are better than Q8_0. If you
|
| 155 |
+
want a ranking among those five, this benchmark cannot give you one.
|
| 156 |
+
|
| 157 |
+
### fit-17g is different, and the reason matters
|
| 158 |
+
|
| 159 |
+
The 2.876 bpw file is the one comparison here that clears the bar. Against
|
| 160 |
+
Q8_0: 19-vs-4 discordant, p = 0.003, power 0.88. Against fit-256k: 20-vs-2,
|
| 161 |
+
p = 0.0001.
|
| 162 |
+
|
| 163 |
+
But *how* it degrades is more useful than the headline. Its answered-only
|
| 164 |
+
accuracy is 87.3% (62/71) against Q8_0's 91.7% (77/84) — a gap of about 4
|
| 165 |
+
points, not 16. The headline gap is mostly **exhaustion**: 21 cases ran out of
|
| 166 |
+
the 32768-token budget before committing to an answer, against 6–9 for every
|
| 167 |
+
other leg, and its median completion length is 6464 tokens against 3475–4436.
|
| 168 |
+
|
| 169 |
+
It is not mostly answering wrongly, and it is not uniformly slower to think
|
| 170 |
+
either. On the questions it finishes, its median completion is 3818 tokens
|
| 171 |
+
against Q8_0's 2956 — about 29% longer, not double. The doubled headline median
|
| 172 |
+
is the *upper tail*: its third quartile is 28824 tokens, against 11k–13.5k for
|
| 173 |
+
every other leg (exclusive quartiles). Most questions look normal; a subset runs away and hits the
|
| 174 |
+
wall.
|
| 175 |
+
|
| 176 |
+
The collapse is concentrated where the reasoning is longest: GPQA Diamond falls
|
| 177 |
+
to 48% while COMPSEC stays at 100%.
|
| 178 |
+
|
| 179 |
+
A larger token budget would likely recover part of that 16 points. We have not
|
| 180 |
+
tested that, and until someone does, treat 67.4% as "this configuration, at
|
| 181 |
+
32768 tokens" rather than as the model's ceiling.
|
| 182 |
+
|
| 183 |
+
### Failure follows the question, not the quantization
|
| 184 |
+
|
| 185 |
+
Across all six legs, 58 exhaustion events land on only 22 distinct questions,
|
| 186 |
+
and 4 questions exhaust in **all six** legs — including Q8_0. Under
|
| 187 |
+
independence with the same per-leg counts you would expect 0.000 questions to
|
| 188 |
+
exhaust everywhere, and a permutation test over question ids gives p < 5e-6
|
| 189 |
+
(200,000 trials).
|
| 190 |
+
|
| 191 |
+
Some questions are simply long-reasoning traps, and that property survives
|
| 192 |
+
across quant families and across a 3x range in bits per weight.
|
| 193 |
+
|
| 194 |
+
## Running them
|
| 195 |
+
|
| 196 |
+
```
|
| 197 |
+
llama-server \
|
| 198 |
+
-m qwen38-27b-fit-128k-q4kv.gguf \
|
| 199 |
+
-md Qwen3.8-27B-MTP-ONLY-Q8_0.gguf --spec-draft-n-max 3 \
|
| 200 |
+
-c 131072 -ctk q4_0 -ctv q4_0 -fa on \
|
| 201 |
+
-ngl 99 -ngld 99 --host 127.0.0.1 --port 8083
|
| 202 |
+
```
|
| 203 |
+
|
| 204 |
+
Set `-c` to the context the file was solved for. The KV type is not optional:
|
| 205 |
+
these were solved against `q4_0` KV, and running f16 KV changes the memory
|
| 206 |
+
arithmetic the fit was built around.
|
| 207 |
+
|
| 208 |
+
`-ngld 99` matters — without it the draft model runs on the CPU and speculative
|
| 209 |
+
decoding ends up slower than not doing it at all.
|
| 210 |
+
|
| 211 |
+
The draft model used here is an MTP-only Q8_0 extraction from the same base.
|
| 212 |
+
It is not included in this repo.
|
| 213 |
+
|
| 214 |
+
## How the fits were made
|
| 215 |
+
|
| 216 |
+
```
|
| 217 |
+
shoehorn --ctx 131072 --kv q4_0 --budget 23.5GiB --calibrate
|
| 218 |
+
shoehorn --ctx 196608 --kv q4_0 --budget 23.5GiB --calibrate
|
| 219 |
+
shoehorn --ctx 262144 --kv q4_0 --budget 23.5GiB --calibrate --force-calibrate
|
| 220 |
+
shoehorn --ctx 262144 --kv q4_0 --budget 17GiB --calibrate --force-calibrate
|
| 221 |
+
```
|
| 222 |
+
|
| 223 |
+
Starting from a BF16 GGUF and an imatrix generated with `llama-imatrix` on
|
| 224 |
+
bartowski's calibration text.
|
| 225 |
+
|
| 226 |
+
`--calibrate` is the part that does the work. It writes the file, launches
|
| 227 |
+
llama.cpp once, reads back the *measured* allocations and re-solves against
|
| 228 |
+
them. At 128K the KV estimate was 9.14 GiB and the real allocation was 2.25 GiB
|
| 229 |
+
— most layers in a hybrid model don't keep a full-attention cache — and the
|
| 230 |
+
re-solve handed 5.75 GiB back to the weights.
|
| 231 |
+
|
| 232 |
+
`--force-calibrate` is our own patch, on a fork. Three estimate-based gates
|
| 233 |
+
bail out before `--calibrate` ever runs, which means the tool can refuse a job
|
| 234 |
+
on the strength of an estimate it is about to discover is wrong. The flag turns
|
| 235 |
+
those gates into warnings. Both 256K fits need it.
|
| 236 |
+
|
| 237 |
+
On a multi-GPU box, pass `--budget` explicitly — the NVML probe reads device 0
|
| 238 |
+
only.
|
| 239 |
+
|
| 240 |
+
## What's in this repo
|
| 241 |
+
|
| 242 |
+
Per-leg results for all six benchmark legs live under `bench/`: the summary
|
| 243 |
+
JSON, the per-case CSV (question id, source, domain, pass/fail, token counts,
|
| 244 |
+
timings) and a `config-public.txt` recording the exact server command, sampler
|
| 245 |
+
settings, build and driver version for that leg.
|
| 246 |
+
|
| 247 |
+
The evaluation harness itself is ours and is not public, so the eval is not
|
| 248 |
+
reproducible from this repo — the inference side is (the server command is
|
| 249 |
+
recorded per leg, and the question sources are named above).
|
| 250 |
+
|
| 251 |
+
The raw model outputs are **not** published. They quote the benchmark questions
|
| 252 |
+
verbatim, and 25 of the 92 come from GPQA Diamond, whose authors ask that
|
| 253 |
+
examples not be reproduced online. The per-case CSVs carry question ids and
|
| 254 |
+
results but no question text.
|
| 255 |
+
|
| 256 |
+
## Credits and licences
|
| 257 |
+
|
| 258 |
+
- **Base model**: [Qwen/Qwen3.8-27B](https://huggingface.co/Qwen/Qwen3.8-27B)
|
| 259 |
+
by the Qwen team, Apache-2.0. These are derived weights and the base model's
|
| 260 |
+
licence terms govern them; the quantization does not change what you may do
|
| 261 |
+
with the model.
|
| 262 |
+
- **Quantizer**: [shoehorn](https://github.com/notactuallytreyanastasio/shoehorn),
|
| 263 |
+
MIT. The budget solver, the calibration loop and the per-tensor format
|
| 264 |
+
assignment are all its work. The `--force-calibrate` flag is a local patch on
|
| 265 |
+
a fork, not upstream.
|
| 266 |
+
- **Evaluation**: [antirez/ds4](https://github.com/antirez/ds4) ("DwarfStar")
|
| 267 |
+
by Salvatore Sanfilippo, MIT — an inference engine for DeepSeek V4 Flash and
|
| 268 |
+
GLM 5.2 on consumer hardware. Our harness is a Rust port of its `ds4_bench.c`
|
| 269 |
+
and `ds4_eval.c`, and the 92-question selection is antirez's. These numbers
|
| 270 |
+
would not exist without it.
|
| 271 |
+
- **Inference**: [llama.cpp](https://github.com/ggml-org/llama.cpp), MIT.
|
| 272 |
+
|
| 273 |
+
Benchmark questions originate with their respective authors: AIME2025, GPQA
|
| 274 |
+
Diamond, SuperGPQA, and a computer-security set. Because the question set is
|
| 275 |
+
public, treat these numbers as a *relative* comparison between quantizations
|
| 276 |
+
run under identical conditions — not as leaderboard-comparable scores.
|
bench/fit-128k/config-public.txt
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
run: fit-128k
|
| 2 |
+
recorded: 2026-08-16T01:23:21+02:00 RETROACTIVELY — see caveat below
|
| 3 |
+
source: bin/bench-fits.sh (file last changed in ab44c65, i.e. unchanged
|
| 4 |
+
across all three fit legs) — the command below is
|
| 5 |
+
reconstructed from that script, which is version controlled and was
|
| 6 |
+
unchanged across all three fit legs. This is the authoritative record.
|
| 7 |
+
The serve log does NOT contain the config — verified 2026-08-16:
|
| 8 |
+
no type_k/type_v, no flash-attn, no build version at this verbosity.
|
| 9 |
+
serve_cmd: ~/llama.cpp/build-mtp/bin/llama-server -m ~/models/qwen38-27b-fit-128k-q4kv.gguf -md ~/models/Qwen3.8-27B-MTP-ONLY-Q8_0.gguf --spec-draft-n-max 3 -c 131072 -ctk q4_0 -ctv q4_0 -fa on -ngl 99 -ngld 99 --port 8083 --host 0.0.0.0
|
| 10 |
+
client: bs4 qa-eval --base-url http://<redacted>:8083/v1 --model fit-128k
|
| 11 |
+
sampler: temperature 0.0, seed 42, max_tokens 32768 (bs4, sent in request body)
|
| 12 |
+
--- desktop side (captured 2026-08-16, not at run time) ---
|
| 13 |
+
llama.cpp: 22b8e31
|
| 14 |
+
model: 20838706944 bytes ~/models/qwen38-27b-fit-128k-q4kv.gguf
|
| 15 |
+
gpu: NVIDIA RTX PRO 6000 Blackwell Workstation Edition, 250.00 W
|
| 16 |
+
driver_ver: 610.57.04
|
| 17 |
+
--- caveat ---
|
| 18 |
+
Written after the fact. Trustworthy because the driver script is in git and
|
| 19 |
+
unchanged since the runs; NOT equivalent to a config captured before the run.
|
| 20 |
+
|
| 21 |
+
--- publication note ---
|
| 22 |
+
Scrubbed for publication by sanitize-config.py: hostnames, internal
|
| 23 |
+
repo paths and home paths removed, GPU index omitted (immaterial —
|
| 24 |
+
one card, one power cap), chat template omitted for size. Everything
|
| 25 |
+
that affects the measurement is kept verbatim.
|
bench/fit-128k/qa-eval-1786818550.csv
ADDED
|
@@ -0,0 +1,93 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
id,source,domain,result,reasoning_chars,answer_chars,completion_tokens,finish_reason,ttft_ms,total_ms
|
| 2 |
+
recNu3MXkvWUzHZr9,GPQA Diamond,Physics,pass,17606,392,7047,stop,400.5,90297.2
|
| 3 |
+
001b51d76b4d422988f2c11f104a2c6c,SuperGPQA,Agronomy,pass,2328,9,558,stop,496.1,7497.7
|
| 4 |
+
aime2025-01,AIME2025,Number Theory,pass,1843,418,980,stop,446.1,11925.3
|
| 5 |
+
recoiTJPGUmzAkief,GPQA Diamond,Physics,pass,8151,465,1886,stop,571.1,30781.2
|
| 6 |
+
b7e20eac98764fb0bf30e8366d951daa,SuperGPQA,Engineering,pass,17331,450,4382,stop,670.6,58830.4
|
| 7 |
+
aime2025-16,AIME2025,Geometry,pass,2940,768,1491,stop,571.2,19670.4
|
| 8 |
+
rec4UqStf9WUVif1f,GPQA Diamond,Physics,pass,1944,585,1230,stop,556.7,15139.9
|
| 9 |
+
4a1d1780a93f4093b6fb7d3c314cbea8,SuperGPQA,Engineering,fail,7910,9,1665,stop,683.0,25679.1
|
| 10 |
+
aime2025-02,AIME2025,Geometry,pass,28249,1406,11789,stop,1028.4,159785.4
|
| 11 |
+
recgI6tUQ7RLJRWGx,GPQA Diamond,Physics,pass,5374,663,2295,stop,716.5,32177.8
|
| 12 |
+
6082513c8dba4ec68aa68f1bf5854d09,SuperGPQA,Law,pass,2420,9,490,stop,520.7,7058.2
|
| 13 |
+
aime2025-03,AIME2025,Combinatorics,pass,2046,423,1006,stop,559.8,13059.6
|
| 14 |
+
recDytVnNYZe2HuUU,GPQA Diamond (modified),Physics,pass,9308,415,4276,stop,545.8,58811.2
|
| 15 |
+
bebf1ed45ae14ad7b4f205f3909cb58a,SuperGPQA,Literature and Arts,pass,1146,9,273,stop,662.5,4326.1
|
| 16 |
+
aime2025-18,AIME2025,Combinatorics,pass,18335,1428,6884,stop,665.7,95518.7
|
| 17 |
+
recNFJjE5PPTqVJGv,GPQA Diamond,Chemistry,pass,1387,438,838,stop,820.8,11266.7
|
| 18 |
+
7ca71b86327744b78e93185a45bc5cef,SuperGPQA,Medicine,pass,2124,9,521,stop,556.3,7313.9
|
| 19 |
+
aime2025-04,AIME2025,Algebra,pass,2730,457,1401,stop,495.3,18458.3
|
| 20 |
+
rec2UlKqC6RFHdcro,GPQA Diamond,Physics,pass,2023,448,872,stop,687.9,12094.6
|
| 21 |
+
d44b94f7749345a39a65f6312bda8764,SuperGPQA,Engineering,pass,8254,323,2246,stop,558.5,35600.3
|
| 22 |
+
aime2025-19,AIME2025,Algebra,pass,1693,1024,1263,stop,682.4,15963.5
|
| 23 |
+
recv7GsQg3f0fvB1f,GPQA Diamond,Chemistry,pass,15177,420,3676,stop,568.4,55520.3
|
| 24 |
+
febe406f44d74a40b50bb5b7c69d5dc1,SuperGPQA,Sociology,pass,28536,9,6506,stop,612.6,88599.8
|
| 25 |
+
aime2025-05,AIME2025,"Combinatorics, Number Theory",pass,11415,1370,5418,stop,634.1,70548.0
|
| 26 |
+
recrHBEJJoDTV05JR,GPQA Diamond,Chemistry,pass,65159,774,22432,stop,635.4,310700.3
|
| 27 |
+
31950dc80ded400a9181f50626d1f75c,SuperGPQA,Science,pass,971,369,560,stop,680.8,7480.8
|
| 28 |
+
aime2025-06,AIME2025,Geometry,pass,4189,709,1863,stop,464.3,25779.5
|
| 29 |
+
recb80OwMgNnceA9t,GPQA Diamond,Chemistry,exhausted,95076,0,32768,length,504.8,488278.3
|
| 30 |
+
0f14cd17be174618af6d60227e7dca9f,SuperGPQA,Engineering,pass,9209,954,3721,stop,1171.5,52322.5
|
| 31 |
+
aime2025-21,AIME2025,"Algebra, Geometry",pass,17225,1376,6357,stop,896.8,87763.4
|
| 32 |
+
recA1i5ZAh0Uzclxp,GPQA Diamond,Chemistry,pass,55590,884,17601,stop,599.2,261851.2
|
| 33 |
+
cef9bcc087434cc2b4e354a9baef55eb,SuperGPQA,Engineering,pass,813,589,805,stop,790.7,9923.6
|
| 34 |
+
aime2025-07,AIME2025,Combinatorics,pass,20659,1913,6650,stop,507.6,99698.6
|
| 35 |
+
recqGD3fxPCI59vPQ,GPQA Diamond,Physics,pass,21916,729,7057,stop,559.1,104354.7
|
| 36 |
+
9f93aa2cfdb547b5b3a4623f80f7fff6,SuperGPQA,Engineering,pass,1064,147,314,stop,565.0,4691.1
|
| 37 |
+
aime2025-22,AIME2025,Number Theory,pass,6000,899,2719,stop,468.5,35268.8
|
| 38 |
+
rechKl68Uc6H7vU0N,GPQA Diamond,Chemistry,pass,74392,522,24594,stop,690.0,349015.1
|
| 39 |
+
97ad69dda7b2462c98638b79e78aea0b,SuperGPQA,Medicine,pass,3302,9,801,stop,714.2,12331.5
|
| 40 |
+
aime2025-08,AIME2025,Algebra,pass,4135,885,2167,stop,495.9,28137.8
|
| 41 |
+
rec1zl5LvaatzGhFt,GPQA Diamond,Physics,pass,2097,364,803,stop,645.3,11301.3
|
| 42 |
+
e78e4e539d6f4e379ac140d923d7b1be,SuperGPQA,Military Science,fail,7256,9,1486,stop,471.0,21903.9
|
| 43 |
+
aime2025-09,AIME2025,Algebra,pass,14188,1167,7290,stop,480.6,93998.9
|
| 44 |
+
recTs7qzfJs6kfLUK,GPQA Diamond,Biology,pass,27479,9,9115,stop,837.1,128131.8
|
| 45 |
+
8483667a25e74fdfa3188de4ea734f03,SuperGPQA,Science,pass,83439,864,24825,stop,569.4,360496.5
|
| 46 |
+
aime2025-24,AIME2025,Algebra,pass,8589,1223,3775,stop,703.2,52751.2
|
| 47 |
+
rec32C1ZEapBnCC0E,GPQA Diamond,Physics,pass,2810,381,1119,stop,539.3,16393.1
|
| 48 |
+
e5ed76ef98144f06843125daf1bccd35,SuperGPQA,Science,pass,1245,439,812,stop,512.3,10355.4
|
| 49 |
+
aime2025-10,AIME2025,Combinatorics,pass,57364,2560,19152,stop,697.7,275600.6
|
| 50 |
+
recZWeueB7lSPR6wN,GPQA Diamond,Chemistry,exhausted,103323,0,32768,length,665.1,494772.6
|
| 51 |
+
fd7924876c4845cd83d95d61dfa0b236,SuperGPQA,Sociology,pass,10320,9,2044,stop,750.0,30335.5
|
| 52 |
+
aime2025-25,AIME2025,Combinatorics,pass,15604,869,5090,stop,466.3,74222.3
|
| 53 |
+
recVvpD8miVjmmyfe,GPQA Diamond,Biology,exhausted,70673,0,32768,length,504.9,473515.6
|
| 54 |
+
6bfe7d19299d4b3184636e1f51694306,SuperGPQA,Agronomy,pass,52354,461,16689,stop,1000.1,234227.7
|
| 55 |
+
aime2025-26,AIME2025,Combinatorics,pass,26649,1335,8724,stop,604.3,128327.3
|
| 56 |
+
recAAJoHMW45Lv5je,GPQA Diamond,Chemistry,pass,43395,825,13841,stop,588.7,189924.4
|
| 57 |
+
e1825d70c5844c22933087eafa89e39c,SuperGPQA,Engineering,pass,1683,447,1097,stop,819.7,13734.8
|
| 58 |
+
aime2025-12,AIME2025,Algebra,pass,37595,1223,14305,stop,499.8,202018.7
|
| 59 |
+
reckEnrOPFT9Ru7tW,GPQA Diamond,Chemistry,pass,46333,684,14369,stop,681.4,207876.5
|
| 60 |
+
ab430ac3f18e4e02a2cb3f35498c6b30,SuperGPQA,Engineering,pass,8732,976,3547,stop,680.7,49403.6
|
| 61 |
+
aime2025-27,AIME2025,Geometry,pass,21496,1213,9093,stop,602.1,125949.7
|
| 62 |
+
rec8nshandHARTkrg,GPQA Diamond,Chemistry,pass,48381,513,15188,stop,817.3,215610.2
|
| 63 |
+
e8c5da5ca40647158b0c91dd695c6243,SuperGPQA,Science,pass,3709,412,1497,stop,856.6,20659.4
|
| 64 |
+
aime2025-13,AIME2025,Combinatorics,pass,83457,2227,23105,stop,505.3,343957.8
|
| 65 |
+
recFaL6j8UMhutXrc,GPQA Diamond,Chemistry,pass,31485,9,10543,stop,836.9,145068.5
|
| 66 |
+
05efdc6fb2404ddc8dd5729bb68c74e5,SuperGPQA,Science,pass,1877,597,1423,stop,626.0,17509.7
|
| 67 |
+
aime2025-28,AIME2025,Number Theory,pass,57716,2191,31186,stop,497.4,422570.1
|
| 68 |
+
reczQ4I0VpENdMtIj,GPQA Diamond,Biology,pass,34384,240,7340,stop,804.1,109156.9
|
| 69 |
+
ba52e06cbe1a4310a77a7d12cd1db943,SuperGPQA,Science,pass,9432,328,3299,stop,815.1,44636.8
|
| 70 |
+
aime2025-29,AIME2025,Geometry,pass,33002,2672,14345,stop,555.5,195123.1
|
| 71 |
+
recWxGU8Q4YReJ1tb,GPQA Diamond,Chemistry,exhausted,98549,0,32768,length,994.9,483260.7
|
| 72 |
+
591a77df21324272914be82ac6583399,SuperGPQA,Science,fail,1139,353,612,stop,952.0,8220.1
|
| 73 |
+
aime2025-15,AIME2025,Number Theory,exhausted,75947,0,32768,length,481.9,478804.8
|
| 74 |
+
recMicVBcqy1xM1jq,GPQA Diamond,Physics,pass,50090,652,17445,stop,825.3,249383.7
|
| 75 |
+
e780f37a5baa4fe094cd9c157486664d,SuperGPQA,Sociology,fail,9626,311,2310,stop,645.2,34629.9
|
| 76 |
+
aime2025-30,AIME2025,Algebra,pass,61789,1850,25912,stop,509.7,371581.9
|
| 77 |
+
compsec-076,COMPSEC,FreeBSD / librpcsec_gss,pass,15728,10,3922,stop,872.2,59311.5
|
| 78 |
+
compsec-077,COMPSEC,GNU Inetutils telnetd,exhausted,47409,0,32768,length,637.1,357547.7
|
| 79 |
+
compsec-078,COMPSEC,Botan,pass,1698,10,473,stop,923.5,7329.8
|
| 80 |
+
compsec-079,COMPSEC,Botan,pass,8512,10,1946,stop,655.9,30315.2
|
| 81 |
+
compsec-080,COMPSEC,Botan,pass,14966,9,3413,stop,690.8,54112.5
|
| 82 |
+
compsec-081,COMPSEC,uds-c,pass,16205,10,3935,stop,741.1,59342.3
|
| 83 |
+
compsec-082,COMPSEC,Firebird,pass,50188,12,12641,stop,617.6,196910.4
|
| 84 |
+
compsec-083,COMPSEC,Firebird,fail,35894,0,11531,stop,694.2,142400.1
|
| 85 |
+
compsec-084,COMPSEC,PHP,pass,2890,9,787,stop,725.9,11617.0
|
| 86 |
+
compsec-085,COMPSEC,PHP PDO Firebird,pass,2518,9,688,stop,500.9,11093.2
|
| 87 |
+
compsec-086,COMPSEC,libexpat,pass,5944,9,1494,stop,614.8,23278.3
|
| 88 |
+
compsec-087,COMPSEC,Mbed TLS,pass,23030,9,6682,stop,675.0,94928.8
|
| 89 |
+
compsec-088,COMPSEC,Mbed TLS,pass,4726,10,1191,stop,658.3,18610.2
|
| 90 |
+
compsec-089,COMPSEC,Mbed TLS,pass,2721,10,725,stop,579.2,11213.1
|
| 91 |
+
compsec-090,COMPSEC,Linux kernel,pass,4129,10,1188,stop,605.8,16941.8
|
| 92 |
+
compsec-091,COMPSEC,Linux kernel USB gadget storage,pass,1508,9,401,stop,523.2,6244.0
|
| 93 |
+
compsec-092,COMPSEC,Linux kernel AppArmor,pass,9825,10,2410,stop,591.1,35765.1
|
bench/fit-128k/qa-eval-1786818550.json
ADDED
|
@@ -0,0 +1,1028 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"accuracy": 0.8804347826086957,
|
| 3 |
+
"bench_version": "0.1.0",
|
| 4 |
+
"cases": 92,
|
| 5 |
+
"cases_detail": [
|
| 6 |
+
{
|
| 7 |
+
"answer_chars": 392,
|
| 8 |
+
"completion_tokens": 7047,
|
| 9 |
+
"finish_reason": "stop",
|
| 10 |
+
"id": "recNu3MXkvWUzHZr9",
|
| 11 |
+
"reasoning_chars": 17606,
|
| 12 |
+
"result": "pass",
|
| 13 |
+
"source": "GPQA Diamond",
|
| 14 |
+
"total_ms": 90297.17975,
|
| 15 |
+
"ttft_ms": 400.517583
|
| 16 |
+
},
|
| 17 |
+
{
|
| 18 |
+
"answer_chars": 9,
|
| 19 |
+
"completion_tokens": 558,
|
| 20 |
+
"finish_reason": "stop",
|
| 21 |
+
"id": "001b51d76b4d422988f2c11f104a2c6c",
|
| 22 |
+
"reasoning_chars": 2328,
|
| 23 |
+
"result": "pass",
|
| 24 |
+
"source": "SuperGPQA",
|
| 25 |
+
"total_ms": 7497.739208,
|
| 26 |
+
"ttft_ms": 496.0825
|
| 27 |
+
},
|
| 28 |
+
{
|
| 29 |
+
"answer_chars": 418,
|
| 30 |
+
"completion_tokens": 980,
|
| 31 |
+
"finish_reason": "stop",
|
| 32 |
+
"id": "aime2025-01",
|
| 33 |
+
"reasoning_chars": 1843,
|
| 34 |
+
"result": "pass",
|
| 35 |
+
"source": "AIME2025",
|
| 36 |
+
"total_ms": 11925.285625,
|
| 37 |
+
"ttft_ms": 446.104125
|
| 38 |
+
},
|
| 39 |
+
{
|
| 40 |
+
"answer_chars": 465,
|
| 41 |
+
"completion_tokens": 1886,
|
| 42 |
+
"finish_reason": "stop",
|
| 43 |
+
"id": "recoiTJPGUmzAkief",
|
| 44 |
+
"reasoning_chars": 8151,
|
| 45 |
+
"result": "pass",
|
| 46 |
+
"source": "GPQA Diamond",
|
| 47 |
+
"total_ms": 30781.231209,
|
| 48 |
+
"ttft_ms": 571.118792
|
| 49 |
+
},
|
| 50 |
+
{
|
| 51 |
+
"answer_chars": 450,
|
| 52 |
+
"completion_tokens": 4382,
|
| 53 |
+
"finish_reason": "stop",
|
| 54 |
+
"id": "b7e20eac98764fb0bf30e8366d951daa",
|
| 55 |
+
"reasoning_chars": 17331,
|
| 56 |
+
"result": "pass",
|
| 57 |
+
"source": "SuperGPQA",
|
| 58 |
+
"total_ms": 58830.3535,
|
| 59 |
+
"ttft_ms": 670.6246249999999
|
| 60 |
+
},
|
| 61 |
+
{
|
| 62 |
+
"answer_chars": 768,
|
| 63 |
+
"completion_tokens": 1491,
|
| 64 |
+
"finish_reason": "stop",
|
| 65 |
+
"id": "aime2025-16",
|
| 66 |
+
"reasoning_chars": 2940,
|
| 67 |
+
"result": "pass",
|
| 68 |
+
"source": "AIME2025",
|
| 69 |
+
"total_ms": 19670.371457999998,
|
| 70 |
+
"ttft_ms": 571.234208
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"answer_chars": 585,
|
| 74 |
+
"completion_tokens": 1230,
|
| 75 |
+
"finish_reason": "stop",
|
| 76 |
+
"id": "rec4UqStf9WUVif1f",
|
| 77 |
+
"reasoning_chars": 1944,
|
| 78 |
+
"result": "pass",
|
| 79 |
+
"source": "GPQA Diamond",
|
| 80 |
+
"total_ms": 15139.857750000001,
|
| 81 |
+
"ttft_ms": 556.6582500000001
|
| 82 |
+
},
|
| 83 |
+
{
|
| 84 |
+
"answer_chars": 9,
|
| 85 |
+
"completion_tokens": 1665,
|
| 86 |
+
"finish_reason": "stop",
|
| 87 |
+
"id": "4a1d1780a93f4093b6fb7d3c314cbea8",
|
| 88 |
+
"reasoning_chars": 7910,
|
| 89 |
+
"result": "fail",
|
| 90 |
+
"source": "SuperGPQA",
|
| 91 |
+
"total_ms": 25679.061291,
|
| 92 |
+
"ttft_ms": 682.954708
|
| 93 |
+
},
|
| 94 |
+
{
|
| 95 |
+
"answer_chars": 1406,
|
| 96 |
+
"completion_tokens": 11789,
|
| 97 |
+
"finish_reason": "stop",
|
| 98 |
+
"id": "aime2025-02",
|
| 99 |
+
"reasoning_chars": 28249,
|
| 100 |
+
"result": "pass",
|
| 101 |
+
"source": "AIME2025",
|
| 102 |
+
"total_ms": 159785.437041,
|
| 103 |
+
"ttft_ms": 1028.397875
|
| 104 |
+
},
|
| 105 |
+
{
|
| 106 |
+
"answer_chars": 663,
|
| 107 |
+
"completion_tokens": 2295,
|
| 108 |
+
"finish_reason": "stop",
|
| 109 |
+
"id": "recgI6tUQ7RLJRWGx",
|
| 110 |
+
"reasoning_chars": 5374,
|
| 111 |
+
"result": "pass",
|
| 112 |
+
"source": "GPQA Diamond",
|
| 113 |
+
"total_ms": 32177.827166,
|
| 114 |
+
"ttft_ms": 716.48325
|
| 115 |
+
},
|
| 116 |
+
{
|
| 117 |
+
"answer_chars": 9,
|
| 118 |
+
"completion_tokens": 490,
|
| 119 |
+
"finish_reason": "stop",
|
| 120 |
+
"id": "6082513c8dba4ec68aa68f1bf5854d09",
|
| 121 |
+
"reasoning_chars": 2420,
|
| 122 |
+
"result": "pass",
|
| 123 |
+
"source": "SuperGPQA",
|
| 124 |
+
"total_ms": 7058.177917,
|
| 125 |
+
"ttft_ms": 520.721083
|
| 126 |
+
},
|
| 127 |
+
{
|
| 128 |
+
"answer_chars": 423,
|
| 129 |
+
"completion_tokens": 1006,
|
| 130 |
+
"finish_reason": "stop",
|
| 131 |
+
"id": "aime2025-03",
|
| 132 |
+
"reasoning_chars": 2046,
|
| 133 |
+
"result": "pass",
|
| 134 |
+
"source": "AIME2025",
|
| 135 |
+
"total_ms": 13059.566291,
|
| 136 |
+
"ttft_ms": 559.802
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"answer_chars": 415,
|
| 140 |
+
"completion_tokens": 4276,
|
| 141 |
+
"finish_reason": "stop",
|
| 142 |
+
"id": "recDytVnNYZe2HuUU",
|
| 143 |
+
"reasoning_chars": 9308,
|
| 144 |
+
"result": "pass",
|
| 145 |
+
"source": "GPQA Diamond (modified)",
|
| 146 |
+
"total_ms": 58811.169417000005,
|
| 147 |
+
"ttft_ms": 545.814125
|
| 148 |
+
},
|
| 149 |
+
{
|
| 150 |
+
"answer_chars": 9,
|
| 151 |
+
"completion_tokens": 273,
|
| 152 |
+
"finish_reason": "stop",
|
| 153 |
+
"id": "bebf1ed45ae14ad7b4f205f3909cb58a",
|
| 154 |
+
"reasoning_chars": 1146,
|
| 155 |
+
"result": "pass",
|
| 156 |
+
"source": "SuperGPQA",
|
| 157 |
+
"total_ms": 4326.139,
|
| 158 |
+
"ttft_ms": 662.489667
|
| 159 |
+
},
|
| 160 |
+
{
|
| 161 |
+
"answer_chars": 1428,
|
| 162 |
+
"completion_tokens": 6884,
|
| 163 |
+
"finish_reason": "stop",
|
| 164 |
+
"id": "aime2025-18",
|
| 165 |
+
"reasoning_chars": 18335,
|
| 166 |
+
"result": "pass",
|
| 167 |
+
"source": "AIME2025",
|
| 168 |
+
"total_ms": 95518.73208300001,
|
| 169 |
+
"ttft_ms": 665.6728750000001
|
| 170 |
+
},
|
| 171 |
+
{
|
| 172 |
+
"answer_chars": 438,
|
| 173 |
+
"completion_tokens": 838,
|
| 174 |
+
"finish_reason": "stop",
|
| 175 |
+
"id": "recNFJjE5PPTqVJGv",
|
| 176 |
+
"reasoning_chars": 1387,
|
| 177 |
+
"result": "pass",
|
| 178 |
+
"source": "GPQA Diamond",
|
| 179 |
+
"total_ms": 11266.735999999999,
|
| 180 |
+
"ttft_ms": 820.827583
|
| 181 |
+
},
|
| 182 |
+
{
|
| 183 |
+
"answer_chars": 9,
|
| 184 |
+
"completion_tokens": 521,
|
| 185 |
+
"finish_reason": "stop",
|
| 186 |
+
"id": "7ca71b86327744b78e93185a45bc5cef",
|
| 187 |
+
"reasoning_chars": 2124,
|
| 188 |
+
"result": "pass",
|
| 189 |
+
"source": "SuperGPQA",
|
| 190 |
+
"total_ms": 7313.874292,
|
| 191 |
+
"ttft_ms": 556.275667
|
| 192 |
+
},
|
| 193 |
+
{
|
| 194 |
+
"answer_chars": 457,
|
| 195 |
+
"completion_tokens": 1401,
|
| 196 |
+
"finish_reason": "stop",
|
| 197 |
+
"id": "aime2025-04",
|
| 198 |
+
"reasoning_chars": 2730,
|
| 199 |
+
"result": "pass",
|
| 200 |
+
"source": "AIME2025",
|
| 201 |
+
"total_ms": 18458.330916000003,
|
| 202 |
+
"ttft_ms": 495.294666
|
| 203 |
+
},
|
| 204 |
+
{
|
| 205 |
+
"answer_chars": 448,
|
| 206 |
+
"completion_tokens": 872,
|
| 207 |
+
"finish_reason": "stop",
|
| 208 |
+
"id": "rec2UlKqC6RFHdcro",
|
| 209 |
+
"reasoning_chars": 2023,
|
| 210 |
+
"result": "pass",
|
| 211 |
+
"source": "GPQA Diamond",
|
| 212 |
+
"total_ms": 12094.629792,
|
| 213 |
+
"ttft_ms": 687.8919999999999
|
| 214 |
+
},
|
| 215 |
+
{
|
| 216 |
+
"answer_chars": 323,
|
| 217 |
+
"completion_tokens": 2246,
|
| 218 |
+
"finish_reason": "stop",
|
| 219 |
+
"id": "d44b94f7749345a39a65f6312bda8764",
|
| 220 |
+
"reasoning_chars": 8254,
|
| 221 |
+
"result": "pass",
|
| 222 |
+
"source": "SuperGPQA",
|
| 223 |
+
"total_ms": 35600.282417,
|
| 224 |
+
"ttft_ms": 558.460625
|
| 225 |
+
},
|
| 226 |
+
{
|
| 227 |
+
"answer_chars": 1024,
|
| 228 |
+
"completion_tokens": 1263,
|
| 229 |
+
"finish_reason": "stop",
|
| 230 |
+
"id": "aime2025-19",
|
| 231 |
+
"reasoning_chars": 1693,
|
| 232 |
+
"result": "pass",
|
| 233 |
+
"source": "AIME2025",
|
| 234 |
+
"total_ms": 15963.453708,
|
| 235 |
+
"ttft_ms": 682.380958
|
| 236 |
+
},
|
| 237 |
+
{
|
| 238 |
+
"answer_chars": 420,
|
| 239 |
+
"completion_tokens": 3676,
|
| 240 |
+
"finish_reason": "stop",
|
| 241 |
+
"id": "recv7GsQg3f0fvB1f",
|
| 242 |
+
"reasoning_chars": 15177,
|
| 243 |
+
"result": "pass",
|
| 244 |
+
"source": "GPQA Diamond",
|
| 245 |
+
"total_ms": 55520.344792,
|
| 246 |
+
"ttft_ms": 568.395125
|
| 247 |
+
},
|
| 248 |
+
{
|
| 249 |
+
"answer_chars": 9,
|
| 250 |
+
"completion_tokens": 6506,
|
| 251 |
+
"finish_reason": "stop",
|
| 252 |
+
"id": "febe406f44d74a40b50bb5b7c69d5dc1",
|
| 253 |
+
"reasoning_chars": 28536,
|
| 254 |
+
"result": "pass",
|
| 255 |
+
"source": "SuperGPQA",
|
| 256 |
+
"total_ms": 88599.846583,
|
| 257 |
+
"ttft_ms": 612.65
|
| 258 |
+
},
|
| 259 |
+
{
|
| 260 |
+
"answer_chars": 1370,
|
| 261 |
+
"completion_tokens": 5418,
|
| 262 |
+
"finish_reason": "stop",
|
| 263 |
+
"id": "aime2025-05",
|
| 264 |
+
"reasoning_chars": 11415,
|
| 265 |
+
"result": "pass",
|
| 266 |
+
"source": "AIME2025",
|
| 267 |
+
"total_ms": 70547.959208,
|
| 268 |
+
"ttft_ms": 634.0662500000001
|
| 269 |
+
},
|
| 270 |
+
{
|
| 271 |
+
"answer_chars": 774,
|
| 272 |
+
"completion_tokens": 22432,
|
| 273 |
+
"finish_reason": "stop",
|
| 274 |
+
"id": "recrHBEJJoDTV05JR",
|
| 275 |
+
"reasoning_chars": 65159,
|
| 276 |
+
"result": "pass",
|
| 277 |
+
"source": "GPQA Diamond",
|
| 278 |
+
"total_ms": 310700.26125,
|
| 279 |
+
"ttft_ms": 635.402917
|
| 280 |
+
},
|
| 281 |
+
{
|
| 282 |
+
"answer_chars": 369,
|
| 283 |
+
"completion_tokens": 560,
|
| 284 |
+
"finish_reason": "stop",
|
| 285 |
+
"id": "31950dc80ded400a9181f50626d1f75c",
|
| 286 |
+
"reasoning_chars": 971,
|
| 287 |
+
"result": "pass",
|
| 288 |
+
"source": "SuperGPQA",
|
| 289 |
+
"total_ms": 7480.801041000001,
|
| 290 |
+
"ttft_ms": 680.802
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"answer_chars": 709,
|
| 294 |
+
"completion_tokens": 1863,
|
| 295 |
+
"finish_reason": "stop",
|
| 296 |
+
"id": "aime2025-06",
|
| 297 |
+
"reasoning_chars": 4189,
|
| 298 |
+
"result": "pass",
|
| 299 |
+
"source": "AIME2025",
|
| 300 |
+
"total_ms": 25779.481874999998,
|
| 301 |
+
"ttft_ms": 464.28324999999995
|
| 302 |
+
},
|
| 303 |
+
{
|
| 304 |
+
"answer_chars": 0,
|
| 305 |
+
"completion_tokens": 32768,
|
| 306 |
+
"finish_reason": "length",
|
| 307 |
+
"id": "recb80OwMgNnceA9t",
|
| 308 |
+
"reasoning_chars": 95076,
|
| 309 |
+
"result": "exhausted",
|
| 310 |
+
"source": "GPQA Diamond",
|
| 311 |
+
"total_ms": 488278.307667,
|
| 312 |
+
"ttft_ms": 504.836375
|
| 313 |
+
},
|
| 314 |
+
{
|
| 315 |
+
"answer_chars": 954,
|
| 316 |
+
"completion_tokens": 3721,
|
| 317 |
+
"finish_reason": "stop",
|
| 318 |
+
"id": "0f14cd17be174618af6d60227e7dca9f",
|
| 319 |
+
"reasoning_chars": 9209,
|
| 320 |
+
"result": "pass",
|
| 321 |
+
"source": "SuperGPQA",
|
| 322 |
+
"total_ms": 52322.547583,
|
| 323 |
+
"ttft_ms": 1171.4924170000002
|
| 324 |
+
},
|
| 325 |
+
{
|
| 326 |
+
"answer_chars": 1376,
|
| 327 |
+
"completion_tokens": 6357,
|
| 328 |
+
"finish_reason": "stop",
|
| 329 |
+
"id": "aime2025-21",
|
| 330 |
+
"reasoning_chars": 17225,
|
| 331 |
+
"result": "pass",
|
| 332 |
+
"source": "AIME2025",
|
| 333 |
+
"total_ms": 87763.420208,
|
| 334 |
+
"ttft_ms": 896.7724999999999
|
| 335 |
+
},
|
| 336 |
+
{
|
| 337 |
+
"answer_chars": 884,
|
| 338 |
+
"completion_tokens": 17601,
|
| 339 |
+
"finish_reason": "stop",
|
| 340 |
+
"id": "recA1i5ZAh0Uzclxp",
|
| 341 |
+
"reasoning_chars": 55590,
|
| 342 |
+
"result": "pass",
|
| 343 |
+
"source": "GPQA Diamond",
|
| 344 |
+
"total_ms": 261851.24550000002,
|
| 345 |
+
"ttft_ms": 599.2252500000001
|
| 346 |
+
},
|
| 347 |
+
{
|
| 348 |
+
"answer_chars": 589,
|
| 349 |
+
"completion_tokens": 805,
|
| 350 |
+
"finish_reason": "stop",
|
| 351 |
+
"id": "cef9bcc087434cc2b4e354a9baef55eb",
|
| 352 |
+
"reasoning_chars": 813,
|
| 353 |
+
"result": "pass",
|
| 354 |
+
"source": "SuperGPQA",
|
| 355 |
+
"total_ms": 9923.589708,
|
| 356 |
+
"ttft_ms": 790.676916
|
| 357 |
+
},
|
| 358 |
+
{
|
| 359 |
+
"answer_chars": 1913,
|
| 360 |
+
"completion_tokens": 6650,
|
| 361 |
+
"finish_reason": "stop",
|
| 362 |
+
"id": "aime2025-07",
|
| 363 |
+
"reasoning_chars": 20659,
|
| 364 |
+
"result": "pass",
|
| 365 |
+
"source": "AIME2025",
|
| 366 |
+
"total_ms": 99698.61370799999,
|
| 367 |
+
"ttft_ms": 507.58579199999997
|
| 368 |
+
},
|
| 369 |
+
{
|
| 370 |
+
"answer_chars": 729,
|
| 371 |
+
"completion_tokens": 7057,
|
| 372 |
+
"finish_reason": "stop",
|
| 373 |
+
"id": "recqGD3fxPCI59vPQ",
|
| 374 |
+
"reasoning_chars": 21916,
|
| 375 |
+
"result": "pass",
|
| 376 |
+
"source": "GPQA Diamond",
|
| 377 |
+
"total_ms": 104354.741792,
|
| 378 |
+
"ttft_ms": 559.123875
|
| 379 |
+
},
|
| 380 |
+
{
|
| 381 |
+
"answer_chars": 147,
|
| 382 |
+
"completion_tokens": 314,
|
| 383 |
+
"finish_reason": "stop",
|
| 384 |
+
"id": "9f93aa2cfdb547b5b3a4623f80f7fff6",
|
| 385 |
+
"reasoning_chars": 1064,
|
| 386 |
+
"result": "pass",
|
| 387 |
+
"source": "SuperGPQA",
|
| 388 |
+
"total_ms": 4691.068625,
|
| 389 |
+
"ttft_ms": 564.9937080000001
|
| 390 |
+
},
|
| 391 |
+
{
|
| 392 |
+
"answer_chars": 899,
|
| 393 |
+
"completion_tokens": 2719,
|
| 394 |
+
"finish_reason": "stop",
|
| 395 |
+
"id": "aime2025-22",
|
| 396 |
+
"reasoning_chars": 6000,
|
| 397 |
+
"result": "pass",
|
| 398 |
+
"source": "AIME2025",
|
| 399 |
+
"total_ms": 35268.769709,
|
| 400 |
+
"ttft_ms": 468.462125
|
| 401 |
+
},
|
| 402 |
+
{
|
| 403 |
+
"answer_chars": 522,
|
| 404 |
+
"completion_tokens": 24594,
|
| 405 |
+
"finish_reason": "stop",
|
| 406 |
+
"id": "rechKl68Uc6H7vU0N",
|
| 407 |
+
"reasoning_chars": 74392,
|
| 408 |
+
"result": "pass",
|
| 409 |
+
"source": "GPQA Diamond",
|
| 410 |
+
"total_ms": 349015.086375,
|
| 411 |
+
"ttft_ms": 689.960416
|
| 412 |
+
},
|
| 413 |
+
{
|
| 414 |
+
"answer_chars": 9,
|
| 415 |
+
"completion_tokens": 801,
|
| 416 |
+
"finish_reason": "stop",
|
| 417 |
+
"id": "97ad69dda7b2462c98638b79e78aea0b",
|
| 418 |
+
"reasoning_chars": 3302,
|
| 419 |
+
"result": "pass",
|
| 420 |
+
"source": "SuperGPQA",
|
| 421 |
+
"total_ms": 12331.464625,
|
| 422 |
+
"ttft_ms": 714.2458750000001
|
| 423 |
+
},
|
| 424 |
+
{
|
| 425 |
+
"answer_chars": 885,
|
| 426 |
+
"completion_tokens": 2167,
|
| 427 |
+
"finish_reason": "stop",
|
| 428 |
+
"id": "aime2025-08",
|
| 429 |
+
"reasoning_chars": 4135,
|
| 430 |
+
"result": "pass",
|
| 431 |
+
"source": "AIME2025",
|
| 432 |
+
"total_ms": 28137.832167,
|
| 433 |
+
"ttft_ms": 495.911292
|
| 434 |
+
},
|
| 435 |
+
{
|
| 436 |
+
"answer_chars": 364,
|
| 437 |
+
"completion_tokens": 803,
|
| 438 |
+
"finish_reason": "stop",
|
| 439 |
+
"id": "rec1zl5LvaatzGhFt",
|
| 440 |
+
"reasoning_chars": 2097,
|
| 441 |
+
"result": "pass",
|
| 442 |
+
"source": "GPQA Diamond",
|
| 443 |
+
"total_ms": 11301.261959,
|
| 444 |
+
"ttft_ms": 645.257125
|
| 445 |
+
},
|
| 446 |
+
{
|
| 447 |
+
"answer_chars": 9,
|
| 448 |
+
"completion_tokens": 1486,
|
| 449 |
+
"finish_reason": "stop",
|
| 450 |
+
"id": "e78e4e539d6f4e379ac140d923d7b1be",
|
| 451 |
+
"reasoning_chars": 7256,
|
| 452 |
+
"result": "fail",
|
| 453 |
+
"source": "SuperGPQA",
|
| 454 |
+
"total_ms": 21903.941458999998,
|
| 455 |
+
"ttft_ms": 471.018459
|
| 456 |
+
},
|
| 457 |
+
{
|
| 458 |
+
"answer_chars": 1167,
|
| 459 |
+
"completion_tokens": 7290,
|
| 460 |
+
"finish_reason": "stop",
|
| 461 |
+
"id": "aime2025-09",
|
| 462 |
+
"reasoning_chars": 14188,
|
| 463 |
+
"result": "pass",
|
| 464 |
+
"source": "AIME2025",
|
| 465 |
+
"total_ms": 93998.935917,
|
| 466 |
+
"ttft_ms": 480.561459
|
| 467 |
+
},
|
| 468 |
+
{
|
| 469 |
+
"answer_chars": 9,
|
| 470 |
+
"completion_tokens": 9115,
|
| 471 |
+
"finish_reason": "stop",
|
| 472 |
+
"id": "recTs7qzfJs6kfLUK",
|
| 473 |
+
"reasoning_chars": 27479,
|
| 474 |
+
"result": "pass",
|
| 475 |
+
"source": "GPQA Diamond",
|
| 476 |
+
"total_ms": 128131.84391699999,
|
| 477 |
+
"ttft_ms": 837.1487079999999
|
| 478 |
+
},
|
| 479 |
+
{
|
| 480 |
+
"answer_chars": 864,
|
| 481 |
+
"completion_tokens": 24825,
|
| 482 |
+
"finish_reason": "stop",
|
| 483 |
+
"id": "8483667a25e74fdfa3188de4ea734f03",
|
| 484 |
+
"reasoning_chars": 83439,
|
| 485 |
+
"result": "pass",
|
| 486 |
+
"source": "SuperGPQA",
|
| 487 |
+
"total_ms": 360496.513042,
|
| 488 |
+
"ttft_ms": 569.386459
|
| 489 |
+
},
|
| 490 |
+
{
|
| 491 |
+
"answer_chars": 1223,
|
| 492 |
+
"completion_tokens": 3775,
|
| 493 |
+
"finish_reason": "stop",
|
| 494 |
+
"id": "aime2025-24",
|
| 495 |
+
"reasoning_chars": 8589,
|
| 496 |
+
"result": "pass",
|
| 497 |
+
"source": "AIME2025",
|
| 498 |
+
"total_ms": 52751.235875,
|
| 499 |
+
"ttft_ms": 703.242708
|
| 500 |
+
},
|
| 501 |
+
{
|
| 502 |
+
"answer_chars": 381,
|
| 503 |
+
"completion_tokens": 1119,
|
| 504 |
+
"finish_reason": "stop",
|
| 505 |
+
"id": "rec32C1ZEapBnCC0E",
|
| 506 |
+
"reasoning_chars": 2810,
|
| 507 |
+
"result": "pass",
|
| 508 |
+
"source": "GPQA Diamond",
|
| 509 |
+
"total_ms": 16393.146417,
|
| 510 |
+
"ttft_ms": 539.2782090000001
|
| 511 |
+
},
|
| 512 |
+
{
|
| 513 |
+
"answer_chars": 439,
|
| 514 |
+
"completion_tokens": 812,
|
| 515 |
+
"finish_reason": "stop",
|
| 516 |
+
"id": "e5ed76ef98144f06843125daf1bccd35",
|
| 517 |
+
"reasoning_chars": 1245,
|
| 518 |
+
"result": "pass",
|
| 519 |
+
"source": "SuperGPQA",
|
| 520 |
+
"total_ms": 10355.39925,
|
| 521 |
+
"ttft_ms": 512.2696249999999
|
| 522 |
+
},
|
| 523 |
+
{
|
| 524 |
+
"answer_chars": 2560,
|
| 525 |
+
"completion_tokens": 19152,
|
| 526 |
+
"finish_reason": "stop",
|
| 527 |
+
"id": "aime2025-10",
|
| 528 |
+
"reasoning_chars": 57364,
|
| 529 |
+
"result": "pass",
|
| 530 |
+
"source": "AIME2025",
|
| 531 |
+
"total_ms": 275600.60375,
|
| 532 |
+
"ttft_ms": 697.710667
|
| 533 |
+
},
|
| 534 |
+
{
|
| 535 |
+
"answer_chars": 0,
|
| 536 |
+
"completion_tokens": 32768,
|
| 537 |
+
"finish_reason": "length",
|
| 538 |
+
"id": "recZWeueB7lSPR6wN",
|
| 539 |
+
"reasoning_chars": 103323,
|
| 540 |
+
"result": "exhausted",
|
| 541 |
+
"source": "GPQA Diamond",
|
| 542 |
+
"total_ms": 494772.644667,
|
| 543 |
+
"ttft_ms": 665.129917
|
| 544 |
+
},
|
| 545 |
+
{
|
| 546 |
+
"answer_chars": 9,
|
| 547 |
+
"completion_tokens": 2044,
|
| 548 |
+
"finish_reason": "stop",
|
| 549 |
+
"id": "fd7924876c4845cd83d95d61dfa0b236",
|
| 550 |
+
"reasoning_chars": 10320,
|
| 551 |
+
"result": "pass",
|
| 552 |
+
"source": "SuperGPQA",
|
| 553 |
+
"total_ms": 30335.493541999997,
|
| 554 |
+
"ttft_ms": 750.047209
|
| 555 |
+
},
|
| 556 |
+
{
|
| 557 |
+
"answer_chars": 869,
|
| 558 |
+
"completion_tokens": 5090,
|
| 559 |
+
"finish_reason": "stop",
|
| 560 |
+
"id": "aime2025-25",
|
| 561 |
+
"reasoning_chars": 15604,
|
| 562 |
+
"result": "pass",
|
| 563 |
+
"source": "AIME2025",
|
| 564 |
+
"total_ms": 74222.344125,
|
| 565 |
+
"ttft_ms": 466.266167
|
| 566 |
+
},
|
| 567 |
+
{
|
| 568 |
+
"answer_chars": 0,
|
| 569 |
+
"completion_tokens": 32768,
|
| 570 |
+
"finish_reason": "length",
|
| 571 |
+
"id": "recVvpD8miVjmmyfe",
|
| 572 |
+
"reasoning_chars": 70673,
|
| 573 |
+
"result": "exhausted",
|
| 574 |
+
"source": "GPQA Diamond",
|
| 575 |
+
"total_ms": 473515.62845799996,
|
| 576 |
+
"ttft_ms": 504.94404199999997
|
| 577 |
+
},
|
| 578 |
+
{
|
| 579 |
+
"answer_chars": 461,
|
| 580 |
+
"completion_tokens": 16689,
|
| 581 |
+
"finish_reason": "stop",
|
| 582 |
+
"id": "6bfe7d19299d4b3184636e1f51694306",
|
| 583 |
+
"reasoning_chars": 52354,
|
| 584 |
+
"result": "pass",
|
| 585 |
+
"source": "SuperGPQA",
|
| 586 |
+
"total_ms": 234227.736792,
|
| 587 |
+
"ttft_ms": 1000.100333
|
| 588 |
+
},
|
| 589 |
+
{
|
| 590 |
+
"answer_chars": 1335,
|
| 591 |
+
"completion_tokens": 8724,
|
| 592 |
+
"finish_reason": "stop",
|
| 593 |
+
"id": "aime2025-26",
|
| 594 |
+
"reasoning_chars": 26649,
|
| 595 |
+
"result": "pass",
|
| 596 |
+
"source": "AIME2025",
|
| 597 |
+
"total_ms": 128327.34074999999,
|
| 598 |
+
"ttft_ms": 604.3037089999999
|
| 599 |
+
},
|
| 600 |
+
{
|
| 601 |
+
"answer_chars": 825,
|
| 602 |
+
"completion_tokens": 13841,
|
| 603 |
+
"finish_reason": "stop",
|
| 604 |
+
"id": "recAAJoHMW45Lv5je",
|
| 605 |
+
"reasoning_chars": 43395,
|
| 606 |
+
"result": "pass",
|
| 607 |
+
"source": "GPQA Diamond",
|
| 608 |
+
"total_ms": 189924.378667,
|
| 609 |
+
"ttft_ms": 588.7228749999999
|
| 610 |
+
},
|
| 611 |
+
{
|
| 612 |
+
"answer_chars": 447,
|
| 613 |
+
"completion_tokens": 1097,
|
| 614 |
+
"finish_reason": "stop",
|
| 615 |
+
"id": "e1825d70c5844c22933087eafa89e39c",
|
| 616 |
+
"reasoning_chars": 1683,
|
| 617 |
+
"result": "pass",
|
| 618 |
+
"source": "SuperGPQA",
|
| 619 |
+
"total_ms": 13734.76525,
|
| 620 |
+
"ttft_ms": 819.6647919999999
|
| 621 |
+
},
|
| 622 |
+
{
|
| 623 |
+
"answer_chars": 1223,
|
| 624 |
+
"completion_tokens": 14305,
|
| 625 |
+
"finish_reason": "stop",
|
| 626 |
+
"id": "aime2025-12",
|
| 627 |
+
"reasoning_chars": 37595,
|
| 628 |
+
"result": "pass",
|
| 629 |
+
"source": "AIME2025",
|
| 630 |
+
"total_ms": 202018.749792,
|
| 631 |
+
"ttft_ms": 499.845667
|
| 632 |
+
},
|
| 633 |
+
{
|
| 634 |
+
"answer_chars": 684,
|
| 635 |
+
"completion_tokens": 14369,
|
| 636 |
+
"finish_reason": "stop",
|
| 637 |
+
"id": "reckEnrOPFT9Ru7tW",
|
| 638 |
+
"reasoning_chars": 46333,
|
| 639 |
+
"result": "pass",
|
| 640 |
+
"source": "GPQA Diamond",
|
| 641 |
+
"total_ms": 207876.502375,
|
| 642 |
+
"ttft_ms": 681.3592080000001
|
| 643 |
+
},
|
| 644 |
+
{
|
| 645 |
+
"answer_chars": 976,
|
| 646 |
+
"completion_tokens": 3547,
|
| 647 |
+
"finish_reason": "stop",
|
| 648 |
+
"id": "ab430ac3f18e4e02a2cb3f35498c6b30",
|
| 649 |
+
"reasoning_chars": 8732,
|
| 650 |
+
"result": "pass",
|
| 651 |
+
"source": "SuperGPQA",
|
| 652 |
+
"total_ms": 49403.643709,
|
| 653 |
+
"ttft_ms": 680.7177089999999
|
| 654 |
+
},
|
| 655 |
+
{
|
| 656 |
+
"answer_chars": 1213,
|
| 657 |
+
"completion_tokens": 9093,
|
| 658 |
+
"finish_reason": "stop",
|
| 659 |
+
"id": "aime2025-27",
|
| 660 |
+
"reasoning_chars": 21496,
|
| 661 |
+
"result": "pass",
|
| 662 |
+
"source": "AIME2025",
|
| 663 |
+
"total_ms": 125949.73950000001,
|
| 664 |
+
"ttft_ms": 602.090834
|
| 665 |
+
},
|
| 666 |
+
{
|
| 667 |
+
"answer_chars": 513,
|
| 668 |
+
"completion_tokens": 15188,
|
| 669 |
+
"finish_reason": "stop",
|
| 670 |
+
"id": "rec8nshandHARTkrg",
|
| 671 |
+
"reasoning_chars": 48381,
|
| 672 |
+
"result": "pass",
|
| 673 |
+
"source": "GPQA Diamond",
|
| 674 |
+
"total_ms": 215610.182875,
|
| 675 |
+
"ttft_ms": 817.330916
|
| 676 |
+
},
|
| 677 |
+
{
|
| 678 |
+
"answer_chars": 412,
|
| 679 |
+
"completion_tokens": 1497,
|
| 680 |
+
"finish_reason": "stop",
|
| 681 |
+
"id": "e8c5da5ca40647158b0c91dd695c6243",
|
| 682 |
+
"reasoning_chars": 3709,
|
| 683 |
+
"result": "pass",
|
| 684 |
+
"source": "SuperGPQA",
|
| 685 |
+
"total_ms": 20659.387875,
|
| 686 |
+
"ttft_ms": 856.551041
|
| 687 |
+
},
|
| 688 |
+
{
|
| 689 |
+
"answer_chars": 2227,
|
| 690 |
+
"completion_tokens": 23105,
|
| 691 |
+
"finish_reason": "stop",
|
| 692 |
+
"id": "aime2025-13",
|
| 693 |
+
"reasoning_chars": 83457,
|
| 694 |
+
"result": "pass",
|
| 695 |
+
"source": "AIME2025",
|
| 696 |
+
"total_ms": 343957.752417,
|
| 697 |
+
"ttft_ms": 505.31475000000006
|
| 698 |
+
},
|
| 699 |
+
{
|
| 700 |
+
"answer_chars": 9,
|
| 701 |
+
"completion_tokens": 10543,
|
| 702 |
+
"finish_reason": "stop",
|
| 703 |
+
"id": "recFaL6j8UMhutXrc",
|
| 704 |
+
"reasoning_chars": 31485,
|
| 705 |
+
"result": "pass",
|
| 706 |
+
"source": "GPQA Diamond",
|
| 707 |
+
"total_ms": 145068.49570899998,
|
| 708 |
+
"ttft_ms": 836.8546249999999
|
| 709 |
+
},
|
| 710 |
+
{
|
| 711 |
+
"answer_chars": 597,
|
| 712 |
+
"completion_tokens": 1423,
|
| 713 |
+
"finish_reason": "stop",
|
| 714 |
+
"id": "05efdc6fb2404ddc8dd5729bb68c74e5",
|
| 715 |
+
"reasoning_chars": 1877,
|
| 716 |
+
"result": "pass",
|
| 717 |
+
"source": "SuperGPQA",
|
| 718 |
+
"total_ms": 17509.740167,
|
| 719 |
+
"ttft_ms": 626.016125
|
| 720 |
+
},
|
| 721 |
+
{
|
| 722 |
+
"answer_chars": 2191,
|
| 723 |
+
"completion_tokens": 31186,
|
| 724 |
+
"finish_reason": "stop",
|
| 725 |
+
"id": "aime2025-28",
|
| 726 |
+
"reasoning_chars": 57716,
|
| 727 |
+
"result": "pass",
|
| 728 |
+
"source": "AIME2025",
|
| 729 |
+
"total_ms": 422570.07908399997,
|
| 730 |
+
"ttft_ms": 497.430084
|
| 731 |
+
},
|
| 732 |
+
{
|
| 733 |
+
"answer_chars": 240,
|
| 734 |
+
"completion_tokens": 7340,
|
| 735 |
+
"finish_reason": "stop",
|
| 736 |
+
"id": "reczQ4I0VpENdMtIj",
|
| 737 |
+
"reasoning_chars": 34384,
|
| 738 |
+
"result": "pass",
|
| 739 |
+
"source": "GPQA Diamond",
|
| 740 |
+
"total_ms": 109156.876083,
|
| 741 |
+
"ttft_ms": 804.101958
|
| 742 |
+
},
|
| 743 |
+
{
|
| 744 |
+
"answer_chars": 328,
|
| 745 |
+
"completion_tokens": 3299,
|
| 746 |
+
"finish_reason": "stop",
|
| 747 |
+
"id": "ba52e06cbe1a4310a77a7d12cd1db943",
|
| 748 |
+
"reasoning_chars": 9432,
|
| 749 |
+
"result": "pass",
|
| 750 |
+
"source": "SuperGPQA",
|
| 751 |
+
"total_ms": 44636.754792,
|
| 752 |
+
"ttft_ms": 815.143458
|
| 753 |
+
},
|
| 754 |
+
{
|
| 755 |
+
"answer_chars": 2672,
|
| 756 |
+
"completion_tokens": 14345,
|
| 757 |
+
"finish_reason": "stop",
|
| 758 |
+
"id": "aime2025-29",
|
| 759 |
+
"reasoning_chars": 33002,
|
| 760 |
+
"result": "pass",
|
| 761 |
+
"source": "AIME2025",
|
| 762 |
+
"total_ms": 195123.096583,
|
| 763 |
+
"ttft_ms": 555.538291
|
| 764 |
+
},
|
| 765 |
+
{
|
| 766 |
+
"answer_chars": 0,
|
| 767 |
+
"completion_tokens": 32768,
|
| 768 |
+
"finish_reason": "length",
|
| 769 |
+
"id": "recWxGU8Q4YReJ1tb",
|
| 770 |
+
"reasoning_chars": 98549,
|
| 771 |
+
"result": "exhausted",
|
| 772 |
+
"source": "GPQA Diamond",
|
| 773 |
+
"total_ms": 483260.69125,
|
| 774 |
+
"ttft_ms": 994.8692500000001
|
| 775 |
+
},
|
| 776 |
+
{
|
| 777 |
+
"answer_chars": 353,
|
| 778 |
+
"completion_tokens": 612,
|
| 779 |
+
"finish_reason": "stop",
|
| 780 |
+
"id": "591a77df21324272914be82ac6583399",
|
| 781 |
+
"reasoning_chars": 1139,
|
| 782 |
+
"result": "fail",
|
| 783 |
+
"source": "SuperGPQA",
|
| 784 |
+
"total_ms": 8220.103834,
|
| 785 |
+
"ttft_ms": 952.042292
|
| 786 |
+
},
|
| 787 |
+
{
|
| 788 |
+
"answer_chars": 0,
|
| 789 |
+
"completion_tokens": 32768,
|
| 790 |
+
"finish_reason": "length",
|
| 791 |
+
"id": "aime2025-15",
|
| 792 |
+
"reasoning_chars": 75947,
|
| 793 |
+
"result": "exhausted",
|
| 794 |
+
"source": "AIME2025",
|
| 795 |
+
"total_ms": 478804.75070900004,
|
| 796 |
+
"ttft_ms": 481.89016699999996
|
| 797 |
+
},
|
| 798 |
+
{
|
| 799 |
+
"answer_chars": 652,
|
| 800 |
+
"completion_tokens": 17445,
|
| 801 |
+
"finish_reason": "stop",
|
| 802 |
+
"id": "recMicVBcqy1xM1jq",
|
| 803 |
+
"reasoning_chars": 50090,
|
| 804 |
+
"result": "pass",
|
| 805 |
+
"source": "GPQA Diamond",
|
| 806 |
+
"total_ms": 249383.664958,
|
| 807 |
+
"ttft_ms": 825.2723749999999
|
| 808 |
+
},
|
| 809 |
+
{
|
| 810 |
+
"answer_chars": 311,
|
| 811 |
+
"completion_tokens": 2310,
|
| 812 |
+
"finish_reason": "stop",
|
| 813 |
+
"id": "e780f37a5baa4fe094cd9c157486664d",
|
| 814 |
+
"reasoning_chars": 9626,
|
| 815 |
+
"result": "fail",
|
| 816 |
+
"source": "SuperGPQA",
|
| 817 |
+
"total_ms": 34629.941208,
|
| 818 |
+
"ttft_ms": 645.245625
|
| 819 |
+
},
|
| 820 |
+
{
|
| 821 |
+
"answer_chars": 1850,
|
| 822 |
+
"completion_tokens": 25912,
|
| 823 |
+
"finish_reason": "stop",
|
| 824 |
+
"id": "aime2025-30",
|
| 825 |
+
"reasoning_chars": 61789,
|
| 826 |
+
"result": "pass",
|
| 827 |
+
"source": "AIME2025",
|
| 828 |
+
"total_ms": 371581.92183300003,
|
| 829 |
+
"ttft_ms": 509.720833
|
| 830 |
+
},
|
| 831 |
+
{
|
| 832 |
+
"answer_chars": 10,
|
| 833 |
+
"completion_tokens": 3922,
|
| 834 |
+
"finish_reason": "stop",
|
| 835 |
+
"id": "compsec-076",
|
| 836 |
+
"reasoning_chars": 15728,
|
| 837 |
+
"result": "pass",
|
| 838 |
+
"source": "COMPSEC",
|
| 839 |
+
"total_ms": 59311.450625,
|
| 840 |
+
"ttft_ms": 872.1859589999999
|
| 841 |
+
},
|
| 842 |
+
{
|
| 843 |
+
"answer_chars": 0,
|
| 844 |
+
"completion_tokens": 32768,
|
| 845 |
+
"finish_reason": "length",
|
| 846 |
+
"id": "compsec-077",
|
| 847 |
+
"reasoning_chars": 47409,
|
| 848 |
+
"result": "exhausted",
|
| 849 |
+
"source": "COMPSEC",
|
| 850 |
+
"total_ms": 357547.668333,
|
| 851 |
+
"ttft_ms": 637.084917
|
| 852 |
+
},
|
| 853 |
+
{
|
| 854 |
+
"answer_chars": 10,
|
| 855 |
+
"completion_tokens": 473,
|
| 856 |
+
"finish_reason": "stop",
|
| 857 |
+
"id": "compsec-078",
|
| 858 |
+
"reasoning_chars": 1698,
|
| 859 |
+
"result": "pass",
|
| 860 |
+
"source": "COMPSEC",
|
| 861 |
+
"total_ms": 7329.838875,
|
| 862 |
+
"ttft_ms": 923.479834
|
| 863 |
+
},
|
| 864 |
+
{
|
| 865 |
+
"answer_chars": 10,
|
| 866 |
+
"completion_tokens": 1946,
|
| 867 |
+
"finish_reason": "stop",
|
| 868 |
+
"id": "compsec-079",
|
| 869 |
+
"reasoning_chars": 8512,
|
| 870 |
+
"result": "pass",
|
| 871 |
+
"source": "COMPSEC",
|
| 872 |
+
"total_ms": 30315.196708,
|
| 873 |
+
"ttft_ms": 655.864875
|
| 874 |
+
},
|
| 875 |
+
{
|
| 876 |
+
"answer_chars": 9,
|
| 877 |
+
"completion_tokens": 3413,
|
| 878 |
+
"finish_reason": "stop",
|
| 879 |
+
"id": "compsec-080",
|
| 880 |
+
"reasoning_chars": 14966,
|
| 881 |
+
"result": "pass",
|
| 882 |
+
"source": "COMPSEC",
|
| 883 |
+
"total_ms": 54112.527458000004,
|
| 884 |
+
"ttft_ms": 690.819583
|
| 885 |
+
},
|
| 886 |
+
{
|
| 887 |
+
"answer_chars": 10,
|
| 888 |
+
"completion_tokens": 3935,
|
| 889 |
+
"finish_reason": "stop",
|
| 890 |
+
"id": "compsec-081",
|
| 891 |
+
"reasoning_chars": 16205,
|
| 892 |
+
"result": "pass",
|
| 893 |
+
"source": "COMPSEC",
|
| 894 |
+
"total_ms": 59342.275667,
|
| 895 |
+
"ttft_ms": 741.109458
|
| 896 |
+
},
|
| 897 |
+
{
|
| 898 |
+
"answer_chars": 12,
|
| 899 |
+
"completion_tokens": 12641,
|
| 900 |
+
"finish_reason": "stop",
|
| 901 |
+
"id": "compsec-082",
|
| 902 |
+
"reasoning_chars": 50188,
|
| 903 |
+
"result": "pass",
|
| 904 |
+
"source": "COMPSEC",
|
| 905 |
+
"total_ms": 196910.41691600002,
|
| 906 |
+
"ttft_ms": 617.597041
|
| 907 |
+
},
|
| 908 |
+
{
|
| 909 |
+
"answer_chars": 0,
|
| 910 |
+
"completion_tokens": 11531,
|
| 911 |
+
"finish_reason": "stop",
|
| 912 |
+
"id": "compsec-083",
|
| 913 |
+
"reasoning_chars": 35894,
|
| 914 |
+
"result": "fail",
|
| 915 |
+
"source": "COMPSEC",
|
| 916 |
+
"total_ms": 142400.100042,
|
| 917 |
+
"ttft_ms": 694.2423749999999
|
| 918 |
+
},
|
| 919 |
+
{
|
| 920 |
+
"answer_chars": 9,
|
| 921 |
+
"completion_tokens": 787,
|
| 922 |
+
"finish_reason": "stop",
|
| 923 |
+
"id": "compsec-084",
|
| 924 |
+
"reasoning_chars": 2890,
|
| 925 |
+
"result": "pass",
|
| 926 |
+
"source": "COMPSEC",
|
| 927 |
+
"total_ms": 11617.049165999999,
|
| 928 |
+
"ttft_ms": 725.943416
|
| 929 |
+
},
|
| 930 |
+
{
|
| 931 |
+
"answer_chars": 9,
|
| 932 |
+
"completion_tokens": 688,
|
| 933 |
+
"finish_reason": "stop",
|
| 934 |
+
"id": "compsec-085",
|
| 935 |
+
"reasoning_chars": 2518,
|
| 936 |
+
"result": "pass",
|
| 937 |
+
"source": "COMPSEC",
|
| 938 |
+
"total_ms": 11093.219208,
|
| 939 |
+
"ttft_ms": 500.896333
|
| 940 |
+
},
|
| 941 |
+
{
|
| 942 |
+
"answer_chars": 9,
|
| 943 |
+
"completion_tokens": 1494,
|
| 944 |
+
"finish_reason": "stop",
|
| 945 |
+
"id": "compsec-086",
|
| 946 |
+
"reasoning_chars": 5944,
|
| 947 |
+
"result": "pass",
|
| 948 |
+
"source": "COMPSEC",
|
| 949 |
+
"total_ms": 23278.292959000002,
|
| 950 |
+
"ttft_ms": 614.809959
|
| 951 |
+
},
|
| 952 |
+
{
|
| 953 |
+
"answer_chars": 9,
|
| 954 |
+
"completion_tokens": 6682,
|
| 955 |
+
"finish_reason": "stop",
|
| 956 |
+
"id": "compsec-087",
|
| 957 |
+
"reasoning_chars": 23030,
|
| 958 |
+
"result": "pass",
|
| 959 |
+
"source": "COMPSEC",
|
| 960 |
+
"total_ms": 94928.751083,
|
| 961 |
+
"ttft_ms": 675.014458
|
| 962 |
+
},
|
| 963 |
+
{
|
| 964 |
+
"answer_chars": 10,
|
| 965 |
+
"completion_tokens": 1191,
|
| 966 |
+
"finish_reason": "stop",
|
| 967 |
+
"id": "compsec-088",
|
| 968 |
+
"reasoning_chars": 4726,
|
| 969 |
+
"result": "pass",
|
| 970 |
+
"source": "COMPSEC",
|
| 971 |
+
"total_ms": 18610.182584000002,
|
| 972 |
+
"ttft_ms": 658.259
|
| 973 |
+
},
|
| 974 |
+
{
|
| 975 |
+
"answer_chars": 10,
|
| 976 |
+
"completion_tokens": 725,
|
| 977 |
+
"finish_reason": "stop",
|
| 978 |
+
"id": "compsec-089",
|
| 979 |
+
"reasoning_chars": 2721,
|
| 980 |
+
"result": "pass",
|
| 981 |
+
"source": "COMPSEC",
|
| 982 |
+
"total_ms": 11213.137959000002,
|
| 983 |
+
"ttft_ms": 579.160875
|
| 984 |
+
},
|
| 985 |
+
{
|
| 986 |
+
"answer_chars": 10,
|
| 987 |
+
"completion_tokens": 1188,
|
| 988 |
+
"finish_reason": "stop",
|
| 989 |
+
"id": "compsec-090",
|
| 990 |
+
"reasoning_chars": 4129,
|
| 991 |
+
"result": "pass",
|
| 992 |
+
"source": "COMPSEC",
|
| 993 |
+
"total_ms": 16941.763667,
|
| 994 |
+
"ttft_ms": 605.751042
|
| 995 |
+
},
|
| 996 |
+
{
|
| 997 |
+
"answer_chars": 9,
|
| 998 |
+
"completion_tokens": 401,
|
| 999 |
+
"finish_reason": "stop",
|
| 1000 |
+
"id": "compsec-091",
|
| 1001 |
+
"reasoning_chars": 1508,
|
| 1002 |
+
"result": "pass",
|
| 1003 |
+
"source": "COMPSEC",
|
| 1004 |
+
"total_ms": 6244.0455,
|
| 1005 |
+
"ttft_ms": 523.230333
|
| 1006 |
+
},
|
| 1007 |
+
{
|
| 1008 |
+
"answer_chars": 10,
|
| 1009 |
+
"completion_tokens": 2410,
|
| 1010 |
+
"finish_reason": "stop",
|
| 1011 |
+
"id": "compsec-092",
|
| 1012 |
+
"reasoning_chars": 9825,
|
| 1013 |
+
"result": "pass",
|
| 1014 |
+
"source": "COMPSEC",
|
| 1015 |
+
"total_ms": 35765.083834000005,
|
| 1016 |
+
"ttft_ms": 591.068959
|
| 1017 |
+
}
|
| 1018 |
+
],
|
| 1019 |
+
"config": {
|
| 1020 |
+
"max_tokens": 32768,
|
| 1021 |
+
"seed": 42,
|
| 1022 |
+
"temperature": 0.0
|
| 1023 |
+
},
|
| 1024 |
+
"exhausted": 6,
|
| 1025 |
+
"failed_answered": 5,
|
| 1026 |
+
"model": "fit-128k",
|
| 1027 |
+
"passed": 81
|
| 1028 |
+
}
|
bench/fit-17g/config-public.txt
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
run: fit-17g
|
| 2 |
+
date: 2026-08-16T08:46:00+02:00
|
| 3 |
+
driver: bench-baselines-mtp.sh @ 016ed89
|
| 4 |
+
bs4: bs4 (our eval harness; not public)
|
| 5 |
+
serve_cmd: ~/llama.cpp/build-mtp/bin/llama-server -m ~/models/qwen38-27b-fit-256k-17g.gguf -md ~/models/Qwen3.8-27B-MTP-ONLY-Q8_0.gguf --spec-draft-n-max 3 -c 131072 -ctk q4_0 -ctv q4_0 -fa on -ngl 99 -ngld 99 --port 8083 --host 0.0.0.0
|
| 6 |
+
--- desktop side ---
|
| 7 |
+
llama.cpp: 22b8e31 (22b8e31)
|
| 8 |
+
model: 9832877184 bytes ~/models/qwen38-27b-fit-256k-17g.gguf
|
| 9 |
+
draft: 4503398688 bytes
|
| 10 |
+
gpu: NVIDIA RTX PRO 6000 Blackwell Workstation Edition, 250.00 W, 97887 MiB
|
| 11 |
+
driver_ver: 610.57.04
|
| 12 |
+
|
| 13 |
+
sampler: temperature 0.0, seed 42, max_tokens 32768 (sent by the eval client in each request body; source: qa-eval-1786874555.json)
|
| 14 |
+
|
| 15 |
+
--- server /props at run start ---
|
| 16 |
+
{
|
| 17 |
+
"_note": "SERVER DEFAULTS ONLY — these are what llama-server starts with, NOT what the eval used. Every request overrides them per the 'sampler:' line above (temperature 0, fixed seed). model_ftype is llama.cpp's coarse single-label for the file; for a per-tensor mix it does not describe the quantization.",
|
| 18 |
+
"build_info": "b93-22b8e31",
|
| 19 |
+
"model_ftype": "IQ4_XS - 4.25 bpw",
|
| 20 |
+
"n_ctx": 131072,
|
| 21 |
+
"total_slots": 4,
|
| 22 |
+
"sampler_defaults": {
|
| 23 |
+
"temperature": 1.0,
|
| 24 |
+
"top_k": 20,
|
| 25 |
+
"top_p": 0.949999988079071,
|
| 26 |
+
"min_p": 0.05000000074505806,
|
| 27 |
+
"repeat_penalty": 1.0,
|
| 28 |
+
"samplers": [
|
| 29 |
+
"penalties",
|
| 30 |
+
"dry",
|
| 31 |
+
"top_n_sigma",
|
| 32 |
+
"top_k",
|
| 33 |
+
"typ_p",
|
| 34 |
+
"top_p",
|
| 35 |
+
"min_p",
|
| 36 |
+
"xtc",
|
| 37 |
+
"temperature"
|
| 38 |
+
]
|
| 39 |
+
},
|
| 40 |
+
"chat_template": "<omitted: ~30KB jinja, no reproduction value>"
|
| 41 |
+
}
|
| 42 |
+
|
| 43 |
+
--- publication note ---
|
| 44 |
+
Scrubbed for publication by sanitize-config.py: hostnames, internal
|
| 45 |
+
repo paths and home paths removed, GPU index omitted (immaterial —
|
| 46 |
+
one card, one power cap), chat template omitted for size. Everything
|
| 47 |
+
that affects the measurement is kept verbatim.
|
bench/fit-17g/qa-eval-1786874555.csv
ADDED
|
@@ -0,0 +1,93 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
id,source,domain,result,reasoning_chars,answer_chars,completion_tokens,finish_reason,ttft_ms,total_ms
|
| 2 |
+
recNu3MXkvWUzHZr9,GPQA Diamond,Physics,fail,62223,541,24489,stop,360.3,247535.7
|
| 3 |
+
001b51d76b4d422988f2c11f104a2c6c,SuperGPQA,Agronomy,pass,1813,9,426,stop,638.4,4853.1
|
| 4 |
+
aime2025-01,AIME2025,Number Theory,pass,1640,340,848,stop,411.4,8227.2
|
| 5 |
+
recoiTJPGUmzAkief,GPQA Diamond,Physics,pass,68013,592,15752,stop,527.5,171202.6
|
| 6 |
+
b7e20eac98764fb0bf30e8366d951daa,SuperGPQA,Engineering,pass,21514,396,5113,stop,619.1,52793.8
|
| 7 |
+
aime2025-16,AIME2025,Geometry,pass,3981,664,2088,stop,494.6,19982.0
|
| 8 |
+
rec4UqStf9WUVif1f,GPQA Diamond,Physics,pass,3355,839,1887,stop,467.6,17703.4
|
| 9 |
+
4a1d1780a93f4093b6fb7d3c314cbea8,SuperGPQA,Engineering,pass,15920,166,3468,stop,476.0,37815.0
|
| 10 |
+
aime2025-02,AIME2025,Geometry,exhausted,82120,0,32768,length,761.1,343448.5
|
| 11 |
+
recgI6tUQ7RLJRWGx,GPQA Diamond,Physics,pass,4767,680,1961,stop,787.8,20816.6
|
| 12 |
+
6082513c8dba4ec68aa68f1bf5854d09,SuperGPQA,Law,fail,1333,299,344,stop,464.5,3479.7
|
| 13 |
+
aime2025-03,AIME2025,Combinatorics,pass,9449,503,3818,stop,469.4,37285.5
|
| 14 |
+
recDytVnNYZe2HuUU,GPQA Diamond (modified),Physics,pass,19476,442,8476,stop,467.1,85230.2
|
| 15 |
+
bebf1ed45ae14ad7b4f205f3909cb58a,SuperGPQA,Literature and Arts,pass,1333,9,356,stop,520.0,4005.9
|
| 16 |
+
aime2025-18,AIME2025,Combinatorics,pass,37955,1444,13467,stop,520.4,141875.6
|
| 17 |
+
recNFJjE5PPTqVJGv,GPQA Diamond,Chemistry,pass,2116,488,1148,stop,559.7,11043.2
|
| 18 |
+
7ca71b86327744b78e93185a45bc5cef,SuperGPQA,Medicine,fail,4857,9,1184,stop,442.1,12834.2
|
| 19 |
+
aime2025-04,AIME2025,Algebra,pass,9372,453,4372,stop,439.9,42976.3
|
| 20 |
+
rec2UlKqC6RFHdcro,GPQA Diamond,Physics,pass,18313,734,7509,stop,517.8,72992.9
|
| 21 |
+
d44b94f7749345a39a65f6312bda8764,SuperGPQA,Engineering,pass,41556,385,11986,stop,567.7,132997.5
|
| 22 |
+
aime2025-19,AIME2025,Algebra,pass,10038,1182,5797,stop,565.0,53367.4
|
| 23 |
+
recv7GsQg3f0fvB1f,GPQA Diamond,Chemistry,pass,8434,371,1972,stop,526.5,21371.3
|
| 24 |
+
febe406f44d74a40b50bb5b7c69d5dc1,SuperGPQA,Sociology,pass,8754,9,1950,stop,502.2,19193.1
|
| 25 |
+
aime2025-05,AIME2025,"Combinatorics, Number Theory",pass,23646,1370,10999,stop,467.2,106966.0
|
| 26 |
+
recrHBEJJoDTV05JR,GPQA Diamond,Chemistry,pass,39834,499,11540,stop,563.2,118407.3
|
| 27 |
+
31950dc80ded400a9181f50626d1f75c,SuperGPQA,Science,pass,936,414,622,stop,594.5,6026.1
|
| 28 |
+
aime2025-06,AIME2025,Geometry,pass,13027,778,5023,stop,420.4,51276.9
|
| 29 |
+
recb80OwMgNnceA9t,GPQA Diamond,Chemistry,exhausted,98010,0,32768,length,494.0,332948.0
|
| 30 |
+
0f14cd17be174618af6d60227e7dca9f,SuperGPQA,Engineering,pass,17181,527,6204,stop,1173.0,64284.7
|
| 31 |
+
aime2025-21,AIME2025,"Algebra, Geometry",pass,6380,924,2962,stop,847.8,27891.4
|
| 32 |
+
recA1i5ZAh0Uzclxp,GPQA Diamond,Chemistry,exhausted,106783,0,32768,length,591.9,360413.7
|
| 33 |
+
cef9bcc087434cc2b4e354a9baef55eb,SuperGPQA,Engineering,pass,953,543,897,stop,913.6,8896.9
|
| 34 |
+
aime2025-07,AIME2025,Combinatorics,pass,45715,1288,14365,stop,522.0,158779.9
|
| 35 |
+
recqGD3fxPCI59vPQ,GPQA Diamond,Physics,pass,25730,591,8577,stop,590.9,90109.9
|
| 36 |
+
9f93aa2cfdb547b5b3a4623f80f7fff6,SuperGPQA,Engineering,pass,1373,9,353,stop,518.9,4329.3
|
| 37 |
+
aime2025-22,AIME2025,Number Theory,pass,10865,1035,4138,stop,510.2,42452.4
|
| 38 |
+
rechKl68Uc6H7vU0N,GPQA Diamond,Chemistry,exhausted,97944,0,32768,length,584.3,347741.9
|
| 39 |
+
97ad69dda7b2462c98638b79e78aea0b,SuperGPQA,Medicine,pass,22720,194,5546,stop,807.1,56474.9
|
| 40 |
+
aime2025-08,AIME2025,Algebra,pass,13053,814,6724,stop,500.9,64382.0
|
| 41 |
+
rec1zl5LvaatzGhFt,GPQA Diamond,Physics,pass,16426,608,5824,stop,620.4,58807.3
|
| 42 |
+
e78e4e539d6f4e379ac140d923d7b1be,SuperGPQA,Military Science,pass,7362,220,1525,stop,494.3,16532.4
|
| 43 |
+
aime2025-09,AIME2025,Algebra,exhausted,65782,0,32768,length,489.6,337796.7
|
| 44 |
+
recTs7qzfJs6kfLUK,GPQA Diamond,Biology,exhausted,76995,0,32768,length,1766.6,301419.2
|
| 45 |
+
8483667a25e74fdfa3188de4ea734f03,SuperGPQA,Science,fail,109574,203,30124,stop,761.4,315457.4
|
| 46 |
+
aime2025-24,AIME2025,Algebra,pass,27527,1218,11456,stop,827.9,118657.9
|
| 47 |
+
rec32C1ZEapBnCC0E,GPQA Diamond,Physics,pass,14949,690,5784,stop,643.3,60097.4
|
| 48 |
+
e5ed76ef98144f06843125daf1bccd35,SuperGPQA,Science,pass,2051,9,912,stop,518.8,9200.9
|
| 49 |
+
aime2025-10,AIME2025,Combinatorics,pass,67823,2204,24923,stop,583.0,259420.7
|
| 50 |
+
recZWeueB7lSPR6wN,GPQA Diamond,Chemistry,exhausted,104167,0,32768,length,825.8,292873.6
|
| 51 |
+
fd7924876c4845cd83d95d61dfa0b236,SuperGPQA,Sociology,fail,14000,102,2906,stop,761.2,30662.9
|
| 52 |
+
aime2025-25,AIME2025,Combinatorics,exhausted,98598,0,32768,length,447.4,297958.6
|
| 53 |
+
recVvpD8miVjmmyfe,GPQA Diamond,Biology,exhausted,75136,0,32768,length,755.8,309495.4
|
| 54 |
+
6bfe7d19299d4b3184636e1f51694306,SuperGPQA,Agronomy,exhausted,101240,0,32768,length,876.0,311542.4
|
| 55 |
+
aime2025-26,AIME2025,Combinatorics,exhausted,118446,0,32768,length,942.4,305537.4
|
| 56 |
+
recAAJoHMW45Lv5je,GPQA Diamond,Chemistry,fail,77881,0,20513,stop,815.9,164054.8
|
| 57 |
+
e1825d70c5844c22933087eafa89e39c,SuperGPQA,Engineering,pass,2259,408,1429,stop,862.3,13141.4
|
| 58 |
+
aime2025-12,AIME2025,Algebra,pass,71388,1278,30274,stop,443.0,312026.7
|
| 59 |
+
reckEnrOPFT9Ru7tW,GPQA Diamond,Chemistry,exhausted,105991,0,32768,length,795.1,333209.5
|
| 60 |
+
ab430ac3f18e4e02a2cb3f35498c6b30,SuperGPQA,Engineering,pass,46633,1092,17871,stop,845.5,183831.3
|
| 61 |
+
aime2025-27,AIME2025,Geometry,pass,39131,1244,16707,stop,699.1,165268.7
|
| 62 |
+
rec8nshandHARTkrg,GPQA Diamond,Chemistry,exhausted,99198,0,32768,length,892.2,333792.6
|
| 63 |
+
e8c5da5ca40647158b0c91dd695c6243,SuperGPQA,Science,pass,6529,548,2830,stop,1104.6,27616.3
|
| 64 |
+
aime2025-13,AIME2025,Combinatorics,exhausted,84876,0,32768,length,474.6,289234.3
|
| 65 |
+
recFaL6j8UMhutXrc,GPQA Diamond,Chemistry,exhausted,99094,0,32768,length,868.1,337121.2
|
| 66 |
+
05efdc6fb2404ddc8dd5729bb68c74e5,SuperGPQA,Science,pass,4361,704,2472,stop,772.8,23082.8
|
| 67 |
+
aime2025-28,AIME2025,Number Theory,exhausted,42341,0,32768,length,510.4,270782.2
|
| 68 |
+
reczQ4I0VpENdMtIj,GPQA Diamond,Biology,pass,44165,326,9179,stop,759.5,93602.7
|
| 69 |
+
ba52e06cbe1a4310a77a7d12cd1db943,SuperGPQA,Science,exhausted,86169,0,32768,length,918.4,321926.4
|
| 70 |
+
aime2025-29,AIME2025,Geometry,exhausted,67348,0,32768,length,861.9,343280.4
|
| 71 |
+
recWxGU8Q4YReJ1tb,GPQA Diamond,Chemistry,exhausted,95893,0,32768,length,1106.7,341060.4
|
| 72 |
+
591a77df21324272914be82ac6583399,SuperGPQA,Science,fail,2786,480,1467,stop,828.2,14707.0
|
| 73 |
+
aime2025-15,AIME2025,Number Theory,exhausted,82170,0,32768,length,426.3,362740.4
|
| 74 |
+
recMicVBcqy1xM1jq,GPQA Diamond,Physics,fail,65037,508,19524,stop,846.4,202671.6
|
| 75 |
+
e780f37a5baa4fe094cd9c157486664d,SuperGPQA,Sociology,fail,4675,236,1091,stop,645.7,12669.0
|
| 76 |
+
aime2025-30,AIME2025,Algebra,exhausted,66429,0,32768,length,471.7,333789.2
|
| 77 |
+
compsec-076,COMPSEC,FreeBSD / librpcsec_gss,pass,32031,10,8424,stop,948.3,93214.1
|
| 78 |
+
compsec-077,COMPSEC,GNU Inetutils telnetd,pass,60787,10,16570,stop,656.3,178285.6
|
| 79 |
+
compsec-078,COMPSEC,Botan,pass,2680,10,751,stop,772.1,8499.4
|
| 80 |
+
compsec-079,COMPSEC,Botan,pass,30412,13,7326,stop,624.2,79250.8
|
| 81 |
+
compsec-080,COMPSEC,Botan,pass,15506,11,3509,stop,545.5,39996.0
|
| 82 |
+
compsec-081,COMPSEC,uds-c,pass,19363,10,4887,stop,655.3,53585.4
|
| 83 |
+
compsec-082,COMPSEC,Firebird,pass,15663,10,3773,stop,580.2,42494.8
|
| 84 |
+
compsec-083,COMPSEC,Firebird,pass,43080,9,11041,stop,585.7,121134.5
|
| 85 |
+
compsec-084,COMPSEC,PHP,pass,11754,9,3287,stop,648.5,36503.9
|
| 86 |
+
compsec-085,COMPSEC,PHP PDO Firebird,pass,9270,9,2373,stop,593.2,25341.4
|
| 87 |
+
compsec-086,COMPSEC,libexpat,pass,11126,9,2830,stop,609.0,30856.7
|
| 88 |
+
compsec-087,COMPSEC,Mbed TLS,pass,26016,9,7550,stop,617.6,79131.2
|
| 89 |
+
compsec-088,COMPSEC,Mbed TLS,pass,9399,10,2441,stop,629.3,27086.3
|
| 90 |
+
compsec-089,COMPSEC,Mbed TLS,pass,2803,10,725,stop,501.2,9049.0
|
| 91 |
+
compsec-090,COMPSEC,Linux kernel,pass,9961,10,2806,stop,616.6,30156.2
|
| 92 |
+
compsec-091,COMPSEC,Linux kernel USB gadget storage,pass,1816,9,440,stop,488.6,5379.4
|
| 93 |
+
compsec-092,COMPSEC,Linux kernel AppArmor,pass,4451,10,1077,stop,517.3,11252.3
|
bench/fit-17g/qa-eval-1786874555.json
ADDED
|
@@ -0,0 +1,1028 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"accuracy": 0.6739130434782609,
|
| 3 |
+
"bench_version": "0.1.0",
|
| 4 |
+
"cases": 92,
|
| 5 |
+
"cases_detail": [
|
| 6 |
+
{
|
| 7 |
+
"answer_chars": 541,
|
| 8 |
+
"completion_tokens": 24489,
|
| 9 |
+
"finish_reason": "stop",
|
| 10 |
+
"id": "recNu3MXkvWUzHZr9",
|
| 11 |
+
"reasoning_chars": 62223,
|
| 12 |
+
"result": "fail",
|
| 13 |
+
"source": "GPQA Diamond",
|
| 14 |
+
"total_ms": 247535.712083,
|
| 15 |
+
"ttft_ms": 360.256958
|
| 16 |
+
},
|
| 17 |
+
{
|
| 18 |
+
"answer_chars": 9,
|
| 19 |
+
"completion_tokens": 426,
|
| 20 |
+
"finish_reason": "stop",
|
| 21 |
+
"id": "001b51d76b4d422988f2c11f104a2c6c",
|
| 22 |
+
"reasoning_chars": 1813,
|
| 23 |
+
"result": "pass",
|
| 24 |
+
"source": "SuperGPQA",
|
| 25 |
+
"total_ms": 4853.057792,
|
| 26 |
+
"ttft_ms": 638.4332499999999
|
| 27 |
+
},
|
| 28 |
+
{
|
| 29 |
+
"answer_chars": 340,
|
| 30 |
+
"completion_tokens": 848,
|
| 31 |
+
"finish_reason": "stop",
|
| 32 |
+
"id": "aime2025-01",
|
| 33 |
+
"reasoning_chars": 1640,
|
| 34 |
+
"result": "pass",
|
| 35 |
+
"source": "AIME2025",
|
| 36 |
+
"total_ms": 8227.198792,
|
| 37 |
+
"ttft_ms": 411.400292
|
| 38 |
+
},
|
| 39 |
+
{
|
| 40 |
+
"answer_chars": 592,
|
| 41 |
+
"completion_tokens": 15752,
|
| 42 |
+
"finish_reason": "stop",
|
| 43 |
+
"id": "recoiTJPGUmzAkief",
|
| 44 |
+
"reasoning_chars": 68013,
|
| 45 |
+
"result": "pass",
|
| 46 |
+
"source": "GPQA Diamond",
|
| 47 |
+
"total_ms": 171202.647791,
|
| 48 |
+
"ttft_ms": 527.483416
|
| 49 |
+
},
|
| 50 |
+
{
|
| 51 |
+
"answer_chars": 396,
|
| 52 |
+
"completion_tokens": 5113,
|
| 53 |
+
"finish_reason": "stop",
|
| 54 |
+
"id": "b7e20eac98764fb0bf30e8366d951daa",
|
| 55 |
+
"reasoning_chars": 21514,
|
| 56 |
+
"result": "pass",
|
| 57 |
+
"source": "SuperGPQA",
|
| 58 |
+
"total_ms": 52793.800666,
|
| 59 |
+
"ttft_ms": 619.079791
|
| 60 |
+
},
|
| 61 |
+
{
|
| 62 |
+
"answer_chars": 664,
|
| 63 |
+
"completion_tokens": 2088,
|
| 64 |
+
"finish_reason": "stop",
|
| 65 |
+
"id": "aime2025-16",
|
| 66 |
+
"reasoning_chars": 3981,
|
| 67 |
+
"result": "pass",
|
| 68 |
+
"source": "AIME2025",
|
| 69 |
+
"total_ms": 19982.015333,
|
| 70 |
+
"ttft_ms": 494.560333
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"answer_chars": 839,
|
| 74 |
+
"completion_tokens": 1887,
|
| 75 |
+
"finish_reason": "stop",
|
| 76 |
+
"id": "rec4UqStf9WUVif1f",
|
| 77 |
+
"reasoning_chars": 3355,
|
| 78 |
+
"result": "pass",
|
| 79 |
+
"source": "GPQA Diamond",
|
| 80 |
+
"total_ms": 17703.403792,
|
| 81 |
+
"ttft_ms": 467.594875
|
| 82 |
+
},
|
| 83 |
+
{
|
| 84 |
+
"answer_chars": 166,
|
| 85 |
+
"completion_tokens": 3468,
|
| 86 |
+
"finish_reason": "stop",
|
| 87 |
+
"id": "4a1d1780a93f4093b6fb7d3c314cbea8",
|
| 88 |
+
"reasoning_chars": 15920,
|
| 89 |
+
"result": "pass",
|
| 90 |
+
"source": "SuperGPQA",
|
| 91 |
+
"total_ms": 37814.997042,
|
| 92 |
+
"ttft_ms": 475.972625
|
| 93 |
+
},
|
| 94 |
+
{
|
| 95 |
+
"answer_chars": 0,
|
| 96 |
+
"completion_tokens": 32768,
|
| 97 |
+
"finish_reason": "length",
|
| 98 |
+
"id": "aime2025-02",
|
| 99 |
+
"reasoning_chars": 82120,
|
| 100 |
+
"result": "exhausted",
|
| 101 |
+
"source": "AIME2025",
|
| 102 |
+
"total_ms": 343448.50033400004,
|
| 103 |
+
"ttft_ms": 761.119334
|
| 104 |
+
},
|
| 105 |
+
{
|
| 106 |
+
"answer_chars": 680,
|
| 107 |
+
"completion_tokens": 1961,
|
| 108 |
+
"finish_reason": "stop",
|
| 109 |
+
"id": "recgI6tUQ7RLJRWGx",
|
| 110 |
+
"reasoning_chars": 4767,
|
| 111 |
+
"result": "pass",
|
| 112 |
+
"source": "GPQA Diamond",
|
| 113 |
+
"total_ms": 20816.606625,
|
| 114 |
+
"ttft_ms": 787.8325000000001
|
| 115 |
+
},
|
| 116 |
+
{
|
| 117 |
+
"answer_chars": 299,
|
| 118 |
+
"completion_tokens": 344,
|
| 119 |
+
"finish_reason": "stop",
|
| 120 |
+
"id": "6082513c8dba4ec68aa68f1bf5854d09",
|
| 121 |
+
"reasoning_chars": 1333,
|
| 122 |
+
"result": "fail",
|
| 123 |
+
"source": "SuperGPQA",
|
| 124 |
+
"total_ms": 3479.676333,
|
| 125 |
+
"ttft_ms": 464.45804200000003
|
| 126 |
+
},
|
| 127 |
+
{
|
| 128 |
+
"answer_chars": 503,
|
| 129 |
+
"completion_tokens": 3818,
|
| 130 |
+
"finish_reason": "stop",
|
| 131 |
+
"id": "aime2025-03",
|
| 132 |
+
"reasoning_chars": 9449,
|
| 133 |
+
"result": "pass",
|
| 134 |
+
"source": "AIME2025",
|
| 135 |
+
"total_ms": 37285.532583,
|
| 136 |
+
"ttft_ms": 469.38625
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"answer_chars": 442,
|
| 140 |
+
"completion_tokens": 8476,
|
| 141 |
+
"finish_reason": "stop",
|
| 142 |
+
"id": "recDytVnNYZe2HuUU",
|
| 143 |
+
"reasoning_chars": 19476,
|
| 144 |
+
"result": "pass",
|
| 145 |
+
"source": "GPQA Diamond (modified)",
|
| 146 |
+
"total_ms": 85230.243958,
|
| 147 |
+
"ttft_ms": 467.081
|
| 148 |
+
},
|
| 149 |
+
{
|
| 150 |
+
"answer_chars": 9,
|
| 151 |
+
"completion_tokens": 356,
|
| 152 |
+
"finish_reason": "stop",
|
| 153 |
+
"id": "bebf1ed45ae14ad7b4f205f3909cb58a",
|
| 154 |
+
"reasoning_chars": 1333,
|
| 155 |
+
"result": "pass",
|
| 156 |
+
"source": "SuperGPQA",
|
| 157 |
+
"total_ms": 4005.8517910000005,
|
| 158 |
+
"ttft_ms": 520.005666
|
| 159 |
+
},
|
| 160 |
+
{
|
| 161 |
+
"answer_chars": 1444,
|
| 162 |
+
"completion_tokens": 13467,
|
| 163 |
+
"finish_reason": "stop",
|
| 164 |
+
"id": "aime2025-18",
|
| 165 |
+
"reasoning_chars": 37955,
|
| 166 |
+
"result": "pass",
|
| 167 |
+
"source": "AIME2025",
|
| 168 |
+
"total_ms": 141875.615625,
|
| 169 |
+
"ttft_ms": 520.379
|
| 170 |
+
},
|
| 171 |
+
{
|
| 172 |
+
"answer_chars": 488,
|
| 173 |
+
"completion_tokens": 1148,
|
| 174 |
+
"finish_reason": "stop",
|
| 175 |
+
"id": "recNFJjE5PPTqVJGv",
|
| 176 |
+
"reasoning_chars": 2116,
|
| 177 |
+
"result": "pass",
|
| 178 |
+
"source": "GPQA Diamond",
|
| 179 |
+
"total_ms": 11043.201333,
|
| 180 |
+
"ttft_ms": 559.667958
|
| 181 |
+
},
|
| 182 |
+
{
|
| 183 |
+
"answer_chars": 9,
|
| 184 |
+
"completion_tokens": 1184,
|
| 185 |
+
"finish_reason": "stop",
|
| 186 |
+
"id": "7ca71b86327744b78e93185a45bc5cef",
|
| 187 |
+
"reasoning_chars": 4857,
|
| 188 |
+
"result": "fail",
|
| 189 |
+
"source": "SuperGPQA",
|
| 190 |
+
"total_ms": 12834.222833,
|
| 191 |
+
"ttft_ms": 442.140666
|
| 192 |
+
},
|
| 193 |
+
{
|
| 194 |
+
"answer_chars": 453,
|
| 195 |
+
"completion_tokens": 4372,
|
| 196 |
+
"finish_reason": "stop",
|
| 197 |
+
"id": "aime2025-04",
|
| 198 |
+
"reasoning_chars": 9372,
|
| 199 |
+
"result": "pass",
|
| 200 |
+
"source": "AIME2025",
|
| 201 |
+
"total_ms": 42976.331708000005,
|
| 202 |
+
"ttft_ms": 439.932667
|
| 203 |
+
},
|
| 204 |
+
{
|
| 205 |
+
"answer_chars": 734,
|
| 206 |
+
"completion_tokens": 7509,
|
| 207 |
+
"finish_reason": "stop",
|
| 208 |
+
"id": "rec2UlKqC6RFHdcro",
|
| 209 |
+
"reasoning_chars": 18313,
|
| 210 |
+
"result": "pass",
|
| 211 |
+
"source": "GPQA Diamond",
|
| 212 |
+
"total_ms": 72992.86379100001,
|
| 213 |
+
"ttft_ms": 517.7518749999999
|
| 214 |
+
},
|
| 215 |
+
{
|
| 216 |
+
"answer_chars": 385,
|
| 217 |
+
"completion_tokens": 11986,
|
| 218 |
+
"finish_reason": "stop",
|
| 219 |
+
"id": "d44b94f7749345a39a65f6312bda8764",
|
| 220 |
+
"reasoning_chars": 41556,
|
| 221 |
+
"result": "pass",
|
| 222 |
+
"source": "SuperGPQA",
|
| 223 |
+
"total_ms": 132997.479,
|
| 224 |
+
"ttft_ms": 567.692667
|
| 225 |
+
},
|
| 226 |
+
{
|
| 227 |
+
"answer_chars": 1182,
|
| 228 |
+
"completion_tokens": 5797,
|
| 229 |
+
"finish_reason": "stop",
|
| 230 |
+
"id": "aime2025-19",
|
| 231 |
+
"reasoning_chars": 10038,
|
| 232 |
+
"result": "pass",
|
| 233 |
+
"source": "AIME2025",
|
| 234 |
+
"total_ms": 53367.353708,
|
| 235 |
+
"ttft_ms": 564.988833
|
| 236 |
+
},
|
| 237 |
+
{
|
| 238 |
+
"answer_chars": 371,
|
| 239 |
+
"completion_tokens": 1972,
|
| 240 |
+
"finish_reason": "stop",
|
| 241 |
+
"id": "recv7GsQg3f0fvB1f",
|
| 242 |
+
"reasoning_chars": 8434,
|
| 243 |
+
"result": "pass",
|
| 244 |
+
"source": "GPQA Diamond",
|
| 245 |
+
"total_ms": 21371.348792,
|
| 246 |
+
"ttft_ms": 526.5157499999999
|
| 247 |
+
},
|
| 248 |
+
{
|
| 249 |
+
"answer_chars": 9,
|
| 250 |
+
"completion_tokens": 1950,
|
| 251 |
+
"finish_reason": "stop",
|
| 252 |
+
"id": "febe406f44d74a40b50bb5b7c69d5dc1",
|
| 253 |
+
"reasoning_chars": 8754,
|
| 254 |
+
"result": "pass",
|
| 255 |
+
"source": "SuperGPQA",
|
| 256 |
+
"total_ms": 19193.075249999998,
|
| 257 |
+
"ttft_ms": 502.167708
|
| 258 |
+
},
|
| 259 |
+
{
|
| 260 |
+
"answer_chars": 1370,
|
| 261 |
+
"completion_tokens": 10999,
|
| 262 |
+
"finish_reason": "stop",
|
| 263 |
+
"id": "aime2025-05",
|
| 264 |
+
"reasoning_chars": 23646,
|
| 265 |
+
"result": "pass",
|
| 266 |
+
"source": "AIME2025",
|
| 267 |
+
"total_ms": 106965.969167,
|
| 268 |
+
"ttft_ms": 467.2305
|
| 269 |
+
},
|
| 270 |
+
{
|
| 271 |
+
"answer_chars": 499,
|
| 272 |
+
"completion_tokens": 11540,
|
| 273 |
+
"finish_reason": "stop",
|
| 274 |
+
"id": "recrHBEJJoDTV05JR",
|
| 275 |
+
"reasoning_chars": 39834,
|
| 276 |
+
"result": "pass",
|
| 277 |
+
"source": "GPQA Diamond",
|
| 278 |
+
"total_ms": 118407.33570899999,
|
| 279 |
+
"ttft_ms": 563.183792
|
| 280 |
+
},
|
| 281 |
+
{
|
| 282 |
+
"answer_chars": 414,
|
| 283 |
+
"completion_tokens": 622,
|
| 284 |
+
"finish_reason": "stop",
|
| 285 |
+
"id": "31950dc80ded400a9181f50626d1f75c",
|
| 286 |
+
"reasoning_chars": 936,
|
| 287 |
+
"result": "pass",
|
| 288 |
+
"source": "SuperGPQA",
|
| 289 |
+
"total_ms": 6026.053,
|
| 290 |
+
"ttft_ms": 594.520208
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"answer_chars": 778,
|
| 294 |
+
"completion_tokens": 5023,
|
| 295 |
+
"finish_reason": "stop",
|
| 296 |
+
"id": "aime2025-06",
|
| 297 |
+
"reasoning_chars": 13027,
|
| 298 |
+
"result": "pass",
|
| 299 |
+
"source": "AIME2025",
|
| 300 |
+
"total_ms": 51276.943208,
|
| 301 |
+
"ttft_ms": 420.40575
|
| 302 |
+
},
|
| 303 |
+
{
|
| 304 |
+
"answer_chars": 0,
|
| 305 |
+
"completion_tokens": 32768,
|
| 306 |
+
"finish_reason": "length",
|
| 307 |
+
"id": "recb80OwMgNnceA9t",
|
| 308 |
+
"reasoning_chars": 98010,
|
| 309 |
+
"result": "exhausted",
|
| 310 |
+
"source": "GPQA Diamond",
|
| 311 |
+
"total_ms": 332947.995833,
|
| 312 |
+
"ttft_ms": 494.03575
|
| 313 |
+
},
|
| 314 |
+
{
|
| 315 |
+
"answer_chars": 527,
|
| 316 |
+
"completion_tokens": 6204,
|
| 317 |
+
"finish_reason": "stop",
|
| 318 |
+
"id": "0f14cd17be174618af6d60227e7dca9f",
|
| 319 |
+
"reasoning_chars": 17181,
|
| 320 |
+
"result": "pass",
|
| 321 |
+
"source": "SuperGPQA",
|
| 322 |
+
"total_ms": 64284.690958,
|
| 323 |
+
"ttft_ms": 1173.025583
|
| 324 |
+
},
|
| 325 |
+
{
|
| 326 |
+
"answer_chars": 924,
|
| 327 |
+
"completion_tokens": 2962,
|
| 328 |
+
"finish_reason": "stop",
|
| 329 |
+
"id": "aime2025-21",
|
| 330 |
+
"reasoning_chars": 6380,
|
| 331 |
+
"result": "pass",
|
| 332 |
+
"source": "AIME2025",
|
| 333 |
+
"total_ms": 27891.423875,
|
| 334 |
+
"ttft_ms": 847.798666
|
| 335 |
+
},
|
| 336 |
+
{
|
| 337 |
+
"answer_chars": 0,
|
| 338 |
+
"completion_tokens": 32768,
|
| 339 |
+
"finish_reason": "length",
|
| 340 |
+
"id": "recA1i5ZAh0Uzclxp",
|
| 341 |
+
"reasoning_chars": 106783,
|
| 342 |
+
"result": "exhausted",
|
| 343 |
+
"source": "GPQA Diamond",
|
| 344 |
+
"total_ms": 360413.73812500003,
|
| 345 |
+
"ttft_ms": 591.943958
|
| 346 |
+
},
|
| 347 |
+
{
|
| 348 |
+
"answer_chars": 543,
|
| 349 |
+
"completion_tokens": 897,
|
| 350 |
+
"finish_reason": "stop",
|
| 351 |
+
"id": "cef9bcc087434cc2b4e354a9baef55eb",
|
| 352 |
+
"reasoning_chars": 953,
|
| 353 |
+
"result": "pass",
|
| 354 |
+
"source": "SuperGPQA",
|
| 355 |
+
"total_ms": 8896.928209,
|
| 356 |
+
"ttft_ms": 913.552625
|
| 357 |
+
},
|
| 358 |
+
{
|
| 359 |
+
"answer_chars": 1288,
|
| 360 |
+
"completion_tokens": 14365,
|
| 361 |
+
"finish_reason": "stop",
|
| 362 |
+
"id": "aime2025-07",
|
| 363 |
+
"reasoning_chars": 45715,
|
| 364 |
+
"result": "pass",
|
| 365 |
+
"source": "AIME2025",
|
| 366 |
+
"total_ms": 158779.87425,
|
| 367 |
+
"ttft_ms": 521.9512910000001
|
| 368 |
+
},
|
| 369 |
+
{
|
| 370 |
+
"answer_chars": 591,
|
| 371 |
+
"completion_tokens": 8577,
|
| 372 |
+
"finish_reason": "stop",
|
| 373 |
+
"id": "recqGD3fxPCI59vPQ",
|
| 374 |
+
"reasoning_chars": 25730,
|
| 375 |
+
"result": "pass",
|
| 376 |
+
"source": "GPQA Diamond",
|
| 377 |
+
"total_ms": 90109.873542,
|
| 378 |
+
"ttft_ms": 590.850209
|
| 379 |
+
},
|
| 380 |
+
{
|
| 381 |
+
"answer_chars": 9,
|
| 382 |
+
"completion_tokens": 353,
|
| 383 |
+
"finish_reason": "stop",
|
| 384 |
+
"id": "9f93aa2cfdb547b5b3a4623f80f7fff6",
|
| 385 |
+
"reasoning_chars": 1373,
|
| 386 |
+
"result": "pass",
|
| 387 |
+
"source": "SuperGPQA",
|
| 388 |
+
"total_ms": 4329.323459,
|
| 389 |
+
"ttft_ms": 518.8629169999999
|
| 390 |
+
},
|
| 391 |
+
{
|
| 392 |
+
"answer_chars": 1035,
|
| 393 |
+
"completion_tokens": 4138,
|
| 394 |
+
"finish_reason": "stop",
|
| 395 |
+
"id": "aime2025-22",
|
| 396 |
+
"reasoning_chars": 10865,
|
| 397 |
+
"result": "pass",
|
| 398 |
+
"source": "AIME2025",
|
| 399 |
+
"total_ms": 42452.4355,
|
| 400 |
+
"ttft_ms": 510.249291
|
| 401 |
+
},
|
| 402 |
+
{
|
| 403 |
+
"answer_chars": 0,
|
| 404 |
+
"completion_tokens": 32768,
|
| 405 |
+
"finish_reason": "length",
|
| 406 |
+
"id": "rechKl68Uc6H7vU0N",
|
| 407 |
+
"reasoning_chars": 97944,
|
| 408 |
+
"result": "exhausted",
|
| 409 |
+
"source": "GPQA Diamond",
|
| 410 |
+
"total_ms": 347741.884875,
|
| 411 |
+
"ttft_ms": 584.3199169999999
|
| 412 |
+
},
|
| 413 |
+
{
|
| 414 |
+
"answer_chars": 194,
|
| 415 |
+
"completion_tokens": 5546,
|
| 416 |
+
"finish_reason": "stop",
|
| 417 |
+
"id": "97ad69dda7b2462c98638b79e78aea0b",
|
| 418 |
+
"reasoning_chars": 22720,
|
| 419 |
+
"result": "pass",
|
| 420 |
+
"source": "SuperGPQA",
|
| 421 |
+
"total_ms": 56474.938292,
|
| 422 |
+
"ttft_ms": 807.078209
|
| 423 |
+
},
|
| 424 |
+
{
|
| 425 |
+
"answer_chars": 814,
|
| 426 |
+
"completion_tokens": 6724,
|
| 427 |
+
"finish_reason": "stop",
|
| 428 |
+
"id": "aime2025-08",
|
| 429 |
+
"reasoning_chars": 13053,
|
| 430 |
+
"result": "pass",
|
| 431 |
+
"source": "AIME2025",
|
| 432 |
+
"total_ms": 64382.000542,
|
| 433 |
+
"ttft_ms": 500.859834
|
| 434 |
+
},
|
| 435 |
+
{
|
| 436 |
+
"answer_chars": 608,
|
| 437 |
+
"completion_tokens": 5824,
|
| 438 |
+
"finish_reason": "stop",
|
| 439 |
+
"id": "rec1zl5LvaatzGhFt",
|
| 440 |
+
"reasoning_chars": 16426,
|
| 441 |
+
"result": "pass",
|
| 442 |
+
"source": "GPQA Diamond",
|
| 443 |
+
"total_ms": 58807.323083,
|
| 444 |
+
"ttft_ms": 620.387167
|
| 445 |
+
},
|
| 446 |
+
{
|
| 447 |
+
"answer_chars": 220,
|
| 448 |
+
"completion_tokens": 1525,
|
| 449 |
+
"finish_reason": "stop",
|
| 450 |
+
"id": "e78e4e539d6f4e379ac140d923d7b1be",
|
| 451 |
+
"reasoning_chars": 7362,
|
| 452 |
+
"result": "pass",
|
| 453 |
+
"source": "SuperGPQA",
|
| 454 |
+
"total_ms": 16532.44875,
|
| 455 |
+
"ttft_ms": 494.293875
|
| 456 |
+
},
|
| 457 |
+
{
|
| 458 |
+
"answer_chars": 0,
|
| 459 |
+
"completion_tokens": 32768,
|
| 460 |
+
"finish_reason": "length",
|
| 461 |
+
"id": "aime2025-09",
|
| 462 |
+
"reasoning_chars": 65782,
|
| 463 |
+
"result": "exhausted",
|
| 464 |
+
"source": "AIME2025",
|
| 465 |
+
"total_ms": 337796.657791,
|
| 466 |
+
"ttft_ms": 489.595625
|
| 467 |
+
},
|
| 468 |
+
{
|
| 469 |
+
"answer_chars": 0,
|
| 470 |
+
"completion_tokens": 32768,
|
| 471 |
+
"finish_reason": "length",
|
| 472 |
+
"id": "recTs7qzfJs6kfLUK",
|
| 473 |
+
"reasoning_chars": 76995,
|
| 474 |
+
"result": "exhausted",
|
| 475 |
+
"source": "GPQA Diamond",
|
| 476 |
+
"total_ms": 301419.221292,
|
| 477 |
+
"ttft_ms": 1766.599833
|
| 478 |
+
},
|
| 479 |
+
{
|
| 480 |
+
"answer_chars": 203,
|
| 481 |
+
"completion_tokens": 30124,
|
| 482 |
+
"finish_reason": "stop",
|
| 483 |
+
"id": "8483667a25e74fdfa3188de4ea734f03",
|
| 484 |
+
"reasoning_chars": 109574,
|
| 485 |
+
"result": "fail",
|
| 486 |
+
"source": "SuperGPQA",
|
| 487 |
+
"total_ms": 315457.419125,
|
| 488 |
+
"ttft_ms": 761.423709
|
| 489 |
+
},
|
| 490 |
+
{
|
| 491 |
+
"answer_chars": 1218,
|
| 492 |
+
"completion_tokens": 11456,
|
| 493 |
+
"finish_reason": "stop",
|
| 494 |
+
"id": "aime2025-24",
|
| 495 |
+
"reasoning_chars": 27527,
|
| 496 |
+
"result": "pass",
|
| 497 |
+
"source": "AIME2025",
|
| 498 |
+
"total_ms": 118657.899375,
|
| 499 |
+
"ttft_ms": 827.893416
|
| 500 |
+
},
|
| 501 |
+
{
|
| 502 |
+
"answer_chars": 690,
|
| 503 |
+
"completion_tokens": 5784,
|
| 504 |
+
"finish_reason": "stop",
|
| 505 |
+
"id": "rec32C1ZEapBnCC0E",
|
| 506 |
+
"reasoning_chars": 14949,
|
| 507 |
+
"result": "pass",
|
| 508 |
+
"source": "GPQA Diamond",
|
| 509 |
+
"total_ms": 60097.438375000005,
|
| 510 |
+
"ttft_ms": 643.3076669999999
|
| 511 |
+
},
|
| 512 |
+
{
|
| 513 |
+
"answer_chars": 9,
|
| 514 |
+
"completion_tokens": 912,
|
| 515 |
+
"finish_reason": "stop",
|
| 516 |
+
"id": "e5ed76ef98144f06843125daf1bccd35",
|
| 517 |
+
"reasoning_chars": 2051,
|
| 518 |
+
"result": "pass",
|
| 519 |
+
"source": "SuperGPQA",
|
| 520 |
+
"total_ms": 9200.858542,
|
| 521 |
+
"ttft_ms": 518.77325
|
| 522 |
+
},
|
| 523 |
+
{
|
| 524 |
+
"answer_chars": 2204,
|
| 525 |
+
"completion_tokens": 24923,
|
| 526 |
+
"finish_reason": "stop",
|
| 527 |
+
"id": "aime2025-10",
|
| 528 |
+
"reasoning_chars": 67823,
|
| 529 |
+
"result": "pass",
|
| 530 |
+
"source": "AIME2025",
|
| 531 |
+
"total_ms": 259420.713375,
|
| 532 |
+
"ttft_ms": 582.958959
|
| 533 |
+
},
|
| 534 |
+
{
|
| 535 |
+
"answer_chars": 0,
|
| 536 |
+
"completion_tokens": 32768,
|
| 537 |
+
"finish_reason": "length",
|
| 538 |
+
"id": "recZWeueB7lSPR6wN",
|
| 539 |
+
"reasoning_chars": 104167,
|
| 540 |
+
"result": "exhausted",
|
| 541 |
+
"source": "GPQA Diamond",
|
| 542 |
+
"total_ms": 292873.60020800005,
|
| 543 |
+
"ttft_ms": 825.8457080000001
|
| 544 |
+
},
|
| 545 |
+
{
|
| 546 |
+
"answer_chars": 102,
|
| 547 |
+
"completion_tokens": 2906,
|
| 548 |
+
"finish_reason": "stop",
|
| 549 |
+
"id": "fd7924876c4845cd83d95d61dfa0b236",
|
| 550 |
+
"reasoning_chars": 14000,
|
| 551 |
+
"result": "fail",
|
| 552 |
+
"source": "SuperGPQA",
|
| 553 |
+
"total_ms": 30662.914792,
|
| 554 |
+
"ttft_ms": 761.2434999999999
|
| 555 |
+
},
|
| 556 |
+
{
|
| 557 |
+
"answer_chars": 0,
|
| 558 |
+
"completion_tokens": 32768,
|
| 559 |
+
"finish_reason": "length",
|
| 560 |
+
"id": "aime2025-25",
|
| 561 |
+
"reasoning_chars": 98598,
|
| 562 |
+
"result": "exhausted",
|
| 563 |
+
"source": "AIME2025",
|
| 564 |
+
"total_ms": 297958.59479199996,
|
| 565 |
+
"ttft_ms": 447.44125
|
| 566 |
+
},
|
| 567 |
+
{
|
| 568 |
+
"answer_chars": 0,
|
| 569 |
+
"completion_tokens": 32768,
|
| 570 |
+
"finish_reason": "length",
|
| 571 |
+
"id": "recVvpD8miVjmmyfe",
|
| 572 |
+
"reasoning_chars": 75136,
|
| 573 |
+
"result": "exhausted",
|
| 574 |
+
"source": "GPQA Diamond",
|
| 575 |
+
"total_ms": 309495.360875,
|
| 576 |
+
"ttft_ms": 755.84425
|
| 577 |
+
},
|
| 578 |
+
{
|
| 579 |
+
"answer_chars": 0,
|
| 580 |
+
"completion_tokens": 32768,
|
| 581 |
+
"finish_reason": "length",
|
| 582 |
+
"id": "6bfe7d19299d4b3184636e1f51694306",
|
| 583 |
+
"reasoning_chars": 101240,
|
| 584 |
+
"result": "exhausted",
|
| 585 |
+
"source": "SuperGPQA",
|
| 586 |
+
"total_ms": 311542.38412500004,
|
| 587 |
+
"ttft_ms": 875.9735
|
| 588 |
+
},
|
| 589 |
+
{
|
| 590 |
+
"answer_chars": 0,
|
| 591 |
+
"completion_tokens": 32768,
|
| 592 |
+
"finish_reason": "length",
|
| 593 |
+
"id": "aime2025-26",
|
| 594 |
+
"reasoning_chars": 118446,
|
| 595 |
+
"result": "exhausted",
|
| 596 |
+
"source": "AIME2025",
|
| 597 |
+
"total_ms": 305537.42925,
|
| 598 |
+
"ttft_ms": 942.4300420000001
|
| 599 |
+
},
|
| 600 |
+
{
|
| 601 |
+
"answer_chars": 0,
|
| 602 |
+
"completion_tokens": 20513,
|
| 603 |
+
"finish_reason": "stop",
|
| 604 |
+
"id": "recAAJoHMW45Lv5je",
|
| 605 |
+
"reasoning_chars": 77881,
|
| 606 |
+
"result": "fail",
|
| 607 |
+
"source": "GPQA Diamond",
|
| 608 |
+
"total_ms": 164054.83125000002,
|
| 609 |
+
"ttft_ms": 815.912084
|
| 610 |
+
},
|
| 611 |
+
{
|
| 612 |
+
"answer_chars": 408,
|
| 613 |
+
"completion_tokens": 1429,
|
| 614 |
+
"finish_reason": "stop",
|
| 615 |
+
"id": "e1825d70c5844c22933087eafa89e39c",
|
| 616 |
+
"reasoning_chars": 2259,
|
| 617 |
+
"result": "pass",
|
| 618 |
+
"source": "SuperGPQA",
|
| 619 |
+
"total_ms": 13141.369209,
|
| 620 |
+
"ttft_ms": 862.3114589999999
|
| 621 |
+
},
|
| 622 |
+
{
|
| 623 |
+
"answer_chars": 1278,
|
| 624 |
+
"completion_tokens": 30274,
|
| 625 |
+
"finish_reason": "stop",
|
| 626 |
+
"id": "aime2025-12",
|
| 627 |
+
"reasoning_chars": 71388,
|
| 628 |
+
"result": "pass",
|
| 629 |
+
"source": "AIME2025",
|
| 630 |
+
"total_ms": 312026.676958,
|
| 631 |
+
"ttft_ms": 443.024542
|
| 632 |
+
},
|
| 633 |
+
{
|
| 634 |
+
"answer_chars": 0,
|
| 635 |
+
"completion_tokens": 32768,
|
| 636 |
+
"finish_reason": "length",
|
| 637 |
+
"id": "reckEnrOPFT9Ru7tW",
|
| 638 |
+
"reasoning_chars": 105991,
|
| 639 |
+
"result": "exhausted",
|
| 640 |
+
"source": "GPQA Diamond",
|
| 641 |
+
"total_ms": 333209.492708,
|
| 642 |
+
"ttft_ms": 795.115208
|
| 643 |
+
},
|
| 644 |
+
{
|
| 645 |
+
"answer_chars": 1092,
|
| 646 |
+
"completion_tokens": 17871,
|
| 647 |
+
"finish_reason": "stop",
|
| 648 |
+
"id": "ab430ac3f18e4e02a2cb3f35498c6b30",
|
| 649 |
+
"reasoning_chars": 46633,
|
| 650 |
+
"result": "pass",
|
| 651 |
+
"source": "SuperGPQA",
|
| 652 |
+
"total_ms": 183831.28833399998,
|
| 653 |
+
"ttft_ms": 845.5382500000001
|
| 654 |
+
},
|
| 655 |
+
{
|
| 656 |
+
"answer_chars": 1244,
|
| 657 |
+
"completion_tokens": 16707,
|
| 658 |
+
"finish_reason": "stop",
|
| 659 |
+
"id": "aime2025-27",
|
| 660 |
+
"reasoning_chars": 39131,
|
| 661 |
+
"result": "pass",
|
| 662 |
+
"source": "AIME2025",
|
| 663 |
+
"total_ms": 165268.677917,
|
| 664 |
+
"ttft_ms": 699.087375
|
| 665 |
+
},
|
| 666 |
+
{
|
| 667 |
+
"answer_chars": 0,
|
| 668 |
+
"completion_tokens": 32768,
|
| 669 |
+
"finish_reason": "length",
|
| 670 |
+
"id": "rec8nshandHARTkrg",
|
| 671 |
+
"reasoning_chars": 99198,
|
| 672 |
+
"result": "exhausted",
|
| 673 |
+
"source": "GPQA Diamond",
|
| 674 |
+
"total_ms": 333792.648709,
|
| 675 |
+
"ttft_ms": 892.167917
|
| 676 |
+
},
|
| 677 |
+
{
|
| 678 |
+
"answer_chars": 548,
|
| 679 |
+
"completion_tokens": 2830,
|
| 680 |
+
"finish_reason": "stop",
|
| 681 |
+
"id": "e8c5da5ca40647158b0c91dd695c6243",
|
| 682 |
+
"reasoning_chars": 6529,
|
| 683 |
+
"result": "pass",
|
| 684 |
+
"source": "SuperGPQA",
|
| 685 |
+
"total_ms": 27616.275458,
|
| 686 |
+
"ttft_ms": 1104.628416
|
| 687 |
+
},
|
| 688 |
+
{
|
| 689 |
+
"answer_chars": 0,
|
| 690 |
+
"completion_tokens": 32768,
|
| 691 |
+
"finish_reason": "length",
|
| 692 |
+
"id": "aime2025-13",
|
| 693 |
+
"reasoning_chars": 84876,
|
| 694 |
+
"result": "exhausted",
|
| 695 |
+
"source": "AIME2025",
|
| 696 |
+
"total_ms": 289234.278959,
|
| 697 |
+
"ttft_ms": 474.554375
|
| 698 |
+
},
|
| 699 |
+
{
|
| 700 |
+
"answer_chars": 0,
|
| 701 |
+
"completion_tokens": 32768,
|
| 702 |
+
"finish_reason": "length",
|
| 703 |
+
"id": "recFaL6j8UMhutXrc",
|
| 704 |
+
"reasoning_chars": 99094,
|
| 705 |
+
"result": "exhausted",
|
| 706 |
+
"source": "GPQA Diamond",
|
| 707 |
+
"total_ms": 337121.159958,
|
| 708 |
+
"ttft_ms": 868.13275
|
| 709 |
+
},
|
| 710 |
+
{
|
| 711 |
+
"answer_chars": 704,
|
| 712 |
+
"completion_tokens": 2472,
|
| 713 |
+
"finish_reason": "stop",
|
| 714 |
+
"id": "05efdc6fb2404ddc8dd5729bb68c74e5",
|
| 715 |
+
"reasoning_chars": 4361,
|
| 716 |
+
"result": "pass",
|
| 717 |
+
"source": "SuperGPQA",
|
| 718 |
+
"total_ms": 23082.823999999997,
|
| 719 |
+
"ttft_ms": 772.785792
|
| 720 |
+
},
|
| 721 |
+
{
|
| 722 |
+
"answer_chars": 0,
|
| 723 |
+
"completion_tokens": 32768,
|
| 724 |
+
"finish_reason": "length",
|
| 725 |
+
"id": "aime2025-28",
|
| 726 |
+
"reasoning_chars": 42341,
|
| 727 |
+
"result": "exhausted",
|
| 728 |
+
"source": "AIME2025",
|
| 729 |
+
"total_ms": 270782.23350000003,
|
| 730 |
+
"ttft_ms": 510.42125000000004
|
| 731 |
+
},
|
| 732 |
+
{
|
| 733 |
+
"answer_chars": 326,
|
| 734 |
+
"completion_tokens": 9179,
|
| 735 |
+
"finish_reason": "stop",
|
| 736 |
+
"id": "reczQ4I0VpENdMtIj",
|
| 737 |
+
"reasoning_chars": 44165,
|
| 738 |
+
"result": "pass",
|
| 739 |
+
"source": "GPQA Diamond",
|
| 740 |
+
"total_ms": 93602.65783299999,
|
| 741 |
+
"ttft_ms": 759.521708
|
| 742 |
+
},
|
| 743 |
+
{
|
| 744 |
+
"answer_chars": 0,
|
| 745 |
+
"completion_tokens": 32768,
|
| 746 |
+
"finish_reason": "length",
|
| 747 |
+
"id": "ba52e06cbe1a4310a77a7d12cd1db943",
|
| 748 |
+
"reasoning_chars": 86169,
|
| 749 |
+
"result": "exhausted",
|
| 750 |
+
"source": "SuperGPQA",
|
| 751 |
+
"total_ms": 321926.425583,
|
| 752 |
+
"ttft_ms": 918.427541
|
| 753 |
+
},
|
| 754 |
+
{
|
| 755 |
+
"answer_chars": 0,
|
| 756 |
+
"completion_tokens": 32768,
|
| 757 |
+
"finish_reason": "length",
|
| 758 |
+
"id": "aime2025-29",
|
| 759 |
+
"reasoning_chars": 67348,
|
| 760 |
+
"result": "exhausted",
|
| 761 |
+
"source": "AIME2025",
|
| 762 |
+
"total_ms": 343280.43595899997,
|
| 763 |
+
"ttft_ms": 861.88575
|
| 764 |
+
},
|
| 765 |
+
{
|
| 766 |
+
"answer_chars": 0,
|
| 767 |
+
"completion_tokens": 32768,
|
| 768 |
+
"finish_reason": "length",
|
| 769 |
+
"id": "recWxGU8Q4YReJ1tb",
|
| 770 |
+
"reasoning_chars": 95893,
|
| 771 |
+
"result": "exhausted",
|
| 772 |
+
"source": "GPQA Diamond",
|
| 773 |
+
"total_ms": 341060.402542,
|
| 774 |
+
"ttft_ms": 1106.733875
|
| 775 |
+
},
|
| 776 |
+
{
|
| 777 |
+
"answer_chars": 480,
|
| 778 |
+
"completion_tokens": 1467,
|
| 779 |
+
"finish_reason": "stop",
|
| 780 |
+
"id": "591a77df21324272914be82ac6583399",
|
| 781 |
+
"reasoning_chars": 2786,
|
| 782 |
+
"result": "fail",
|
| 783 |
+
"source": "SuperGPQA",
|
| 784 |
+
"total_ms": 14707.001333,
|
| 785 |
+
"ttft_ms": 828.2319580000001
|
| 786 |
+
},
|
| 787 |
+
{
|
| 788 |
+
"answer_chars": 0,
|
| 789 |
+
"completion_tokens": 32768,
|
| 790 |
+
"finish_reason": "length",
|
| 791 |
+
"id": "aime2025-15",
|
| 792 |
+
"reasoning_chars": 82170,
|
| 793 |
+
"result": "exhausted",
|
| 794 |
+
"source": "AIME2025",
|
| 795 |
+
"total_ms": 362740.44533300004,
|
| 796 |
+
"ttft_ms": 426.33425
|
| 797 |
+
},
|
| 798 |
+
{
|
| 799 |
+
"answer_chars": 508,
|
| 800 |
+
"completion_tokens": 19524,
|
| 801 |
+
"finish_reason": "stop",
|
| 802 |
+
"id": "recMicVBcqy1xM1jq",
|
| 803 |
+
"reasoning_chars": 65037,
|
| 804 |
+
"result": "fail",
|
| 805 |
+
"source": "GPQA Diamond",
|
| 806 |
+
"total_ms": 202671.583833,
|
| 807 |
+
"ttft_ms": 846.4155
|
| 808 |
+
},
|
| 809 |
+
{
|
| 810 |
+
"answer_chars": 236,
|
| 811 |
+
"completion_tokens": 1091,
|
| 812 |
+
"finish_reason": "stop",
|
| 813 |
+
"id": "e780f37a5baa4fe094cd9c157486664d",
|
| 814 |
+
"reasoning_chars": 4675,
|
| 815 |
+
"result": "fail",
|
| 816 |
+
"source": "SuperGPQA",
|
| 817 |
+
"total_ms": 12668.975250000001,
|
| 818 |
+
"ttft_ms": 645.7173750000001
|
| 819 |
+
},
|
| 820 |
+
{
|
| 821 |
+
"answer_chars": 0,
|
| 822 |
+
"completion_tokens": 32768,
|
| 823 |
+
"finish_reason": "length",
|
| 824 |
+
"id": "aime2025-30",
|
| 825 |
+
"reasoning_chars": 66429,
|
| 826 |
+
"result": "exhausted",
|
| 827 |
+
"source": "AIME2025",
|
| 828 |
+
"total_ms": 333789.22612500004,
|
| 829 |
+
"ttft_ms": 471.712541
|
| 830 |
+
},
|
| 831 |
+
{
|
| 832 |
+
"answer_chars": 10,
|
| 833 |
+
"completion_tokens": 8424,
|
| 834 |
+
"finish_reason": "stop",
|
| 835 |
+
"id": "compsec-076",
|
| 836 |
+
"reasoning_chars": 32031,
|
| 837 |
+
"result": "pass",
|
| 838 |
+
"source": "COMPSEC",
|
| 839 |
+
"total_ms": 93214.069292,
|
| 840 |
+
"ttft_ms": 948.313584
|
| 841 |
+
},
|
| 842 |
+
{
|
| 843 |
+
"answer_chars": 10,
|
| 844 |
+
"completion_tokens": 16570,
|
| 845 |
+
"finish_reason": "stop",
|
| 846 |
+
"id": "compsec-077",
|
| 847 |
+
"reasoning_chars": 60787,
|
| 848 |
+
"result": "pass",
|
| 849 |
+
"source": "COMPSEC",
|
| 850 |
+
"total_ms": 178285.559792,
|
| 851 |
+
"ttft_ms": 656.340667
|
| 852 |
+
},
|
| 853 |
+
{
|
| 854 |
+
"answer_chars": 10,
|
| 855 |
+
"completion_tokens": 751,
|
| 856 |
+
"finish_reason": "stop",
|
| 857 |
+
"id": "compsec-078",
|
| 858 |
+
"reasoning_chars": 2680,
|
| 859 |
+
"result": "pass",
|
| 860 |
+
"source": "COMPSEC",
|
| 861 |
+
"total_ms": 8499.385917,
|
| 862 |
+
"ttft_ms": 772.1086670000001
|
| 863 |
+
},
|
| 864 |
+
{
|
| 865 |
+
"answer_chars": 13,
|
| 866 |
+
"completion_tokens": 7326,
|
| 867 |
+
"finish_reason": "stop",
|
| 868 |
+
"id": "compsec-079",
|
| 869 |
+
"reasoning_chars": 30412,
|
| 870 |
+
"result": "pass",
|
| 871 |
+
"source": "COMPSEC",
|
| 872 |
+
"total_ms": 79250.792709,
|
| 873 |
+
"ttft_ms": 624.2195419999999
|
| 874 |
+
},
|
| 875 |
+
{
|
| 876 |
+
"answer_chars": 11,
|
| 877 |
+
"completion_tokens": 3509,
|
| 878 |
+
"finish_reason": "stop",
|
| 879 |
+
"id": "compsec-080",
|
| 880 |
+
"reasoning_chars": 15506,
|
| 881 |
+
"result": "pass",
|
| 882 |
+
"source": "COMPSEC",
|
| 883 |
+
"total_ms": 39996.01675,
|
| 884 |
+
"ttft_ms": 545.5102499999999
|
| 885 |
+
},
|
| 886 |
+
{
|
| 887 |
+
"answer_chars": 10,
|
| 888 |
+
"completion_tokens": 4887,
|
| 889 |
+
"finish_reason": "stop",
|
| 890 |
+
"id": "compsec-081",
|
| 891 |
+
"reasoning_chars": 19363,
|
| 892 |
+
"result": "pass",
|
| 893 |
+
"source": "COMPSEC",
|
| 894 |
+
"total_ms": 53585.437834,
|
| 895 |
+
"ttft_ms": 655.252834
|
| 896 |
+
},
|
| 897 |
+
{
|
| 898 |
+
"answer_chars": 10,
|
| 899 |
+
"completion_tokens": 3773,
|
| 900 |
+
"finish_reason": "stop",
|
| 901 |
+
"id": "compsec-082",
|
| 902 |
+
"reasoning_chars": 15663,
|
| 903 |
+
"result": "pass",
|
| 904 |
+
"source": "COMPSEC",
|
| 905 |
+
"total_ms": 42494.792457999996,
|
| 906 |
+
"ttft_ms": 580.1704159999999
|
| 907 |
+
},
|
| 908 |
+
{
|
| 909 |
+
"answer_chars": 9,
|
| 910 |
+
"completion_tokens": 11041,
|
| 911 |
+
"finish_reason": "stop",
|
| 912 |
+
"id": "compsec-083",
|
| 913 |
+
"reasoning_chars": 43080,
|
| 914 |
+
"result": "pass",
|
| 915 |
+
"source": "COMPSEC",
|
| 916 |
+
"total_ms": 121134.461875,
|
| 917 |
+
"ttft_ms": 585.663542
|
| 918 |
+
},
|
| 919 |
+
{
|
| 920 |
+
"answer_chars": 9,
|
| 921 |
+
"completion_tokens": 3287,
|
| 922 |
+
"finish_reason": "stop",
|
| 923 |
+
"id": "compsec-084",
|
| 924 |
+
"reasoning_chars": 11754,
|
| 925 |
+
"result": "pass",
|
| 926 |
+
"source": "COMPSEC",
|
| 927 |
+
"total_ms": 36503.871708,
|
| 928 |
+
"ttft_ms": 648.515083
|
| 929 |
+
},
|
| 930 |
+
{
|
| 931 |
+
"answer_chars": 9,
|
| 932 |
+
"completion_tokens": 2373,
|
| 933 |
+
"finish_reason": "stop",
|
| 934 |
+
"id": "compsec-085",
|
| 935 |
+
"reasoning_chars": 9270,
|
| 936 |
+
"result": "pass",
|
| 937 |
+
"source": "COMPSEC",
|
| 938 |
+
"total_ms": 25341.3945,
|
| 939 |
+
"ttft_ms": 593.2052920000001
|
| 940 |
+
},
|
| 941 |
+
{
|
| 942 |
+
"answer_chars": 9,
|
| 943 |
+
"completion_tokens": 2830,
|
| 944 |
+
"finish_reason": "stop",
|
| 945 |
+
"id": "compsec-086",
|
| 946 |
+
"reasoning_chars": 11126,
|
| 947 |
+
"result": "pass",
|
| 948 |
+
"source": "COMPSEC",
|
| 949 |
+
"total_ms": 30856.708749999998,
|
| 950 |
+
"ttft_ms": 608.968
|
| 951 |
+
},
|
| 952 |
+
{
|
| 953 |
+
"answer_chars": 9,
|
| 954 |
+
"completion_tokens": 7550,
|
| 955 |
+
"finish_reason": "stop",
|
| 956 |
+
"id": "compsec-087",
|
| 957 |
+
"reasoning_chars": 26016,
|
| 958 |
+
"result": "pass",
|
| 959 |
+
"source": "COMPSEC",
|
| 960 |
+
"total_ms": 79131.196083,
|
| 961 |
+
"ttft_ms": 617.592083
|
| 962 |
+
},
|
| 963 |
+
{
|
| 964 |
+
"answer_chars": 10,
|
| 965 |
+
"completion_tokens": 2441,
|
| 966 |
+
"finish_reason": "stop",
|
| 967 |
+
"id": "compsec-088",
|
| 968 |
+
"reasoning_chars": 9399,
|
| 969 |
+
"result": "pass",
|
| 970 |
+
"source": "COMPSEC",
|
| 971 |
+
"total_ms": 27086.324167000002,
|
| 972 |
+
"ttft_ms": 629.295167
|
| 973 |
+
},
|
| 974 |
+
{
|
| 975 |
+
"answer_chars": 10,
|
| 976 |
+
"completion_tokens": 725,
|
| 977 |
+
"finish_reason": "stop",
|
| 978 |
+
"id": "compsec-089",
|
| 979 |
+
"reasoning_chars": 2803,
|
| 980 |
+
"result": "pass",
|
| 981 |
+
"source": "COMPSEC",
|
| 982 |
+
"total_ms": 9048.985375,
|
| 983 |
+
"ttft_ms": 501.207459
|
| 984 |
+
},
|
| 985 |
+
{
|
| 986 |
+
"answer_chars": 10,
|
| 987 |
+
"completion_tokens": 2806,
|
| 988 |
+
"finish_reason": "stop",
|
| 989 |
+
"id": "compsec-090",
|
| 990 |
+
"reasoning_chars": 9961,
|
| 991 |
+
"result": "pass",
|
| 992 |
+
"source": "COMPSEC",
|
| 993 |
+
"total_ms": 30156.173084,
|
| 994 |
+
"ttft_ms": 616.585875
|
| 995 |
+
},
|
| 996 |
+
{
|
| 997 |
+
"answer_chars": 9,
|
| 998 |
+
"completion_tokens": 440,
|
| 999 |
+
"finish_reason": "stop",
|
| 1000 |
+
"id": "compsec-091",
|
| 1001 |
+
"reasoning_chars": 1816,
|
| 1002 |
+
"result": "pass",
|
| 1003 |
+
"source": "COMPSEC",
|
| 1004 |
+
"total_ms": 5379.381375,
|
| 1005 |
+
"ttft_ms": 488.554167
|
| 1006 |
+
},
|
| 1007 |
+
{
|
| 1008 |
+
"answer_chars": 10,
|
| 1009 |
+
"completion_tokens": 1077,
|
| 1010 |
+
"finish_reason": "stop",
|
| 1011 |
+
"id": "compsec-092",
|
| 1012 |
+
"reasoning_chars": 4451,
|
| 1013 |
+
"result": "pass",
|
| 1014 |
+
"source": "COMPSEC",
|
| 1015 |
+
"total_ms": 11252.273875,
|
| 1016 |
+
"ttft_ms": 517.316959
|
| 1017 |
+
}
|
| 1018 |
+
],
|
| 1019 |
+
"config": {
|
| 1020 |
+
"max_tokens": 32768,
|
| 1021 |
+
"seed": 42,
|
| 1022 |
+
"temperature": 0.0
|
| 1023 |
+
},
|
| 1024 |
+
"exhausted": 21,
|
| 1025 |
+
"failed_answered": 9,
|
| 1026 |
+
"model": "fit-17g",
|
| 1027 |
+
"passed": 62
|
| 1028 |
+
}
|
bench/fit-192k/config-public.txt
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
run: fit-192k
|
| 2 |
+
recorded: 2026-08-16T01:23:22+02:00 RETROACTIVELY — see caveat below
|
| 3 |
+
source: bin/bench-fits.sh (file last changed in ab44c65, i.e. unchanged
|
| 4 |
+
across all three fit legs) — the command below is
|
| 5 |
+
reconstructed from that script, which is version controlled and was
|
| 6 |
+
unchanged across all three fit legs. This is the authoritative record.
|
| 7 |
+
The serve log does NOT contain the config — verified 2026-08-16:
|
| 8 |
+
no type_k/type_v, no flash-attn, no build version at this verbosity.
|
| 9 |
+
serve_cmd: ~/llama.cpp/build-mtp/bin/llama-server -m ~/models/qwen38-27b-fit-192k-q4kv.gguf -md ~/models/Qwen3.8-27B-MTP-ONLY-Q8_0.gguf --spec-draft-n-max 3 -c 196608 -ctk q4_0 -ctv q4_0 -fa on -ngl 99 -ngld 99 --port 8083 --host 0.0.0.0
|
| 10 |
+
client: bs4 qa-eval --base-url http://<redacted>:8083/v1 --model fit-192k
|
| 11 |
+
sampler: temperature 0.0, seed 42, max_tokens 32768 (bs4, sent in request body)
|
| 12 |
+
--- desktop side (captured 2026-08-16, not at run time) ---
|
| 13 |
+
llama.cpp: 22b8e31
|
| 14 |
+
model: 18825459584 bytes ~/models/qwen38-27b-fit-192k-q4kv.gguf
|
| 15 |
+
gpu: NVIDIA RTX PRO 6000 Blackwell Workstation Edition, 250.00 W
|
| 16 |
+
driver_ver: 610.57.04
|
| 17 |
+
--- caveat ---
|
| 18 |
+
Written after the fact. Trustworthy because the driver script is in git and
|
| 19 |
+
unchanged since the runs; NOT equivalent to a config captured before the run.
|
| 20 |
+
|
| 21 |
+
--- publication note ---
|
| 22 |
+
Scrubbed for publication by sanitize-config.py: hostnames, internal
|
| 23 |
+
repo paths and home paths removed, GPU index omitted (immaterial —
|
| 24 |
+
one card, one power cap), chat template omitted for size. Everything
|
| 25 |
+
that affects the measurement is kept verbatim.
|
bench/fit-192k/qa-eval-1786830067.csv
ADDED
|
@@ -0,0 +1,93 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
id,source,domain,result,reasoning_chars,answer_chars,completion_tokens,finish_reason,ttft_ms,total_ms
|
| 2 |
+
recNu3MXkvWUzHZr9,GPQA Diamond,Physics,pass,4936,451,2443,stop,399.6,31295.6
|
| 3 |
+
001b51d76b4d422988f2c11f104a2c6c,SuperGPQA,Agronomy,pass,2414,9,599,stop,454.5,8359.6
|
| 4 |
+
aime2025-01,AIME2025,Number Theory,pass,1502,408,801,stop,444.6,10339.3
|
| 5 |
+
recoiTJPGUmzAkief,GPQA Diamond,Physics,pass,7822,645,1927,stop,569.8,31185.6
|
| 6 |
+
b7e20eac98764fb0bf30e8366d951daa,SuperGPQA,Engineering,pass,10843,538,2788,stop,538.1,37812.2
|
| 7 |
+
aime2025-16,AIME2025,Geometry,pass,2108,631,1252,stop,488.4,15553.1
|
| 8 |
+
rec4UqStf9WUVif1f,GPQA Diamond,Physics,pass,1783,474,1108,stop,525.8,13719.5
|
| 9 |
+
4a1d1780a93f4093b6fb7d3c314cbea8,SuperGPQA,Engineering,fail,22951,9,4961,stop,469.1,76262.1
|
| 10 |
+
aime2025-02,AIME2025,Geometry,pass,65592,1219,26079,stop,818.3,360042.0
|
| 11 |
+
recgI6tUQ7RLJRWGx,GPQA Diamond,Physics,pass,5748,565,2278,stop,836.2,31435.5
|
| 12 |
+
6082513c8dba4ec68aa68f1bf5854d09,SuperGPQA,Law,pass,9458,173,1967,stop,476.1,28106.5
|
| 13 |
+
aime2025-03,AIME2025,Combinatorics,pass,1664,650,986,stop,514.6,12581.4
|
| 14 |
+
recDytVnNYZe2HuUU,GPQA Diamond (modified),Physics,pass,10058,457,4591,stop,508.9,62373.0
|
| 15 |
+
bebf1ed45ae14ad7b4f205f3909cb58a,SuperGPQA,Literature and Arts,pass,1436,9,384,stop,543.2,5540.1
|
| 16 |
+
aime2025-18,AIME2025,Combinatorics,pass,16017,1115,5757,stop,740.7,80568.6
|
| 17 |
+
recNFJjE5PPTqVJGv,GPQA Diamond,Chemistry,pass,1384,778,1018,stop,556.2,12578.8
|
| 18 |
+
7ca71b86327744b78e93185a45bc5cef,SuperGPQA,Medicine,pass,3503,9,847,stop,494.4,12817.4
|
| 19 |
+
aime2025-04,AIME2025,Algebra,pass,2798,433,1443,stop,472.5,18052.3
|
| 20 |
+
rec2UlKqC6RFHdcro,GPQA Diamond,Physics,pass,2265,767,1100,stop,622.9,14286.1
|
| 21 |
+
d44b94f7749345a39a65f6312bda8764,SuperGPQA,Engineering,pass,1793,298,593,stop,497.2,8716.5
|
| 22 |
+
aime2025-19,AIME2025,Algebra,pass,4450,1155,2778,stop,524.3,33512.1
|
| 23 |
+
recv7GsQg3f0fvB1f,GPQA Diamond,Chemistry,pass,40782,429,9787,stop,522.3,144361.4
|
| 24 |
+
febe406f44d74a40b50bb5b7c69d5dc1,SuperGPQA,Sociology,pass,8705,9,1973,stop,624.0,26198.6
|
| 25 |
+
aime2025-05,AIME2025,"Combinatorics, Number Theory",pass,7137,1032,2932,stop,505.3,39824.1
|
| 26 |
+
recrHBEJJoDTV05JR,GPQA Diamond,Chemistry,pass,83031,595,26640,stop,519.5,370456.4
|
| 27 |
+
31950dc80ded400a9181f50626d1f75c,SuperGPQA,Science,pass,699,475,573,stop,762.6,7321.9
|
| 28 |
+
aime2025-06,AIME2025,Geometry,pass,3346,825,1577,stop,504.5,20951.7
|
| 29 |
+
recb80OwMgNnceA9t,GPQA Diamond,Chemistry,pass,76394,518,27666,stop,514.8,404564.0
|
| 30 |
+
0f14cd17be174618af6d60227e7dca9f,SuperGPQA,Engineering,pass,17039,777,6424,stop,1186.3,91093.0
|
| 31 |
+
aime2025-21,AIME2025,"Algebra, Geometry",pass,7398,976,2912,stop,977.6,38763.8
|
| 32 |
+
recA1i5ZAh0Uzclxp,GPQA Diamond,Chemistry,pass,51145,878,16280,stop,579.2,237960.6
|
| 33 |
+
cef9bcc087434cc2b4e354a9baef55eb,SuperGPQA,Engineering,pass,1002,596,839,stop,843.4,10470.6
|
| 34 |
+
aime2025-07,AIME2025,Combinatorics,pass,19796,1860,7081,stop,528.9,102988.0
|
| 35 |
+
recqGD3fxPCI59vPQ,GPQA Diamond,Physics,pass,14964,714,4582,stop,624.0,67799.6
|
| 36 |
+
9f93aa2cfdb547b5b3a4623f80f7fff6,SuperGPQA,Engineering,pass,1315,9,326,stop,626.8,4879.5
|
| 37 |
+
aime2025-22,AIME2025,Number Theory,pass,5525,812,2260,stop,465.0,30156.7
|
| 38 |
+
rechKl68Uc6H7vU0N,GPQA Diamond,Chemistry,pass,70331,253,23035,stop,597.7,327347.1
|
| 39 |
+
97ad69dda7b2462c98638b79e78aea0b,SuperGPQA,Medicine,pass,2249,9,538,stop,719.9,7866.0
|
| 40 |
+
aime2025-08,AIME2025,Algebra,pass,5717,812,2860,stop,503.2,36481.0
|
| 41 |
+
rec1zl5LvaatzGhFt,GPQA Diamond,Physics,pass,2520,723,1156,stop,610.5,15197.6
|
| 42 |
+
e78e4e539d6f4e379ac140d923d7b1be,SuperGPQA,Military Science,fail,6596,9,1337,stop,520.7,19068.0
|
| 43 |
+
aime2025-09,AIME2025,Algebra,pass,41658,1540,21574,stop,513.9,281933.8
|
| 44 |
+
recTs7qzfJs6kfLUK,GPQA Diamond,Biology,pass,67248,347,25692,stop,1037.9,341059.3
|
| 45 |
+
8483667a25e74fdfa3188de4ea734f03,SuperGPQA,Science,pass,106994,885,30235,stop,742.2,446215.6
|
| 46 |
+
aime2025-24,AIME2025,Algebra,pass,9090,1480,4274,stop,820.8,58242.9
|
| 47 |
+
rec32C1ZEapBnCC0E,GPQA Diamond,Physics,pass,4657,511,2043,stop,540.4,27405.1
|
| 48 |
+
e5ed76ef98144f06843125daf1bccd35,SuperGPQA,Science,pass,1291,431,825,stop,616.0,10582.4
|
| 49 |
+
aime2025-10,AIME2025,Combinatorics,pass,57473,1865,19130,stop,591.3,269200.2
|
| 50 |
+
recZWeueB7lSPR6wN,GPQA Diamond,Chemistry,exhausted,111206,0,32768,length,686.6,498221.2
|
| 51 |
+
fd7924876c4845cd83d95d61dfa0b236,SuperGPQA,Sociology,pass,7252,199,1407,stop,852.1,20779.4
|
| 52 |
+
aime2025-25,AIME2025,Combinatorics,pass,13132,1436,4790,stop,476.7,66163.7
|
| 53 |
+
recVvpD8miVjmmyfe,GPQA Diamond,Biology,exhausted,68938,0,32768,length,518.5,460292.0
|
| 54 |
+
6bfe7d19299d4b3184636e1f51694306,SuperGPQA,Agronomy,pass,28235,418,8694,stop,935.6,120118.4
|
| 55 |
+
aime2025-26,AIME2025,Combinatorics,pass,17145,1076,6154,stop,522.0,85879.9
|
| 56 |
+
recAAJoHMW45Lv5je,GPQA Diamond,Chemistry,pass,37041,685,11996,stop,530.2,164023.8
|
| 57 |
+
e1825d70c5844c22933087eafa89e39c,SuperGPQA,Engineering,pass,2157,9,1115,stop,807.1,14093.8
|
| 58 |
+
aime2025-12,AIME2025,Algebra,pass,22507,1299,10646,stop,535.2,139449.2
|
| 59 |
+
reckEnrOPFT9Ru7tW,GPQA Diamond,Chemistry,pass,29103,598,9125,stop,642.1,130403.1
|
| 60 |
+
ab430ac3f18e4e02a2cb3f35498c6b30,SuperGPQA,Engineering,pass,10539,579,4310,stop,621.6,59544.1
|
| 61 |
+
aime2025-27,AIME2025,Geometry,pass,26066,1302,10602,stop,603.4,145547.0
|
| 62 |
+
rec8nshandHARTkrg,GPQA Diamond,Chemistry,exhausted,109519,0,32768,length,873.6,470929.8
|
| 63 |
+
e8c5da5ca40647158b0c91dd695c6243,SuperGPQA,Science,pass,13392,590,5390,stop,1591.7,75243.2
|
| 64 |
+
aime2025-13,AIME2025,Combinatorics,pass,68901,2280,19526,stop,1806.1,292776.6
|
| 65 |
+
recFaL6j8UMhutXrc,GPQA Diamond,Chemistry,pass,46311,695,15957,stop,2614.2,222713.2
|
| 66 |
+
05efdc6fb2404ddc8dd5729bb68c74e5,SuperGPQA,Science,pass,1958,693,1446,stop,725.9,17601.0
|
| 67 |
+
aime2025-28,AIME2025,Number Theory,exhausted,65433,0,32768,length,544.5,457339.0
|
| 68 |
+
reczQ4I0VpENdMtIj,GPQA Diamond,Biology,pass,75489,274,16041,stop,915.5,235469.4
|
| 69 |
+
ba52e06cbe1a4310a77a7d12cd1db943,SuperGPQA,Science,pass,11302,298,4082,stop,1028.5,53318.8
|
| 70 |
+
aime2025-29,AIME2025,Geometry,pass,31429,1832,16128,stop,637.3,210239.5
|
| 71 |
+
recWxGU8Q4YReJ1tb,GPQA Diamond,Chemistry,exhausted,96591,0,32768,length,1224.8,472367.2
|
| 72 |
+
591a77df21324272914be82ac6583399,SuperGPQA,Science,fail,1397,353,689,stop,950.8,9232.1
|
| 73 |
+
aime2025-15,AIME2025,Number Theory,exhausted,77683,0,32768,length,484.0,483552.3
|
| 74 |
+
recMicVBcqy1xM1jq,GPQA Diamond,Physics,pass,39565,735,13522,stop,859.8,199109.0
|
| 75 |
+
e780f37a5baa4fe094cd9c157486664d,SuperGPQA,Sociology,fail,12613,223,2852,stop,681.6,43924.2
|
| 76 |
+
aime2025-30,AIME2025,Algebra,pass,54814,1510,24716,stop,556.4,355474.5
|
| 77 |
+
compsec-076,COMPSEC,FreeBSD / librpcsec_gss,pass,19590,10,4877,stop,1007.9,74213.2
|
| 78 |
+
compsec-077,COMPSEC,GNU Inetutils telnetd,exhausted,46873,0,32768,length,700.8,365861.9
|
| 79 |
+
compsec-078,COMPSEC,Botan,pass,2226,10,615,stop,980.3,9750.7
|
| 80 |
+
compsec-079,COMPSEC,Botan,pass,27818,10,6272,stop,713.4,100526.5
|
| 81 |
+
compsec-080,COMPSEC,Botan,pass,10639,11,2466,stop,666.7,39808.0
|
| 82 |
+
compsec-081,COMPSEC,uds-c,pass,36999,10,9487,stop,734.2,145307.8
|
| 83 |
+
compsec-082,COMPSEC,Firebird,pass,52562,10,13064,stop,714.1,206453.3
|
| 84 |
+
compsec-083,COMPSEC,Firebird,pass,81210,10,21859,stop,791.1,344479.0
|
| 85 |
+
compsec-084,COMPSEC,PHP,pass,3958,9,1148,stop,792.9,18033.3
|
| 86 |
+
compsec-085,COMPSEC,PHP PDO Firebird,pass,11133,9,2696,stop,607.4,42139.1
|
| 87 |
+
compsec-086,COMPSEC,libexpat,pass,4932,9,1277,stop,648.2,19653.8
|
| 88 |
+
compsec-087,COMPSEC,Mbed TLS,pass,34941,9,9872,stop,684.1,148723.9
|
| 89 |
+
compsec-088,COMPSEC,Mbed TLS,pass,4654,10,1203,stop,717.5,18592.0
|
| 90 |
+
compsec-089,COMPSEC,Mbed TLS,pass,3084,10,800,stop,560.0,12067.3
|
| 91 |
+
compsec-090,COMPSEC,Linux kernel,pass,6440,10,1802,stop,632.2,25817.4
|
| 92 |
+
compsec-091,COMPSEC,Linux kernel USB gadget storage,pass,1660,9,434,stop,546.4,6866.9
|
| 93 |
+
compsec-092,COMPSEC,Linux kernel AppArmor,pass,18810,10,4591,stop,625.8,71831.0
|
bench/fit-192k/qa-eval-1786830067.json
ADDED
|
@@ -0,0 +1,1028 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"accuracy": 0.8804347826086957,
|
| 3 |
+
"bench_version": "0.1.0",
|
| 4 |
+
"cases": 92,
|
| 5 |
+
"cases_detail": [
|
| 6 |
+
{
|
| 7 |
+
"answer_chars": 451,
|
| 8 |
+
"completion_tokens": 2443,
|
| 9 |
+
"finish_reason": "stop",
|
| 10 |
+
"id": "recNu3MXkvWUzHZr9",
|
| 11 |
+
"reasoning_chars": 4936,
|
| 12 |
+
"result": "pass",
|
| 13 |
+
"source": "GPQA Diamond",
|
| 14 |
+
"total_ms": 31295.601708,
|
| 15 |
+
"ttft_ms": 399.6055
|
| 16 |
+
},
|
| 17 |
+
{
|
| 18 |
+
"answer_chars": 9,
|
| 19 |
+
"completion_tokens": 599,
|
| 20 |
+
"finish_reason": "stop",
|
| 21 |
+
"id": "001b51d76b4d422988f2c11f104a2c6c",
|
| 22 |
+
"reasoning_chars": 2414,
|
| 23 |
+
"result": "pass",
|
| 24 |
+
"source": "SuperGPQA",
|
| 25 |
+
"total_ms": 8359.602083,
|
| 26 |
+
"ttft_ms": 454.54774999999995
|
| 27 |
+
},
|
| 28 |
+
{
|
| 29 |
+
"answer_chars": 408,
|
| 30 |
+
"completion_tokens": 801,
|
| 31 |
+
"finish_reason": "stop",
|
| 32 |
+
"id": "aime2025-01",
|
| 33 |
+
"reasoning_chars": 1502,
|
| 34 |
+
"result": "pass",
|
| 35 |
+
"source": "AIME2025",
|
| 36 |
+
"total_ms": 10339.32525,
|
| 37 |
+
"ttft_ms": 444.571125
|
| 38 |
+
},
|
| 39 |
+
{
|
| 40 |
+
"answer_chars": 645,
|
| 41 |
+
"completion_tokens": 1927,
|
| 42 |
+
"finish_reason": "stop",
|
| 43 |
+
"id": "recoiTJPGUmzAkief",
|
| 44 |
+
"reasoning_chars": 7822,
|
| 45 |
+
"result": "pass",
|
| 46 |
+
"source": "GPQA Diamond",
|
| 47 |
+
"total_ms": 31185.61875,
|
| 48 |
+
"ttft_ms": 569.7921249999999
|
| 49 |
+
},
|
| 50 |
+
{
|
| 51 |
+
"answer_chars": 538,
|
| 52 |
+
"completion_tokens": 2788,
|
| 53 |
+
"finish_reason": "stop",
|
| 54 |
+
"id": "b7e20eac98764fb0bf30e8366d951daa",
|
| 55 |
+
"reasoning_chars": 10843,
|
| 56 |
+
"result": "pass",
|
| 57 |
+
"source": "SuperGPQA",
|
| 58 |
+
"total_ms": 37812.201083,
|
| 59 |
+
"ttft_ms": 538.05125
|
| 60 |
+
},
|
| 61 |
+
{
|
| 62 |
+
"answer_chars": 631,
|
| 63 |
+
"completion_tokens": 1252,
|
| 64 |
+
"finish_reason": "stop",
|
| 65 |
+
"id": "aime2025-16",
|
| 66 |
+
"reasoning_chars": 2108,
|
| 67 |
+
"result": "pass",
|
| 68 |
+
"source": "AIME2025",
|
| 69 |
+
"total_ms": 15553.081666,
|
| 70 |
+
"ttft_ms": 488.417125
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"answer_chars": 474,
|
| 74 |
+
"completion_tokens": 1108,
|
| 75 |
+
"finish_reason": "stop",
|
| 76 |
+
"id": "rec4UqStf9WUVif1f",
|
| 77 |
+
"reasoning_chars": 1783,
|
| 78 |
+
"result": "pass",
|
| 79 |
+
"source": "GPQA Diamond",
|
| 80 |
+
"total_ms": 13719.513916,
|
| 81 |
+
"ttft_ms": 525.752875
|
| 82 |
+
},
|
| 83 |
+
{
|
| 84 |
+
"answer_chars": 9,
|
| 85 |
+
"completion_tokens": 4961,
|
| 86 |
+
"finish_reason": "stop",
|
| 87 |
+
"id": "4a1d1780a93f4093b6fb7d3c314cbea8",
|
| 88 |
+
"reasoning_chars": 22951,
|
| 89 |
+
"result": "fail",
|
| 90 |
+
"source": "SuperGPQA",
|
| 91 |
+
"total_ms": 76262.11841600001,
|
| 92 |
+
"ttft_ms": 469.140375
|
| 93 |
+
},
|
| 94 |
+
{
|
| 95 |
+
"answer_chars": 1219,
|
| 96 |
+
"completion_tokens": 26079,
|
| 97 |
+
"finish_reason": "stop",
|
| 98 |
+
"id": "aime2025-02",
|
| 99 |
+
"reasoning_chars": 65592,
|
| 100 |
+
"result": "pass",
|
| 101 |
+
"source": "AIME2025",
|
| 102 |
+
"total_ms": 360041.997875,
|
| 103 |
+
"ttft_ms": 818.316625
|
| 104 |
+
},
|
| 105 |
+
{
|
| 106 |
+
"answer_chars": 565,
|
| 107 |
+
"completion_tokens": 2278,
|
| 108 |
+
"finish_reason": "stop",
|
| 109 |
+
"id": "recgI6tUQ7RLJRWGx",
|
| 110 |
+
"reasoning_chars": 5748,
|
| 111 |
+
"result": "pass",
|
| 112 |
+
"source": "GPQA Diamond",
|
| 113 |
+
"total_ms": 31435.51425,
|
| 114 |
+
"ttft_ms": 836.2213750000001
|
| 115 |
+
},
|
| 116 |
+
{
|
| 117 |
+
"answer_chars": 173,
|
| 118 |
+
"completion_tokens": 1967,
|
| 119 |
+
"finish_reason": "stop",
|
| 120 |
+
"id": "6082513c8dba4ec68aa68f1bf5854d09",
|
| 121 |
+
"reasoning_chars": 9458,
|
| 122 |
+
"result": "pass",
|
| 123 |
+
"source": "SuperGPQA",
|
| 124 |
+
"total_ms": 28106.493334,
|
| 125 |
+
"ttft_ms": 476.113875
|
| 126 |
+
},
|
| 127 |
+
{
|
| 128 |
+
"answer_chars": 650,
|
| 129 |
+
"completion_tokens": 986,
|
| 130 |
+
"finish_reason": "stop",
|
| 131 |
+
"id": "aime2025-03",
|
| 132 |
+
"reasoning_chars": 1664,
|
| 133 |
+
"result": "pass",
|
| 134 |
+
"source": "AIME2025",
|
| 135 |
+
"total_ms": 12581.4355,
|
| 136 |
+
"ttft_ms": 514.6454590000001
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"answer_chars": 457,
|
| 140 |
+
"completion_tokens": 4591,
|
| 141 |
+
"finish_reason": "stop",
|
| 142 |
+
"id": "recDytVnNYZe2HuUU",
|
| 143 |
+
"reasoning_chars": 10058,
|
| 144 |
+
"result": "pass",
|
| 145 |
+
"source": "GPQA Diamond (modified)",
|
| 146 |
+
"total_ms": 62373.030999999995,
|
| 147 |
+
"ttft_ms": 508.87266600000004
|
| 148 |
+
},
|
| 149 |
+
{
|
| 150 |
+
"answer_chars": 9,
|
| 151 |
+
"completion_tokens": 384,
|
| 152 |
+
"finish_reason": "stop",
|
| 153 |
+
"id": "bebf1ed45ae14ad7b4f205f3909cb58a",
|
| 154 |
+
"reasoning_chars": 1436,
|
| 155 |
+
"result": "pass",
|
| 156 |
+
"source": "SuperGPQA",
|
| 157 |
+
"total_ms": 5540.072875,
|
| 158 |
+
"ttft_ms": 543.231792
|
| 159 |
+
},
|
| 160 |
+
{
|
| 161 |
+
"answer_chars": 1115,
|
| 162 |
+
"completion_tokens": 5757,
|
| 163 |
+
"finish_reason": "stop",
|
| 164 |
+
"id": "aime2025-18",
|
| 165 |
+
"reasoning_chars": 16017,
|
| 166 |
+
"result": "pass",
|
| 167 |
+
"source": "AIME2025",
|
| 168 |
+
"total_ms": 80568.597541,
|
| 169 |
+
"ttft_ms": 740.695291
|
| 170 |
+
},
|
| 171 |
+
{
|
| 172 |
+
"answer_chars": 778,
|
| 173 |
+
"completion_tokens": 1018,
|
| 174 |
+
"finish_reason": "stop",
|
| 175 |
+
"id": "recNFJjE5PPTqVJGv",
|
| 176 |
+
"reasoning_chars": 1384,
|
| 177 |
+
"result": "pass",
|
| 178 |
+
"source": "GPQA Diamond",
|
| 179 |
+
"total_ms": 12578.768667,
|
| 180 |
+
"ttft_ms": 556.239792
|
| 181 |
+
},
|
| 182 |
+
{
|
| 183 |
+
"answer_chars": 9,
|
| 184 |
+
"completion_tokens": 847,
|
| 185 |
+
"finish_reason": "stop",
|
| 186 |
+
"id": "7ca71b86327744b78e93185a45bc5cef",
|
| 187 |
+
"reasoning_chars": 3503,
|
| 188 |
+
"result": "pass",
|
| 189 |
+
"source": "SuperGPQA",
|
| 190 |
+
"total_ms": 12817.433040999998,
|
| 191 |
+
"ttft_ms": 494.44225
|
| 192 |
+
},
|
| 193 |
+
{
|
| 194 |
+
"answer_chars": 433,
|
| 195 |
+
"completion_tokens": 1443,
|
| 196 |
+
"finish_reason": "stop",
|
| 197 |
+
"id": "aime2025-04",
|
| 198 |
+
"reasoning_chars": 2798,
|
| 199 |
+
"result": "pass",
|
| 200 |
+
"source": "AIME2025",
|
| 201 |
+
"total_ms": 18052.332667000002,
|
| 202 |
+
"ttft_ms": 472.539042
|
| 203 |
+
},
|
| 204 |
+
{
|
| 205 |
+
"answer_chars": 767,
|
| 206 |
+
"completion_tokens": 1100,
|
| 207 |
+
"finish_reason": "stop",
|
| 208 |
+
"id": "rec2UlKqC6RFHdcro",
|
| 209 |
+
"reasoning_chars": 2265,
|
| 210 |
+
"result": "pass",
|
| 211 |
+
"source": "GPQA Diamond",
|
| 212 |
+
"total_ms": 14286.128666999999,
|
| 213 |
+
"ttft_ms": 622.890375
|
| 214 |
+
},
|
| 215 |
+
{
|
| 216 |
+
"answer_chars": 298,
|
| 217 |
+
"completion_tokens": 593,
|
| 218 |
+
"finish_reason": "stop",
|
| 219 |
+
"id": "d44b94f7749345a39a65f6312bda8764",
|
| 220 |
+
"reasoning_chars": 1793,
|
| 221 |
+
"result": "pass",
|
| 222 |
+
"source": "SuperGPQA",
|
| 223 |
+
"total_ms": 8716.484625,
|
| 224 |
+
"ttft_ms": 497.215667
|
| 225 |
+
},
|
| 226 |
+
{
|
| 227 |
+
"answer_chars": 1155,
|
| 228 |
+
"completion_tokens": 2778,
|
| 229 |
+
"finish_reason": "stop",
|
| 230 |
+
"id": "aime2025-19",
|
| 231 |
+
"reasoning_chars": 4450,
|
| 232 |
+
"result": "pass",
|
| 233 |
+
"source": "AIME2025",
|
| 234 |
+
"total_ms": 33512.103542,
|
| 235 |
+
"ttft_ms": 524.2665840000001
|
| 236 |
+
},
|
| 237 |
+
{
|
| 238 |
+
"answer_chars": 429,
|
| 239 |
+
"completion_tokens": 9787,
|
| 240 |
+
"finish_reason": "stop",
|
| 241 |
+
"id": "recv7GsQg3f0fvB1f",
|
| 242 |
+
"reasoning_chars": 40782,
|
| 243 |
+
"result": "pass",
|
| 244 |
+
"source": "GPQA Diamond",
|
| 245 |
+
"total_ms": 144361.435666,
|
| 246 |
+
"ttft_ms": 522.277541
|
| 247 |
+
},
|
| 248 |
+
{
|
| 249 |
+
"answer_chars": 9,
|
| 250 |
+
"completion_tokens": 1973,
|
| 251 |
+
"finish_reason": "stop",
|
| 252 |
+
"id": "febe406f44d74a40b50bb5b7c69d5dc1",
|
| 253 |
+
"reasoning_chars": 8705,
|
| 254 |
+
"result": "pass",
|
| 255 |
+
"source": "SuperGPQA",
|
| 256 |
+
"total_ms": 26198.616958,
|
| 257 |
+
"ttft_ms": 623.9991249999999
|
| 258 |
+
},
|
| 259 |
+
{
|
| 260 |
+
"answer_chars": 1032,
|
| 261 |
+
"completion_tokens": 2932,
|
| 262 |
+
"finish_reason": "stop",
|
| 263 |
+
"id": "aime2025-05",
|
| 264 |
+
"reasoning_chars": 7137,
|
| 265 |
+
"result": "pass",
|
| 266 |
+
"source": "AIME2025",
|
| 267 |
+
"total_ms": 39824.123374999996,
|
| 268 |
+
"ttft_ms": 505.3135
|
| 269 |
+
},
|
| 270 |
+
{
|
| 271 |
+
"answer_chars": 595,
|
| 272 |
+
"completion_tokens": 26640,
|
| 273 |
+
"finish_reason": "stop",
|
| 274 |
+
"id": "recrHBEJJoDTV05JR",
|
| 275 |
+
"reasoning_chars": 83031,
|
| 276 |
+
"result": "pass",
|
| 277 |
+
"source": "GPQA Diamond",
|
| 278 |
+
"total_ms": 370456.417042,
|
| 279 |
+
"ttft_ms": 519.5193340000001
|
| 280 |
+
},
|
| 281 |
+
{
|
| 282 |
+
"answer_chars": 475,
|
| 283 |
+
"completion_tokens": 573,
|
| 284 |
+
"finish_reason": "stop",
|
| 285 |
+
"id": "31950dc80ded400a9181f50626d1f75c",
|
| 286 |
+
"reasoning_chars": 699,
|
| 287 |
+
"result": "pass",
|
| 288 |
+
"source": "SuperGPQA",
|
| 289 |
+
"total_ms": 7321.872708,
|
| 290 |
+
"ttft_ms": 762.591958
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"answer_chars": 825,
|
| 294 |
+
"completion_tokens": 1577,
|
| 295 |
+
"finish_reason": "stop",
|
| 296 |
+
"id": "aime2025-06",
|
| 297 |
+
"reasoning_chars": 3346,
|
| 298 |
+
"result": "pass",
|
| 299 |
+
"source": "AIME2025",
|
| 300 |
+
"total_ms": 20951.714375000003,
|
| 301 |
+
"ttft_ms": 504.47074999999995
|
| 302 |
+
},
|
| 303 |
+
{
|
| 304 |
+
"answer_chars": 518,
|
| 305 |
+
"completion_tokens": 27666,
|
| 306 |
+
"finish_reason": "stop",
|
| 307 |
+
"id": "recb80OwMgNnceA9t",
|
| 308 |
+
"reasoning_chars": 76394,
|
| 309 |
+
"result": "pass",
|
| 310 |
+
"source": "GPQA Diamond",
|
| 311 |
+
"total_ms": 404564.034291,
|
| 312 |
+
"ttft_ms": 514.815541
|
| 313 |
+
},
|
| 314 |
+
{
|
| 315 |
+
"answer_chars": 777,
|
| 316 |
+
"completion_tokens": 6424,
|
| 317 |
+
"finish_reason": "stop",
|
| 318 |
+
"id": "0f14cd17be174618af6d60227e7dca9f",
|
| 319 |
+
"reasoning_chars": 17039,
|
| 320 |
+
"result": "pass",
|
| 321 |
+
"source": "SuperGPQA",
|
| 322 |
+
"total_ms": 91093.012875,
|
| 323 |
+
"ttft_ms": 1186.316458
|
| 324 |
+
},
|
| 325 |
+
{
|
| 326 |
+
"answer_chars": 976,
|
| 327 |
+
"completion_tokens": 2912,
|
| 328 |
+
"finish_reason": "stop",
|
| 329 |
+
"id": "aime2025-21",
|
| 330 |
+
"reasoning_chars": 7398,
|
| 331 |
+
"result": "pass",
|
| 332 |
+
"source": "AIME2025",
|
| 333 |
+
"total_ms": 38763.822917,
|
| 334 |
+
"ttft_ms": 977.560833
|
| 335 |
+
},
|
| 336 |
+
{
|
| 337 |
+
"answer_chars": 878,
|
| 338 |
+
"completion_tokens": 16280,
|
| 339 |
+
"finish_reason": "stop",
|
| 340 |
+
"id": "recA1i5ZAh0Uzclxp",
|
| 341 |
+
"reasoning_chars": 51145,
|
| 342 |
+
"result": "pass",
|
| 343 |
+
"source": "GPQA Diamond",
|
| 344 |
+
"total_ms": 237960.646375,
|
| 345 |
+
"ttft_ms": 579.2425420000001
|
| 346 |
+
},
|
| 347 |
+
{
|
| 348 |
+
"answer_chars": 596,
|
| 349 |
+
"completion_tokens": 839,
|
| 350 |
+
"finish_reason": "stop",
|
| 351 |
+
"id": "cef9bcc087434cc2b4e354a9baef55eb",
|
| 352 |
+
"reasoning_chars": 1002,
|
| 353 |
+
"result": "pass",
|
| 354 |
+
"source": "SuperGPQA",
|
| 355 |
+
"total_ms": 10470.621292,
|
| 356 |
+
"ttft_ms": 843.4355
|
| 357 |
+
},
|
| 358 |
+
{
|
| 359 |
+
"answer_chars": 1860,
|
| 360 |
+
"completion_tokens": 7081,
|
| 361 |
+
"finish_reason": "stop",
|
| 362 |
+
"id": "aime2025-07",
|
| 363 |
+
"reasoning_chars": 19796,
|
| 364 |
+
"result": "pass",
|
| 365 |
+
"source": "AIME2025",
|
| 366 |
+
"total_ms": 102988.00825000001,
|
| 367 |
+
"ttft_ms": 528.925875
|
| 368 |
+
},
|
| 369 |
+
{
|
| 370 |
+
"answer_chars": 714,
|
| 371 |
+
"completion_tokens": 4582,
|
| 372 |
+
"finish_reason": "stop",
|
| 373 |
+
"id": "recqGD3fxPCI59vPQ",
|
| 374 |
+
"reasoning_chars": 14964,
|
| 375 |
+
"result": "pass",
|
| 376 |
+
"source": "GPQA Diamond",
|
| 377 |
+
"total_ms": 67799.600916,
|
| 378 |
+
"ttft_ms": 623.9945
|
| 379 |
+
},
|
| 380 |
+
{
|
| 381 |
+
"answer_chars": 9,
|
| 382 |
+
"completion_tokens": 326,
|
| 383 |
+
"finish_reason": "stop",
|
| 384 |
+
"id": "9f93aa2cfdb547b5b3a4623f80f7fff6",
|
| 385 |
+
"reasoning_chars": 1315,
|
| 386 |
+
"result": "pass",
|
| 387 |
+
"source": "SuperGPQA",
|
| 388 |
+
"total_ms": 4879.490084,
|
| 389 |
+
"ttft_ms": 626.784417
|
| 390 |
+
},
|
| 391 |
+
{
|
| 392 |
+
"answer_chars": 812,
|
| 393 |
+
"completion_tokens": 2260,
|
| 394 |
+
"finish_reason": "stop",
|
| 395 |
+
"id": "aime2025-22",
|
| 396 |
+
"reasoning_chars": 5525,
|
| 397 |
+
"result": "pass",
|
| 398 |
+
"source": "AIME2025",
|
| 399 |
+
"total_ms": 30156.678833,
|
| 400 |
+
"ttft_ms": 464.996125
|
| 401 |
+
},
|
| 402 |
+
{
|
| 403 |
+
"answer_chars": 253,
|
| 404 |
+
"completion_tokens": 23035,
|
| 405 |
+
"finish_reason": "stop",
|
| 406 |
+
"id": "rechKl68Uc6H7vU0N",
|
| 407 |
+
"reasoning_chars": 70331,
|
| 408 |
+
"result": "pass",
|
| 409 |
+
"source": "GPQA Diamond",
|
| 410 |
+
"total_ms": 327347.06475,
|
| 411 |
+
"ttft_ms": 597.701958
|
| 412 |
+
},
|
| 413 |
+
{
|
| 414 |
+
"answer_chars": 9,
|
| 415 |
+
"completion_tokens": 538,
|
| 416 |
+
"finish_reason": "stop",
|
| 417 |
+
"id": "97ad69dda7b2462c98638b79e78aea0b",
|
| 418 |
+
"reasoning_chars": 2249,
|
| 419 |
+
"result": "pass",
|
| 420 |
+
"source": "SuperGPQA",
|
| 421 |
+
"total_ms": 7865.990041,
|
| 422 |
+
"ttft_ms": 719.940333
|
| 423 |
+
},
|
| 424 |
+
{
|
| 425 |
+
"answer_chars": 812,
|
| 426 |
+
"completion_tokens": 2860,
|
| 427 |
+
"finish_reason": "stop",
|
| 428 |
+
"id": "aime2025-08",
|
| 429 |
+
"reasoning_chars": 5717,
|
| 430 |
+
"result": "pass",
|
| 431 |
+
"source": "AIME2025",
|
| 432 |
+
"total_ms": 36480.992625,
|
| 433 |
+
"ttft_ms": 503.21475000000004
|
| 434 |
+
},
|
| 435 |
+
{
|
| 436 |
+
"answer_chars": 723,
|
| 437 |
+
"completion_tokens": 1156,
|
| 438 |
+
"finish_reason": "stop",
|
| 439 |
+
"id": "rec1zl5LvaatzGhFt",
|
| 440 |
+
"reasoning_chars": 2520,
|
| 441 |
+
"result": "pass",
|
| 442 |
+
"source": "GPQA Diamond",
|
| 443 |
+
"total_ms": 15197.569749999999,
|
| 444 |
+
"ttft_ms": 610.507333
|
| 445 |
+
},
|
| 446 |
+
{
|
| 447 |
+
"answer_chars": 9,
|
| 448 |
+
"completion_tokens": 1337,
|
| 449 |
+
"finish_reason": "stop",
|
| 450 |
+
"id": "e78e4e539d6f4e379ac140d923d7b1be",
|
| 451 |
+
"reasoning_chars": 6596,
|
| 452 |
+
"result": "fail",
|
| 453 |
+
"source": "SuperGPQA",
|
| 454 |
+
"total_ms": 19067.997834,
|
| 455 |
+
"ttft_ms": 520.7455
|
| 456 |
+
},
|
| 457 |
+
{
|
| 458 |
+
"answer_chars": 1540,
|
| 459 |
+
"completion_tokens": 21574,
|
| 460 |
+
"finish_reason": "stop",
|
| 461 |
+
"id": "aime2025-09",
|
| 462 |
+
"reasoning_chars": 41658,
|
| 463 |
+
"result": "pass",
|
| 464 |
+
"source": "AIME2025",
|
| 465 |
+
"total_ms": 281933.832875,
|
| 466 |
+
"ttft_ms": 513.85575
|
| 467 |
+
},
|
| 468 |
+
{
|
| 469 |
+
"answer_chars": 347,
|
| 470 |
+
"completion_tokens": 25692,
|
| 471 |
+
"finish_reason": "stop",
|
| 472 |
+
"id": "recTs7qzfJs6kfLUK",
|
| 473 |
+
"reasoning_chars": 67248,
|
| 474 |
+
"result": "pass",
|
| 475 |
+
"source": "GPQA Diamond",
|
| 476 |
+
"total_ms": 341059.269584,
|
| 477 |
+
"ttft_ms": 1037.865292
|
| 478 |
+
},
|
| 479 |
+
{
|
| 480 |
+
"answer_chars": 885,
|
| 481 |
+
"completion_tokens": 30235,
|
| 482 |
+
"finish_reason": "stop",
|
| 483 |
+
"id": "8483667a25e74fdfa3188de4ea734f03",
|
| 484 |
+
"reasoning_chars": 106994,
|
| 485 |
+
"result": "pass",
|
| 486 |
+
"source": "SuperGPQA",
|
| 487 |
+
"total_ms": 446215.645708,
|
| 488 |
+
"ttft_ms": 742.24075
|
| 489 |
+
},
|
| 490 |
+
{
|
| 491 |
+
"answer_chars": 1480,
|
| 492 |
+
"completion_tokens": 4274,
|
| 493 |
+
"finish_reason": "stop",
|
| 494 |
+
"id": "aime2025-24",
|
| 495 |
+
"reasoning_chars": 9090,
|
| 496 |
+
"result": "pass",
|
| 497 |
+
"source": "AIME2025",
|
| 498 |
+
"total_ms": 58242.886374999995,
|
| 499 |
+
"ttft_ms": 820.82575
|
| 500 |
+
},
|
| 501 |
+
{
|
| 502 |
+
"answer_chars": 511,
|
| 503 |
+
"completion_tokens": 2043,
|
| 504 |
+
"finish_reason": "stop",
|
| 505 |
+
"id": "rec32C1ZEapBnCC0E",
|
| 506 |
+
"reasoning_chars": 4657,
|
| 507 |
+
"result": "pass",
|
| 508 |
+
"source": "GPQA Diamond",
|
| 509 |
+
"total_ms": 27405.115917,
|
| 510 |
+
"ttft_ms": 540.3725000000001
|
| 511 |
+
},
|
| 512 |
+
{
|
| 513 |
+
"answer_chars": 431,
|
| 514 |
+
"completion_tokens": 825,
|
| 515 |
+
"finish_reason": "stop",
|
| 516 |
+
"id": "e5ed76ef98144f06843125daf1bccd35",
|
| 517 |
+
"reasoning_chars": 1291,
|
| 518 |
+
"result": "pass",
|
| 519 |
+
"source": "SuperGPQA",
|
| 520 |
+
"total_ms": 10582.406459,
|
| 521 |
+
"ttft_ms": 615.954917
|
| 522 |
+
},
|
| 523 |
+
{
|
| 524 |
+
"answer_chars": 1865,
|
| 525 |
+
"completion_tokens": 19130,
|
| 526 |
+
"finish_reason": "stop",
|
| 527 |
+
"id": "aime2025-10",
|
| 528 |
+
"reasoning_chars": 57473,
|
| 529 |
+
"result": "pass",
|
| 530 |
+
"source": "AIME2025",
|
| 531 |
+
"total_ms": 269200.155083,
|
| 532 |
+
"ttft_ms": 591.284041
|
| 533 |
+
},
|
| 534 |
+
{
|
| 535 |
+
"answer_chars": 0,
|
| 536 |
+
"completion_tokens": 32768,
|
| 537 |
+
"finish_reason": "length",
|
| 538 |
+
"id": "recZWeueB7lSPR6wN",
|
| 539 |
+
"reasoning_chars": 111206,
|
| 540 |
+
"result": "exhausted",
|
| 541 |
+
"source": "GPQA Diamond",
|
| 542 |
+
"total_ms": 498221.152792,
|
| 543 |
+
"ttft_ms": 686.6275840000001
|
| 544 |
+
},
|
| 545 |
+
{
|
| 546 |
+
"answer_chars": 199,
|
| 547 |
+
"completion_tokens": 1407,
|
| 548 |
+
"finish_reason": "stop",
|
| 549 |
+
"id": "fd7924876c4845cd83d95d61dfa0b236",
|
| 550 |
+
"reasoning_chars": 7252,
|
| 551 |
+
"result": "pass",
|
| 552 |
+
"source": "SuperGPQA",
|
| 553 |
+
"total_ms": 20779.398833,
|
| 554 |
+
"ttft_ms": 852.102041
|
| 555 |
+
},
|
| 556 |
+
{
|
| 557 |
+
"answer_chars": 1436,
|
| 558 |
+
"completion_tokens": 4790,
|
| 559 |
+
"finish_reason": "stop",
|
| 560 |
+
"id": "aime2025-25",
|
| 561 |
+
"reasoning_chars": 13132,
|
| 562 |
+
"result": "pass",
|
| 563 |
+
"source": "AIME2025",
|
| 564 |
+
"total_ms": 66163.68637499999,
|
| 565 |
+
"ttft_ms": 476.737709
|
| 566 |
+
},
|
| 567 |
+
{
|
| 568 |
+
"answer_chars": 0,
|
| 569 |
+
"completion_tokens": 32768,
|
| 570 |
+
"finish_reason": "length",
|
| 571 |
+
"id": "recVvpD8miVjmmyfe",
|
| 572 |
+
"reasoning_chars": 68938,
|
| 573 |
+
"result": "exhausted",
|
| 574 |
+
"source": "GPQA Diamond",
|
| 575 |
+
"total_ms": 460292.007958,
|
| 576 |
+
"ttft_ms": 518.500583
|
| 577 |
+
},
|
| 578 |
+
{
|
| 579 |
+
"answer_chars": 418,
|
| 580 |
+
"completion_tokens": 8694,
|
| 581 |
+
"finish_reason": "stop",
|
| 582 |
+
"id": "6bfe7d19299d4b3184636e1f51694306",
|
| 583 |
+
"reasoning_chars": 28235,
|
| 584 |
+
"result": "pass",
|
| 585 |
+
"source": "SuperGPQA",
|
| 586 |
+
"total_ms": 120118.39775,
|
| 587 |
+
"ttft_ms": 935.6095829999999
|
| 588 |
+
},
|
| 589 |
+
{
|
| 590 |
+
"answer_chars": 1076,
|
| 591 |
+
"completion_tokens": 6154,
|
| 592 |
+
"finish_reason": "stop",
|
| 593 |
+
"id": "aime2025-26",
|
| 594 |
+
"reasoning_chars": 17145,
|
| 595 |
+
"result": "pass",
|
| 596 |
+
"source": "AIME2025",
|
| 597 |
+
"total_ms": 85879.90304100001,
|
| 598 |
+
"ttft_ms": 521.997833
|
| 599 |
+
},
|
| 600 |
+
{
|
| 601 |
+
"answer_chars": 685,
|
| 602 |
+
"completion_tokens": 11996,
|
| 603 |
+
"finish_reason": "stop",
|
| 604 |
+
"id": "recAAJoHMW45Lv5je",
|
| 605 |
+
"reasoning_chars": 37041,
|
| 606 |
+
"result": "pass",
|
| 607 |
+
"source": "GPQA Diamond",
|
| 608 |
+
"total_ms": 164023.837542,
|
| 609 |
+
"ttft_ms": 530.193208
|
| 610 |
+
},
|
| 611 |
+
{
|
| 612 |
+
"answer_chars": 9,
|
| 613 |
+
"completion_tokens": 1115,
|
| 614 |
+
"finish_reason": "stop",
|
| 615 |
+
"id": "e1825d70c5844c22933087eafa89e39c",
|
| 616 |
+
"reasoning_chars": 2157,
|
| 617 |
+
"result": "pass",
|
| 618 |
+
"source": "SuperGPQA",
|
| 619 |
+
"total_ms": 14093.81475,
|
| 620 |
+
"ttft_ms": 807.07975
|
| 621 |
+
},
|
| 622 |
+
{
|
| 623 |
+
"answer_chars": 1299,
|
| 624 |
+
"completion_tokens": 10646,
|
| 625 |
+
"finish_reason": "stop",
|
| 626 |
+
"id": "aime2025-12",
|
| 627 |
+
"reasoning_chars": 22507,
|
| 628 |
+
"result": "pass",
|
| 629 |
+
"source": "AIME2025",
|
| 630 |
+
"total_ms": 139449.189458,
|
| 631 |
+
"ttft_ms": 535.166833
|
| 632 |
+
},
|
| 633 |
+
{
|
| 634 |
+
"answer_chars": 598,
|
| 635 |
+
"completion_tokens": 9125,
|
| 636 |
+
"finish_reason": "stop",
|
| 637 |
+
"id": "reckEnrOPFT9Ru7tW",
|
| 638 |
+
"reasoning_chars": 29103,
|
| 639 |
+
"result": "pass",
|
| 640 |
+
"source": "GPQA Diamond",
|
| 641 |
+
"total_ms": 130403.11474999998,
|
| 642 |
+
"ttft_ms": 642.1070840000001
|
| 643 |
+
},
|
| 644 |
+
{
|
| 645 |
+
"answer_chars": 579,
|
| 646 |
+
"completion_tokens": 4310,
|
| 647 |
+
"finish_reason": "stop",
|
| 648 |
+
"id": "ab430ac3f18e4e02a2cb3f35498c6b30",
|
| 649 |
+
"reasoning_chars": 10539,
|
| 650 |
+
"result": "pass",
|
| 651 |
+
"source": "SuperGPQA",
|
| 652 |
+
"total_ms": 59544.074334000004,
|
| 653 |
+
"ttft_ms": 621.629
|
| 654 |
+
},
|
| 655 |
+
{
|
| 656 |
+
"answer_chars": 1302,
|
| 657 |
+
"completion_tokens": 10602,
|
| 658 |
+
"finish_reason": "stop",
|
| 659 |
+
"id": "aime2025-27",
|
| 660 |
+
"reasoning_chars": 26066,
|
| 661 |
+
"result": "pass",
|
| 662 |
+
"source": "AIME2025",
|
| 663 |
+
"total_ms": 145547.010667,
|
| 664 |
+
"ttft_ms": 603.377417
|
| 665 |
+
},
|
| 666 |
+
{
|
| 667 |
+
"answer_chars": 0,
|
| 668 |
+
"completion_tokens": 32768,
|
| 669 |
+
"finish_reason": "length",
|
| 670 |
+
"id": "rec8nshandHARTkrg",
|
| 671 |
+
"reasoning_chars": 109519,
|
| 672 |
+
"result": "exhausted",
|
| 673 |
+
"source": "GPQA Diamond",
|
| 674 |
+
"total_ms": 470929.765041,
|
| 675 |
+
"ttft_ms": 873.600916
|
| 676 |
+
},
|
| 677 |
+
{
|
| 678 |
+
"answer_chars": 590,
|
| 679 |
+
"completion_tokens": 5390,
|
| 680 |
+
"finish_reason": "stop",
|
| 681 |
+
"id": "e8c5da5ca40647158b0c91dd695c6243",
|
| 682 |
+
"reasoning_chars": 13392,
|
| 683 |
+
"result": "pass",
|
| 684 |
+
"source": "SuperGPQA",
|
| 685 |
+
"total_ms": 75243.150417,
|
| 686 |
+
"ttft_ms": 1591.7083750000002
|
| 687 |
+
},
|
| 688 |
+
{
|
| 689 |
+
"answer_chars": 2280,
|
| 690 |
+
"completion_tokens": 19526,
|
| 691 |
+
"finish_reason": "stop",
|
| 692 |
+
"id": "aime2025-13",
|
| 693 |
+
"reasoning_chars": 68901,
|
| 694 |
+
"result": "pass",
|
| 695 |
+
"source": "AIME2025",
|
| 696 |
+
"total_ms": 292776.569333,
|
| 697 |
+
"ttft_ms": 1806.0629999999999
|
| 698 |
+
},
|
| 699 |
+
{
|
| 700 |
+
"answer_chars": 695,
|
| 701 |
+
"completion_tokens": 15957,
|
| 702 |
+
"finish_reason": "stop",
|
| 703 |
+
"id": "recFaL6j8UMhutXrc",
|
| 704 |
+
"reasoning_chars": 46311,
|
| 705 |
+
"result": "pass",
|
| 706 |
+
"source": "GPQA Diamond",
|
| 707 |
+
"total_ms": 222713.19020799999,
|
| 708 |
+
"ttft_ms": 2614.1707499999998
|
| 709 |
+
},
|
| 710 |
+
{
|
| 711 |
+
"answer_chars": 693,
|
| 712 |
+
"completion_tokens": 1446,
|
| 713 |
+
"finish_reason": "stop",
|
| 714 |
+
"id": "05efdc6fb2404ddc8dd5729bb68c74e5",
|
| 715 |
+
"reasoning_chars": 1958,
|
| 716 |
+
"result": "pass",
|
| 717 |
+
"source": "SuperGPQA",
|
| 718 |
+
"total_ms": 17601.032709000003,
|
| 719 |
+
"ttft_ms": 725.869459
|
| 720 |
+
},
|
| 721 |
+
{
|
| 722 |
+
"answer_chars": 0,
|
| 723 |
+
"completion_tokens": 32768,
|
| 724 |
+
"finish_reason": "length",
|
| 725 |
+
"id": "aime2025-28",
|
| 726 |
+
"reasoning_chars": 65433,
|
| 727 |
+
"result": "exhausted",
|
| 728 |
+
"source": "AIME2025",
|
| 729 |
+
"total_ms": 457338.952458,
|
| 730 |
+
"ttft_ms": 544.493583
|
| 731 |
+
},
|
| 732 |
+
{
|
| 733 |
+
"answer_chars": 274,
|
| 734 |
+
"completion_tokens": 16041,
|
| 735 |
+
"finish_reason": "stop",
|
| 736 |
+
"id": "reczQ4I0VpENdMtIj",
|
| 737 |
+
"reasoning_chars": 75489,
|
| 738 |
+
"result": "pass",
|
| 739 |
+
"source": "GPQA Diamond",
|
| 740 |
+
"total_ms": 235469.385292,
|
| 741 |
+
"ttft_ms": 915.453459
|
| 742 |
+
},
|
| 743 |
+
{
|
| 744 |
+
"answer_chars": 298,
|
| 745 |
+
"completion_tokens": 4082,
|
| 746 |
+
"finish_reason": "stop",
|
| 747 |
+
"id": "ba52e06cbe1a4310a77a7d12cd1db943",
|
| 748 |
+
"reasoning_chars": 11302,
|
| 749 |
+
"result": "pass",
|
| 750 |
+
"source": "SuperGPQA",
|
| 751 |
+
"total_ms": 53318.797833,
|
| 752 |
+
"ttft_ms": 1028.459583
|
| 753 |
+
},
|
| 754 |
+
{
|
| 755 |
+
"answer_chars": 1832,
|
| 756 |
+
"completion_tokens": 16128,
|
| 757 |
+
"finish_reason": "stop",
|
| 758 |
+
"id": "aime2025-29",
|
| 759 |
+
"reasoning_chars": 31429,
|
| 760 |
+
"result": "pass",
|
| 761 |
+
"source": "AIME2025",
|
| 762 |
+
"total_ms": 210239.475542,
|
| 763 |
+
"ttft_ms": 637.297667
|
| 764 |
+
},
|
| 765 |
+
{
|
| 766 |
+
"answer_chars": 0,
|
| 767 |
+
"completion_tokens": 32768,
|
| 768 |
+
"finish_reason": "length",
|
| 769 |
+
"id": "recWxGU8Q4YReJ1tb",
|
| 770 |
+
"reasoning_chars": 96591,
|
| 771 |
+
"result": "exhausted",
|
| 772 |
+
"source": "GPQA Diamond",
|
| 773 |
+
"total_ms": 472367.23208299995,
|
| 774 |
+
"ttft_ms": 1224.8100829999998
|
| 775 |
+
},
|
| 776 |
+
{
|
| 777 |
+
"answer_chars": 353,
|
| 778 |
+
"completion_tokens": 689,
|
| 779 |
+
"finish_reason": "stop",
|
| 780 |
+
"id": "591a77df21324272914be82ac6583399",
|
| 781 |
+
"reasoning_chars": 1397,
|
| 782 |
+
"result": "fail",
|
| 783 |
+
"source": "SuperGPQA",
|
| 784 |
+
"total_ms": 9232.105709000001,
|
| 785 |
+
"ttft_ms": 950.81525
|
| 786 |
+
},
|
| 787 |
+
{
|
| 788 |
+
"answer_chars": 0,
|
| 789 |
+
"completion_tokens": 32768,
|
| 790 |
+
"finish_reason": "length",
|
| 791 |
+
"id": "aime2025-15",
|
| 792 |
+
"reasoning_chars": 77683,
|
| 793 |
+
"result": "exhausted",
|
| 794 |
+
"source": "AIME2025",
|
| 795 |
+
"total_ms": 483552.26095799997,
|
| 796 |
+
"ttft_ms": 483.954208
|
| 797 |
+
},
|
| 798 |
+
{
|
| 799 |
+
"answer_chars": 735,
|
| 800 |
+
"completion_tokens": 13522,
|
| 801 |
+
"finish_reason": "stop",
|
| 802 |
+
"id": "recMicVBcqy1xM1jq",
|
| 803 |
+
"reasoning_chars": 39565,
|
| 804 |
+
"result": "pass",
|
| 805 |
+
"source": "GPQA Diamond",
|
| 806 |
+
"total_ms": 199108.983458,
|
| 807 |
+
"ttft_ms": 859.7615830000001
|
| 808 |
+
},
|
| 809 |
+
{
|
| 810 |
+
"answer_chars": 223,
|
| 811 |
+
"completion_tokens": 2852,
|
| 812 |
+
"finish_reason": "stop",
|
| 813 |
+
"id": "e780f37a5baa4fe094cd9c157486664d",
|
| 814 |
+
"reasoning_chars": 12613,
|
| 815 |
+
"result": "fail",
|
| 816 |
+
"source": "SuperGPQA",
|
| 817 |
+
"total_ms": 43924.241208,
|
| 818 |
+
"ttft_ms": 681.594042
|
| 819 |
+
},
|
| 820 |
+
{
|
| 821 |
+
"answer_chars": 1510,
|
| 822 |
+
"completion_tokens": 24716,
|
| 823 |
+
"finish_reason": "stop",
|
| 824 |
+
"id": "aime2025-30",
|
| 825 |
+
"reasoning_chars": 54814,
|
| 826 |
+
"result": "pass",
|
| 827 |
+
"source": "AIME2025",
|
| 828 |
+
"total_ms": 355474.51729199995,
|
| 829 |
+
"ttft_ms": 556.4345000000001
|
| 830 |
+
},
|
| 831 |
+
{
|
| 832 |
+
"answer_chars": 10,
|
| 833 |
+
"completion_tokens": 4877,
|
| 834 |
+
"finish_reason": "stop",
|
| 835 |
+
"id": "compsec-076",
|
| 836 |
+
"reasoning_chars": 19590,
|
| 837 |
+
"result": "pass",
|
| 838 |
+
"source": "COMPSEC",
|
| 839 |
+
"total_ms": 74213.201084,
|
| 840 |
+
"ttft_ms": 1007.85225
|
| 841 |
+
},
|
| 842 |
+
{
|
| 843 |
+
"answer_chars": 0,
|
| 844 |
+
"completion_tokens": 32768,
|
| 845 |
+
"finish_reason": "length",
|
| 846 |
+
"id": "compsec-077",
|
| 847 |
+
"reasoning_chars": 46873,
|
| 848 |
+
"result": "exhausted",
|
| 849 |
+
"source": "COMPSEC",
|
| 850 |
+
"total_ms": 365861.869833,
|
| 851 |
+
"ttft_ms": 700.8217500000001
|
| 852 |
+
},
|
| 853 |
+
{
|
| 854 |
+
"answer_chars": 10,
|
| 855 |
+
"completion_tokens": 615,
|
| 856 |
+
"finish_reason": "stop",
|
| 857 |
+
"id": "compsec-078",
|
| 858 |
+
"reasoning_chars": 2226,
|
| 859 |
+
"result": "pass",
|
| 860 |
+
"source": "COMPSEC",
|
| 861 |
+
"total_ms": 9750.739208,
|
| 862 |
+
"ttft_ms": 980.335333
|
| 863 |
+
},
|
| 864 |
+
{
|
| 865 |
+
"answer_chars": 10,
|
| 866 |
+
"completion_tokens": 6272,
|
| 867 |
+
"finish_reason": "stop",
|
| 868 |
+
"id": "compsec-079",
|
| 869 |
+
"reasoning_chars": 27818,
|
| 870 |
+
"result": "pass",
|
| 871 |
+
"source": "COMPSEC",
|
| 872 |
+
"total_ms": 100526.52949999999,
|
| 873 |
+
"ttft_ms": 713.434625
|
| 874 |
+
},
|
| 875 |
+
{
|
| 876 |
+
"answer_chars": 11,
|
| 877 |
+
"completion_tokens": 2466,
|
| 878 |
+
"finish_reason": "stop",
|
| 879 |
+
"id": "compsec-080",
|
| 880 |
+
"reasoning_chars": 10639,
|
| 881 |
+
"result": "pass",
|
| 882 |
+
"source": "COMPSEC",
|
| 883 |
+
"total_ms": 39808.013708,
|
| 884 |
+
"ttft_ms": 666.6535409999999
|
| 885 |
+
},
|
| 886 |
+
{
|
| 887 |
+
"answer_chars": 10,
|
| 888 |
+
"completion_tokens": 9487,
|
| 889 |
+
"finish_reason": "stop",
|
| 890 |
+
"id": "compsec-081",
|
| 891 |
+
"reasoning_chars": 36999,
|
| 892 |
+
"result": "pass",
|
| 893 |
+
"source": "COMPSEC",
|
| 894 |
+
"total_ms": 145307.75808300002,
|
| 895 |
+
"ttft_ms": 734.2491249999999
|
| 896 |
+
},
|
| 897 |
+
{
|
| 898 |
+
"answer_chars": 10,
|
| 899 |
+
"completion_tokens": 13064,
|
| 900 |
+
"finish_reason": "stop",
|
| 901 |
+
"id": "compsec-082",
|
| 902 |
+
"reasoning_chars": 52562,
|
| 903 |
+
"result": "pass",
|
| 904 |
+
"source": "COMPSEC",
|
| 905 |
+
"total_ms": 206453.321625,
|
| 906 |
+
"ttft_ms": 714.126583
|
| 907 |
+
},
|
| 908 |
+
{
|
| 909 |
+
"answer_chars": 10,
|
| 910 |
+
"completion_tokens": 21859,
|
| 911 |
+
"finish_reason": "stop",
|
| 912 |
+
"id": "compsec-083",
|
| 913 |
+
"reasoning_chars": 81210,
|
| 914 |
+
"result": "pass",
|
| 915 |
+
"source": "COMPSEC",
|
| 916 |
+
"total_ms": 344479.036875,
|
| 917 |
+
"ttft_ms": 791.050583
|
| 918 |
+
},
|
| 919 |
+
{
|
| 920 |
+
"answer_chars": 9,
|
| 921 |
+
"completion_tokens": 1148,
|
| 922 |
+
"finish_reason": "stop",
|
| 923 |
+
"id": "compsec-084",
|
| 924 |
+
"reasoning_chars": 3958,
|
| 925 |
+
"result": "pass",
|
| 926 |
+
"source": "COMPSEC",
|
| 927 |
+
"total_ms": 18033.309542000003,
|
| 928 |
+
"ttft_ms": 792.864208
|
| 929 |
+
},
|
| 930 |
+
{
|
| 931 |
+
"answer_chars": 9,
|
| 932 |
+
"completion_tokens": 2696,
|
| 933 |
+
"finish_reason": "stop",
|
| 934 |
+
"id": "compsec-085",
|
| 935 |
+
"reasoning_chars": 11133,
|
| 936 |
+
"result": "pass",
|
| 937 |
+
"source": "COMPSEC",
|
| 938 |
+
"total_ms": 42139.139916,
|
| 939 |
+
"ttft_ms": 607.402583
|
| 940 |
+
},
|
| 941 |
+
{
|
| 942 |
+
"answer_chars": 9,
|
| 943 |
+
"completion_tokens": 1277,
|
| 944 |
+
"finish_reason": "stop",
|
| 945 |
+
"id": "compsec-086",
|
| 946 |
+
"reasoning_chars": 4932,
|
| 947 |
+
"result": "pass",
|
| 948 |
+
"source": "COMPSEC",
|
| 949 |
+
"total_ms": 19653.80075,
|
| 950 |
+
"ttft_ms": 648.174
|
| 951 |
+
},
|
| 952 |
+
{
|
| 953 |
+
"answer_chars": 9,
|
| 954 |
+
"completion_tokens": 9872,
|
| 955 |
+
"finish_reason": "stop",
|
| 956 |
+
"id": "compsec-087",
|
| 957 |
+
"reasoning_chars": 34941,
|
| 958 |
+
"result": "pass",
|
| 959 |
+
"source": "COMPSEC",
|
| 960 |
+
"total_ms": 148723.870834,
|
| 961 |
+
"ttft_ms": 684.0811669999999
|
| 962 |
+
},
|
| 963 |
+
{
|
| 964 |
+
"answer_chars": 10,
|
| 965 |
+
"completion_tokens": 1203,
|
| 966 |
+
"finish_reason": "stop",
|
| 967 |
+
"id": "compsec-088",
|
| 968 |
+
"reasoning_chars": 4654,
|
| 969 |
+
"result": "pass",
|
| 970 |
+
"source": "COMPSEC",
|
| 971 |
+
"total_ms": 18591.996583,
|
| 972 |
+
"ttft_ms": 717.458541
|
| 973 |
+
},
|
| 974 |
+
{
|
| 975 |
+
"answer_chars": 10,
|
| 976 |
+
"completion_tokens": 800,
|
| 977 |
+
"finish_reason": "stop",
|
| 978 |
+
"id": "compsec-089",
|
| 979 |
+
"reasoning_chars": 3084,
|
| 980 |
+
"result": "pass",
|
| 981 |
+
"source": "COMPSEC",
|
| 982 |
+
"total_ms": 12067.343542,
|
| 983 |
+
"ttft_ms": 559.9655839999999
|
| 984 |
+
},
|
| 985 |
+
{
|
| 986 |
+
"answer_chars": 10,
|
| 987 |
+
"completion_tokens": 1802,
|
| 988 |
+
"finish_reason": "stop",
|
| 989 |
+
"id": "compsec-090",
|
| 990 |
+
"reasoning_chars": 6440,
|
| 991 |
+
"result": "pass",
|
| 992 |
+
"source": "COMPSEC",
|
| 993 |
+
"total_ms": 25817.421792,
|
| 994 |
+
"ttft_ms": 632.1675839999999
|
| 995 |
+
},
|
| 996 |
+
{
|
| 997 |
+
"answer_chars": 9,
|
| 998 |
+
"completion_tokens": 434,
|
| 999 |
+
"finish_reason": "stop",
|
| 1000 |
+
"id": "compsec-091",
|
| 1001 |
+
"reasoning_chars": 1660,
|
| 1002 |
+
"result": "pass",
|
| 1003 |
+
"source": "COMPSEC",
|
| 1004 |
+
"total_ms": 6866.947375,
|
| 1005 |
+
"ttft_ms": 546.41725
|
| 1006 |
+
},
|
| 1007 |
+
{
|
| 1008 |
+
"answer_chars": 10,
|
| 1009 |
+
"completion_tokens": 4591,
|
| 1010 |
+
"finish_reason": "stop",
|
| 1011 |
+
"id": "compsec-092",
|
| 1012 |
+
"reasoning_chars": 18810,
|
| 1013 |
+
"result": "pass",
|
| 1014 |
+
"source": "COMPSEC",
|
| 1015 |
+
"total_ms": 71831.03016699999,
|
| 1016 |
+
"ttft_ms": 625.790333
|
| 1017 |
+
}
|
| 1018 |
+
],
|
| 1019 |
+
"config": {
|
| 1020 |
+
"max_tokens": 32768,
|
| 1021 |
+
"seed": 42,
|
| 1022 |
+
"temperature": 0.0
|
| 1023 |
+
},
|
| 1024 |
+
"exhausted": 7,
|
| 1025 |
+
"failed_answered": 4,
|
| 1026 |
+
"model": "fit-192k",
|
| 1027 |
+
"passed": 81
|
| 1028 |
+
}
|
bench/fit-256k/config-public.txt
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
run: fit-256k
|
| 2 |
+
recorded: 2026-08-16T03:15 CEST RETROACTIVELY — see caveat below
|
| 3 |
+
source: bin/bench-fits.sh (our tooling repo; file last changed in ab44c65, i.e.
|
| 4 |
+
unchanged across all three fit legs) — the command below is
|
| 5 |
+
reconstructed from that script, which is version controlled. This is
|
| 6 |
+
the authoritative record. The serve log does NOT contain the config —
|
| 7 |
+
verified 2026-08-16: no type_k/type_v, no flash-attn, no build
|
| 8 |
+
version at this verbosity.
|
| 9 |
+
serve_cmd: ~/llama.cpp/build-mtp/bin/llama-server -m ~/models/qwen38-27b-fit-256k-q4kv.gguf -md ~/models/Qwen3.8-27B-MTP-ONLY-Q8_0.gguf --spec-draft-n-max 3 -c 262144 -ctk q4_0 -ctv q4_0 -fa on -ngl 99 -ngld 99 --port 8083 --host 0.0.0.0
|
| 10 |
+
client: bs4 qa-eval --base-url http://<redacted>:8083/v1 --model fit-256k
|
| 11 |
+
sampler: temperature 0.0, seed 42, max_tokens 32768 (bs4, sent in request body)
|
| 12 |
+
--- desktop side (captured 2026-08-16 03:15, not at run time) ---
|
| 13 |
+
llama.cpp: 22b8e31
|
| 14 |
+
model: 16812197504 bytes ~/models/qwen38-27b-fit-256k-q4kv.gguf
|
| 15 |
+
gpu: NVIDIA RTX PRO 6000 Blackwell Workstation Edition, 250.00 W
|
| 16 |
+
driver_ver: 610.57.04
|
| 17 |
+
--- caveat ---
|
| 18 |
+
Written after the fact, same as the fit-128k / fit-192k records. Trustworthy
|
| 19 |
+
because the driver script is in git and unchanged since the runs; NOT equivalent
|
| 20 |
+
to a config captured before the run. Note the context differs per fit leg
|
| 21 |
+
(131072 / 196608 / 262144) — that is the variable the fit legs exist to test,
|
| 22 |
+
and it is NOT the same as the flat 131072 used by the 2026-08-16 baseline legs.
|
| 23 |
+
|
| 24 |
+
--- publication note ---
|
| 25 |
+
Scrubbed for publication by sanitize-config.py: hostnames, internal
|
| 26 |
+
repo paths and home paths removed, GPU index omitted (immaterial —
|
| 27 |
+
one card, one power cap), chat template omitted for size. Everything
|
| 28 |
+
that affects the measurement is kept verbatim.
|
bench/fit-256k/qa-eval-1786841317.csv
ADDED
|
@@ -0,0 +1,93 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
id,source,domain,result,reasoning_chars,answer_chars,completion_tokens,finish_reason,ttft_ms,total_ms
|
| 2 |
+
recNu3MXkvWUzHZr9,GPQA Diamond,Physics,pass,5918,447,2584,stop,427.9,32783.8
|
| 3 |
+
001b51d76b4d422988f2c11f104a2c6c,SuperGPQA,Agronomy,pass,2275,9,515,stop,433.1,7251.8
|
| 4 |
+
aime2025-01,AIME2025,Number Theory,pass,1433,313,724,stop,450.2,9103.5
|
| 5 |
+
recoiTJPGUmzAkief,GPQA Diamond,Physics,pass,25896,513,5866,stop,605.0,91368.0
|
| 6 |
+
b7e20eac98764fb0bf30e8366d951daa,SuperGPQA,Engineering,pass,9569,564,2450,stop,546.2,34419.9
|
| 7 |
+
aime2025-16,AIME2025,Geometry,pass,2322,11,1017,stop,479.4,13231.1
|
| 8 |
+
rec4UqStf9WUVif1f,GPQA Diamond,Physics,pass,2958,236,1436,stop,526.2,18388.5
|
| 9 |
+
4a1d1780a93f4093b6fb7d3c314cbea8,SuperGPQA,Engineering,pass,2686,121,582,stop,448.2,8713.2
|
| 10 |
+
aime2025-02,AIME2025,Geometry,pass,59852,1521,25339,stop,804.7,344975.8
|
| 11 |
+
recgI6tUQ7RLJRWGx,GPQA Diamond,Physics,pass,2735,447,1130,stop,728.3,15628.3
|
| 12 |
+
6082513c8dba4ec68aa68f1bf5854d09,SuperGPQA,Law,pass,6467,9,1329,stop,517.8,19068.8
|
| 13 |
+
aime2025-03,AIME2025,Combinatorics,pass,1973,550,1048,stop,460.2,12975.8
|
| 14 |
+
recDytVnNYZe2HuUU,GPQA Diamond (modified),Physics,pass,3105,481,1638,stop,453.7,21416.3
|
| 15 |
+
bebf1ed45ae14ad7b4f205f3909cb58a,SuperGPQA,Literature and Arts,pass,971,9,236,stop,517.5,3711.2
|
| 16 |
+
aime2025-18,AIME2025,Combinatorics,pass,12226,1184,4410,stop,559.8,63913.5
|
| 17 |
+
recNFJjE5PPTqVJGv,GPQA Diamond,Chemistry,pass,1789,497,999,stop,524.2,12477.9
|
| 18 |
+
7ca71b86327744b78e93185a45bc5cef,SuperGPQA,Medicine,pass,19756,9,4813,stop,611.7,68755.9
|
| 19 |
+
aime2025-04,AIME2025,Algebra,pass,2768,475,1437,stop,519.2,18191.2
|
| 20 |
+
rec2UlKqC6RFHdcro,GPQA Diamond,Physics,pass,14222,554,5025,stop,523.9,70473.4
|
| 21 |
+
d44b94f7749345a39a65f6312bda8764,SuperGPQA,Engineering,pass,9741,280,2815,stop,523.5,44109.1
|
| 22 |
+
aime2025-19,AIME2025,Algebra,pass,5097,877,3115,stop,524.4,38191.3
|
| 23 |
+
recv7GsQg3f0fvB1f,GPQA Diamond,Chemistry,pass,45028,449,10584,stop,557.4,157097.7
|
| 24 |
+
febe406f44d74a40b50bb5b7c69d5dc1,SuperGPQA,Sociology,fail,19449,9,4315,stop,651.6,55830.9
|
| 25 |
+
aime2025-05,AIME2025,"Combinatorics, Number Theory",pass,15671,1167,7106,stop,498.5,90739.2
|
| 26 |
+
recrHBEJJoDTV05JR,GPQA Diamond,Chemistry,pass,62406,632,19556,stop,608.0,267669.5
|
| 27 |
+
31950dc80ded400a9181f50626d1f75c,SuperGPQA,Science,pass,1502,9,473,stop,686.4,7179.4
|
| 28 |
+
aime2025-06,AIME2025,Geometry,pass,4969,767,2042,stop,492.3,27497.9
|
| 29 |
+
recb80OwMgNnceA9t,GPQA Diamond,Chemistry,exhausted,93049,0,32768,length,527.2,472650.7
|
| 30 |
+
0f14cd17be174618af6d60227e7dca9f,SuperGPQA,Engineering,pass,7264,994,2809,stop,1145.9,40065.7
|
| 31 |
+
aime2025-21,AIME2025,"Algebra, Geometry",pass,11917,1157,4462,stop,915.5,60278.8
|
| 32 |
+
recA1i5ZAh0Uzclxp,GPQA Diamond,Chemistry,pass,61311,852,19614,stop,559.7,283812.4
|
| 33 |
+
cef9bcc087434cc2b4e354a9baef55eb,SuperGPQA,Engineering,pass,2173,205,1051,stop,847.4,13570.0
|
| 34 |
+
aime2025-07,AIME2025,Combinatorics,pass,27391,1508,9098,stop,519.7,131652.8
|
| 35 |
+
recqGD3fxPCI59vPQ,GPQA Diamond,Physics,pass,21454,594,6658,stop,651.4,95350.8
|
| 36 |
+
9f93aa2cfdb547b5b3a4623f80f7fff6,SuperGPQA,Engineering,pass,875,180,290,stop,577.6,4384.0
|
| 37 |
+
aime2025-22,AIME2025,Number Theory,pass,6979,746,2827,stop,516.0,37019.6
|
| 38 |
+
rechKl68Uc6H7vU0N,GPQA Diamond,Chemistry,exhausted,102204,0,32768,length,713.4,466687.1
|
| 39 |
+
97ad69dda7b2462c98638b79e78aea0b,SuperGPQA,Medicine,pass,2135,9,521,stop,958.1,7781.6
|
| 40 |
+
aime2025-08,AIME2025,Algebra,pass,7375,826,3384,stop,517.8,42264.3
|
| 41 |
+
rec1zl5LvaatzGhFt,GPQA Diamond,Physics,pass,4743,406,1711,stop,707.9,23015.5
|
| 42 |
+
e78e4e539d6f4e379ac140d923d7b1be,SuperGPQA,Military Science,fail,11068,9,2274,stop,505.4,32477.5
|
| 43 |
+
aime2025-09,AIME2025,Algebra,pass,26676,1289,14365,stop,513.5,179593.6
|
| 44 |
+
recTs7qzfJs6kfLUK,GPQA Diamond,Biology,pass,16698,9,5198,stop,928.8,74434.4
|
| 45 |
+
8483667a25e74fdfa3188de4ea734f03,SuperGPQA,Science,fail,93624,628,26082,stop,568.7,379261.8
|
| 46 |
+
aime2025-24,AIME2025,Algebra,pass,13629,1294,5755,stop,763.3,79076.7
|
| 47 |
+
rec32C1ZEapBnCC0E,GPQA Diamond,Physics,pass,4316,261,1629,stop,568.4,22963.7
|
| 48 |
+
e5ed76ef98144f06843125daf1bccd35,SuperGPQA,Science,pass,2555,9,1265,stop,583.9,15737.6
|
| 49 |
+
aime2025-10,AIME2025,Combinatorics,pass,64156,1913,20887,stop,661.9,303869.7
|
| 50 |
+
recZWeueB7lSPR6wN,GPQA Diamond,Chemistry,exhausted,112650,0,32768,length,783.8,493554.8
|
| 51 |
+
fd7924876c4845cd83d95d61dfa0b236,SuperGPQA,Sociology,pass,11680,9,2329,stop,828.1,33429.7
|
| 52 |
+
aime2025-25,AIME2025,Combinatorics,pass,8756,1516,3541,stop,527.5,46446.8
|
| 53 |
+
recVvpD8miVjmmyfe,GPQA Diamond,Biology,exhausted,73787,0,32768,length,516.1,469471.1
|
| 54 |
+
6bfe7d19299d4b3184636e1f51694306,SuperGPQA,Agronomy,pass,20763,555,6152,stop,1027.0,84060.7
|
| 55 |
+
aime2025-26,AIME2025,Combinatorics,pass,23067,1152,7428,stop,533.0,105592.6
|
| 56 |
+
recAAJoHMW45Lv5je,GPQA Diamond,Chemistry,pass,45070,1066,14420,stop,609.2,194508.6
|
| 57 |
+
e1825d70c5844c22933087eafa89e39c,SuperGPQA,Engineering,pass,1670,462,1084,stop,802.4,13082.0
|
| 58 |
+
aime2025-12,AIME2025,Algebra,pass,38449,1444,16627,stop,514.8,220773.4
|
| 59 |
+
reckEnrOPFT9Ru7tW,GPQA Diamond,Chemistry,pass,40672,608,12530,stop,715.2,181802.5
|
| 60 |
+
ab430ac3f18e4e02a2cb3f35498c6b30,SuperGPQA,Engineering,pass,10963,937,4505,stop,724.4,62796.4
|
| 61 |
+
aime2025-27,AIME2025,Geometry,pass,24548,1192,10166,stop,626.0,137678.7
|
| 62 |
+
rec8nshandHARTkrg,GPQA Diamond,Chemistry,pass,100630,9,30451,stop,922.7,426070.1
|
| 63 |
+
e8c5da5ca40647158b0c91dd695c6243,SuperGPQA,Science,pass,5960,517,2358,stop,1053.6,30951.2
|
| 64 |
+
aime2025-13,AIME2025,Combinatorics,pass,96625,1999,27528,stop,535.4,412246.3
|
| 65 |
+
recFaL6j8UMhutXrc,GPQA Diamond,Chemistry,pass,58285,1129,18679,stop,1010.2,254496.0
|
| 66 |
+
05efdc6fb2404ddc8dd5729bb68c74e5,SuperGPQA,Science,pass,1672,458,1204,stop,696.4,14794.5
|
| 67 |
+
aime2025-28,AIME2025,Number Theory,exhausted,55067,0,32768,length,503.0,416457.2
|
| 68 |
+
reczQ4I0VpENdMtIj,GPQA Diamond,Biology,pass,30415,270,6515,stop,845.9,94152.3
|
| 69 |
+
ba52e06cbe1a4310a77a7d12cd1db943,SuperGPQA,Science,pass,15996,264,5853,stop,852.6,76672.6
|
| 70 |
+
aime2025-29,AIME2025,Geometry,pass,54602,1986,24008,stop,604.8,320981.6
|
| 71 |
+
recWxGU8Q4YReJ1tb,GPQA Diamond,Chemistry,exhausted,100990,0,32768,length,1155.0,469972.3
|
| 72 |
+
591a77df21324272914be82ac6583399,SuperGPQA,Science,fail,1615,470,851,stop,1026.0,11110.7
|
| 73 |
+
aime2025-15,AIME2025,Number Theory,exhausted,80520,0,32768,length,482.0,487762.2
|
| 74 |
+
recMicVBcqy1xM1jq,GPQA Diamond,Physics,pass,19842,798,6382,stop,892.1,87630.8
|
| 75 |
+
e780f37a5baa4fe094cd9c157486664d,SuperGPQA,Sociology,fail,20768,318,4862,stop,601.4,70783.0
|
| 76 |
+
aime2025-30,AIME2025,Algebra,pass,76334,1912,28843,stop,634.2,408931.2
|
| 77 |
+
compsec-076,COMPSEC,FreeBSD / librpcsec_gss,pass,12435,10,3143,stop,999.8,45112.4
|
| 78 |
+
compsec-077,COMPSEC,GNU Inetutils telnetd,pass,18144,10,5013,stop,774.7,70577.0
|
| 79 |
+
compsec-078,COMPSEC,Botan,pass,5276,10,1408,stop,770.0,20359.1
|
| 80 |
+
compsec-079,COMPSEC,Botan,pass,42773,10,9990,stop,1039.9,148875.1
|
| 81 |
+
compsec-080,COMPSEC,Botan,pass,15308,9,3439,stop,758.0,52848.9
|
| 82 |
+
compsec-081,COMPSEC,uds-c,pass,37476,10,9295,stop,680.1,137047.8
|
| 83 |
+
compsec-082,COMPSEC,Firebird,pass,54400,9,13510,stop,839.5,203265.3
|
| 84 |
+
compsec-083,COMPSEC,Firebird,pass,43777,10,11329,stop,718.8,167394.5
|
| 85 |
+
compsec-084,COMPSEC,PHP,pass,4067,9,1134,stop,746.1,16992.7
|
| 86 |
+
compsec-085,COMPSEC,PHP PDO Firebird,pass,4972,9,1254,stop,637.9,18737.4
|
| 87 |
+
compsec-086,COMPSEC,libexpat,pass,7287,9,1927,stop,650.5,29033.3
|
| 88 |
+
compsec-087,COMPSEC,Mbed TLS,pass,36801,9,10374,stop,701.9,149365.5
|
| 89 |
+
compsec-088,COMPSEC,Mbed TLS,pass,6651,10,1611,stop,712.0,23745.9
|
| 90 |
+
compsec-089,COMPSEC,Mbed TLS,pass,2230,10,617,stop,559.1,8626.2
|
| 91 |
+
compsec-090,COMPSEC,Linux kernel,pass,24514,10,7180,stop,605.9,96036.1
|
| 92 |
+
compsec-091,COMPSEC,Linux kernel USB gadget storage,pass,3954,9,962,stop,630.9,15032.6
|
| 93 |
+
compsec-092,COMPSEC,Linux kernel AppArmor,pass,17602,10,4390,stop,640.5,64935.5
|
bench/fit-256k/qa-eval-1786841317.json
ADDED
|
@@ -0,0 +1,1028 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"accuracy": 0.8695652173913043,
|
| 3 |
+
"bench_version": "0.1.0",
|
| 4 |
+
"cases": 92,
|
| 5 |
+
"cases_detail": [
|
| 6 |
+
{
|
| 7 |
+
"answer_chars": 447,
|
| 8 |
+
"completion_tokens": 2584,
|
| 9 |
+
"finish_reason": "stop",
|
| 10 |
+
"id": "recNu3MXkvWUzHZr9",
|
| 11 |
+
"reasoning_chars": 5918,
|
| 12 |
+
"result": "pass",
|
| 13 |
+
"source": "GPQA Diamond",
|
| 14 |
+
"total_ms": 32783.790083,
|
| 15 |
+
"ttft_ms": 427.85825
|
| 16 |
+
},
|
| 17 |
+
{
|
| 18 |
+
"answer_chars": 9,
|
| 19 |
+
"completion_tokens": 515,
|
| 20 |
+
"finish_reason": "stop",
|
| 21 |
+
"id": "001b51d76b4d422988f2c11f104a2c6c",
|
| 22 |
+
"reasoning_chars": 2275,
|
| 23 |
+
"result": "pass",
|
| 24 |
+
"source": "SuperGPQA",
|
| 25 |
+
"total_ms": 7251.8349579999995,
|
| 26 |
+
"ttft_ms": 433.050375
|
| 27 |
+
},
|
| 28 |
+
{
|
| 29 |
+
"answer_chars": 313,
|
| 30 |
+
"completion_tokens": 724,
|
| 31 |
+
"finish_reason": "stop",
|
| 32 |
+
"id": "aime2025-01",
|
| 33 |
+
"reasoning_chars": 1433,
|
| 34 |
+
"result": "pass",
|
| 35 |
+
"source": "AIME2025",
|
| 36 |
+
"total_ms": 9103.529083,
|
| 37 |
+
"ttft_ms": 450.168667
|
| 38 |
+
},
|
| 39 |
+
{
|
| 40 |
+
"answer_chars": 513,
|
| 41 |
+
"completion_tokens": 5866,
|
| 42 |
+
"finish_reason": "stop",
|
| 43 |
+
"id": "recoiTJPGUmzAkief",
|
| 44 |
+
"reasoning_chars": 25896,
|
| 45 |
+
"result": "pass",
|
| 46 |
+
"source": "GPQA Diamond",
|
| 47 |
+
"total_ms": 91367.957375,
|
| 48 |
+
"ttft_ms": 605.0009160000001
|
| 49 |
+
},
|
| 50 |
+
{
|
| 51 |
+
"answer_chars": 564,
|
| 52 |
+
"completion_tokens": 2450,
|
| 53 |
+
"finish_reason": "stop",
|
| 54 |
+
"id": "b7e20eac98764fb0bf30e8366d951daa",
|
| 55 |
+
"reasoning_chars": 9569,
|
| 56 |
+
"result": "pass",
|
| 57 |
+
"source": "SuperGPQA",
|
| 58 |
+
"total_ms": 34419.906208,
|
| 59 |
+
"ttft_ms": 546.1648329999999
|
| 60 |
+
},
|
| 61 |
+
{
|
| 62 |
+
"answer_chars": 11,
|
| 63 |
+
"completion_tokens": 1017,
|
| 64 |
+
"finish_reason": "stop",
|
| 65 |
+
"id": "aime2025-16",
|
| 66 |
+
"reasoning_chars": 2322,
|
| 67 |
+
"result": "pass",
|
| 68 |
+
"source": "AIME2025",
|
| 69 |
+
"total_ms": 13231.10475,
|
| 70 |
+
"ttft_ms": 479.37304200000005
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"answer_chars": 236,
|
| 74 |
+
"completion_tokens": 1436,
|
| 75 |
+
"finish_reason": "stop",
|
| 76 |
+
"id": "rec4UqStf9WUVif1f",
|
| 77 |
+
"reasoning_chars": 2958,
|
| 78 |
+
"result": "pass",
|
| 79 |
+
"source": "GPQA Diamond",
|
| 80 |
+
"total_ms": 18388.531208,
|
| 81 |
+
"ttft_ms": 526.239166
|
| 82 |
+
},
|
| 83 |
+
{
|
| 84 |
+
"answer_chars": 121,
|
| 85 |
+
"completion_tokens": 582,
|
| 86 |
+
"finish_reason": "stop",
|
| 87 |
+
"id": "4a1d1780a93f4093b6fb7d3c314cbea8",
|
| 88 |
+
"reasoning_chars": 2686,
|
| 89 |
+
"result": "pass",
|
| 90 |
+
"source": "SuperGPQA",
|
| 91 |
+
"total_ms": 8713.160249999999,
|
| 92 |
+
"ttft_ms": 448.203584
|
| 93 |
+
},
|
| 94 |
+
{
|
| 95 |
+
"answer_chars": 1521,
|
| 96 |
+
"completion_tokens": 25339,
|
| 97 |
+
"finish_reason": "stop",
|
| 98 |
+
"id": "aime2025-02",
|
| 99 |
+
"reasoning_chars": 59852,
|
| 100 |
+
"result": "pass",
|
| 101 |
+
"source": "AIME2025",
|
| 102 |
+
"total_ms": 344975.794875,
|
| 103 |
+
"ttft_ms": 804.663625
|
| 104 |
+
},
|
| 105 |
+
{
|
| 106 |
+
"answer_chars": 447,
|
| 107 |
+
"completion_tokens": 1130,
|
| 108 |
+
"finish_reason": "stop",
|
| 109 |
+
"id": "recgI6tUQ7RLJRWGx",
|
| 110 |
+
"reasoning_chars": 2735,
|
| 111 |
+
"result": "pass",
|
| 112 |
+
"source": "GPQA Diamond",
|
| 113 |
+
"total_ms": 15628.318458000002,
|
| 114 |
+
"ttft_ms": 728.2525410000001
|
| 115 |
+
},
|
| 116 |
+
{
|
| 117 |
+
"answer_chars": 9,
|
| 118 |
+
"completion_tokens": 1329,
|
| 119 |
+
"finish_reason": "stop",
|
| 120 |
+
"id": "6082513c8dba4ec68aa68f1bf5854d09",
|
| 121 |
+
"reasoning_chars": 6467,
|
| 122 |
+
"result": "pass",
|
| 123 |
+
"source": "SuperGPQA",
|
| 124 |
+
"total_ms": 19068.834666000002,
|
| 125 |
+
"ttft_ms": 517.797583
|
| 126 |
+
},
|
| 127 |
+
{
|
| 128 |
+
"answer_chars": 550,
|
| 129 |
+
"completion_tokens": 1048,
|
| 130 |
+
"finish_reason": "stop",
|
| 131 |
+
"id": "aime2025-03",
|
| 132 |
+
"reasoning_chars": 1973,
|
| 133 |
+
"result": "pass",
|
| 134 |
+
"source": "AIME2025",
|
| 135 |
+
"total_ms": 12975.841292000001,
|
| 136 |
+
"ttft_ms": 460.232459
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"answer_chars": 481,
|
| 140 |
+
"completion_tokens": 1638,
|
| 141 |
+
"finish_reason": "stop",
|
| 142 |
+
"id": "recDytVnNYZe2HuUU",
|
| 143 |
+
"reasoning_chars": 3105,
|
| 144 |
+
"result": "pass",
|
| 145 |
+
"source": "GPQA Diamond (modified)",
|
| 146 |
+
"total_ms": 21416.313124999997,
|
| 147 |
+
"ttft_ms": 453.71579099999997
|
| 148 |
+
},
|
| 149 |
+
{
|
| 150 |
+
"answer_chars": 9,
|
| 151 |
+
"completion_tokens": 236,
|
| 152 |
+
"finish_reason": "stop",
|
| 153 |
+
"id": "bebf1ed45ae14ad7b4f205f3909cb58a",
|
| 154 |
+
"reasoning_chars": 971,
|
| 155 |
+
"result": "pass",
|
| 156 |
+
"source": "SuperGPQA",
|
| 157 |
+
"total_ms": 3711.179917,
|
| 158 |
+
"ttft_ms": 517.5102499999999
|
| 159 |
+
},
|
| 160 |
+
{
|
| 161 |
+
"answer_chars": 1184,
|
| 162 |
+
"completion_tokens": 4410,
|
| 163 |
+
"finish_reason": "stop",
|
| 164 |
+
"id": "aime2025-18",
|
| 165 |
+
"reasoning_chars": 12226,
|
| 166 |
+
"result": "pass",
|
| 167 |
+
"source": "AIME2025",
|
| 168 |
+
"total_ms": 63913.514084,
|
| 169 |
+
"ttft_ms": 559.792334
|
| 170 |
+
},
|
| 171 |
+
{
|
| 172 |
+
"answer_chars": 497,
|
| 173 |
+
"completion_tokens": 999,
|
| 174 |
+
"finish_reason": "stop",
|
| 175 |
+
"id": "recNFJjE5PPTqVJGv",
|
| 176 |
+
"reasoning_chars": 1789,
|
| 177 |
+
"result": "pass",
|
| 178 |
+
"source": "GPQA Diamond",
|
| 179 |
+
"total_ms": 12477.851333,
|
| 180 |
+
"ttft_ms": 524.238458
|
| 181 |
+
},
|
| 182 |
+
{
|
| 183 |
+
"answer_chars": 9,
|
| 184 |
+
"completion_tokens": 4813,
|
| 185 |
+
"finish_reason": "stop",
|
| 186 |
+
"id": "7ca71b86327744b78e93185a45bc5cef",
|
| 187 |
+
"reasoning_chars": 19756,
|
| 188 |
+
"result": "pass",
|
| 189 |
+
"source": "SuperGPQA",
|
| 190 |
+
"total_ms": 68755.92287499999,
|
| 191 |
+
"ttft_ms": 611.6530409999999
|
| 192 |
+
},
|
| 193 |
+
{
|
| 194 |
+
"answer_chars": 475,
|
| 195 |
+
"completion_tokens": 1437,
|
| 196 |
+
"finish_reason": "stop",
|
| 197 |
+
"id": "aime2025-04",
|
| 198 |
+
"reasoning_chars": 2768,
|
| 199 |
+
"result": "pass",
|
| 200 |
+
"source": "AIME2025",
|
| 201 |
+
"total_ms": 18191.219209,
|
| 202 |
+
"ttft_ms": 519.2407919999999
|
| 203 |
+
},
|
| 204 |
+
{
|
| 205 |
+
"answer_chars": 554,
|
| 206 |
+
"completion_tokens": 5025,
|
| 207 |
+
"finish_reason": "stop",
|
| 208 |
+
"id": "rec2UlKqC6RFHdcro",
|
| 209 |
+
"reasoning_chars": 14222,
|
| 210 |
+
"result": "pass",
|
| 211 |
+
"source": "GPQA Diamond",
|
| 212 |
+
"total_ms": 70473.393167,
|
| 213 |
+
"ttft_ms": 523.883333
|
| 214 |
+
},
|
| 215 |
+
{
|
| 216 |
+
"answer_chars": 280,
|
| 217 |
+
"completion_tokens": 2815,
|
| 218 |
+
"finish_reason": "stop",
|
| 219 |
+
"id": "d44b94f7749345a39a65f6312bda8764",
|
| 220 |
+
"reasoning_chars": 9741,
|
| 221 |
+
"result": "pass",
|
| 222 |
+
"source": "SuperGPQA",
|
| 223 |
+
"total_ms": 44109.07804099999,
|
| 224 |
+
"ttft_ms": 523.50125
|
| 225 |
+
},
|
| 226 |
+
{
|
| 227 |
+
"answer_chars": 877,
|
| 228 |
+
"completion_tokens": 3115,
|
| 229 |
+
"finish_reason": "stop",
|
| 230 |
+
"id": "aime2025-19",
|
| 231 |
+
"reasoning_chars": 5097,
|
| 232 |
+
"result": "pass",
|
| 233 |
+
"source": "AIME2025",
|
| 234 |
+
"total_ms": 38191.326833,
|
| 235 |
+
"ttft_ms": 524.416458
|
| 236 |
+
},
|
| 237 |
+
{
|
| 238 |
+
"answer_chars": 449,
|
| 239 |
+
"completion_tokens": 10584,
|
| 240 |
+
"finish_reason": "stop",
|
| 241 |
+
"id": "recv7GsQg3f0fvB1f",
|
| 242 |
+
"reasoning_chars": 45028,
|
| 243 |
+
"result": "pass",
|
| 244 |
+
"source": "GPQA Diamond",
|
| 245 |
+
"total_ms": 157097.680584,
|
| 246 |
+
"ttft_ms": 557.36275
|
| 247 |
+
},
|
| 248 |
+
{
|
| 249 |
+
"answer_chars": 9,
|
| 250 |
+
"completion_tokens": 4315,
|
| 251 |
+
"finish_reason": "stop",
|
| 252 |
+
"id": "febe406f44d74a40b50bb5b7c69d5dc1",
|
| 253 |
+
"reasoning_chars": 19449,
|
| 254 |
+
"result": "fail",
|
| 255 |
+
"source": "SuperGPQA",
|
| 256 |
+
"total_ms": 55830.868084,
|
| 257 |
+
"ttft_ms": 651.646292
|
| 258 |
+
},
|
| 259 |
+
{
|
| 260 |
+
"answer_chars": 1167,
|
| 261 |
+
"completion_tokens": 7106,
|
| 262 |
+
"finish_reason": "stop",
|
| 263 |
+
"id": "aime2025-05",
|
| 264 |
+
"reasoning_chars": 15671,
|
| 265 |
+
"result": "pass",
|
| 266 |
+
"source": "AIME2025",
|
| 267 |
+
"total_ms": 90739.24625,
|
| 268 |
+
"ttft_ms": 498.489958
|
| 269 |
+
},
|
| 270 |
+
{
|
| 271 |
+
"answer_chars": 632,
|
| 272 |
+
"completion_tokens": 19556,
|
| 273 |
+
"finish_reason": "stop",
|
| 274 |
+
"id": "recrHBEJJoDTV05JR",
|
| 275 |
+
"reasoning_chars": 62406,
|
| 276 |
+
"result": "pass",
|
| 277 |
+
"source": "GPQA Diamond",
|
| 278 |
+
"total_ms": 267669.512625,
|
| 279 |
+
"ttft_ms": 607.960791
|
| 280 |
+
},
|
| 281 |
+
{
|
| 282 |
+
"answer_chars": 9,
|
| 283 |
+
"completion_tokens": 473,
|
| 284 |
+
"finish_reason": "stop",
|
| 285 |
+
"id": "31950dc80ded400a9181f50626d1f75c",
|
| 286 |
+
"reasoning_chars": 1502,
|
| 287 |
+
"result": "pass",
|
| 288 |
+
"source": "SuperGPQA",
|
| 289 |
+
"total_ms": 7179.391125,
|
| 290 |
+
"ttft_ms": 686.416917
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"answer_chars": 767,
|
| 294 |
+
"completion_tokens": 2042,
|
| 295 |
+
"finish_reason": "stop",
|
| 296 |
+
"id": "aime2025-06",
|
| 297 |
+
"reasoning_chars": 4969,
|
| 298 |
+
"result": "pass",
|
| 299 |
+
"source": "AIME2025",
|
| 300 |
+
"total_ms": 27497.851167,
|
| 301 |
+
"ttft_ms": 492.310542
|
| 302 |
+
},
|
| 303 |
+
{
|
| 304 |
+
"answer_chars": 0,
|
| 305 |
+
"completion_tokens": 32768,
|
| 306 |
+
"finish_reason": "length",
|
| 307 |
+
"id": "recb80OwMgNnceA9t",
|
| 308 |
+
"reasoning_chars": 93049,
|
| 309 |
+
"result": "exhausted",
|
| 310 |
+
"source": "GPQA Diamond",
|
| 311 |
+
"total_ms": 472650.679125,
|
| 312 |
+
"ttft_ms": 527.1583330000001
|
| 313 |
+
},
|
| 314 |
+
{
|
| 315 |
+
"answer_chars": 994,
|
| 316 |
+
"completion_tokens": 2809,
|
| 317 |
+
"finish_reason": "stop",
|
| 318 |
+
"id": "0f14cd17be174618af6d60227e7dca9f",
|
| 319 |
+
"reasoning_chars": 7264,
|
| 320 |
+
"result": "pass",
|
| 321 |
+
"source": "SuperGPQA",
|
| 322 |
+
"total_ms": 40065.691583,
|
| 323 |
+
"ttft_ms": 1145.8605420000001
|
| 324 |
+
},
|
| 325 |
+
{
|
| 326 |
+
"answer_chars": 1157,
|
| 327 |
+
"completion_tokens": 4462,
|
| 328 |
+
"finish_reason": "stop",
|
| 329 |
+
"id": "aime2025-21",
|
| 330 |
+
"reasoning_chars": 11917,
|
| 331 |
+
"result": "pass",
|
| 332 |
+
"source": "AIME2025",
|
| 333 |
+
"total_ms": 60278.815917,
|
| 334 |
+
"ttft_ms": 915.503875
|
| 335 |
+
},
|
| 336 |
+
{
|
| 337 |
+
"answer_chars": 852,
|
| 338 |
+
"completion_tokens": 19614,
|
| 339 |
+
"finish_reason": "stop",
|
| 340 |
+
"id": "recA1i5ZAh0Uzclxp",
|
| 341 |
+
"reasoning_chars": 61311,
|
| 342 |
+
"result": "pass",
|
| 343 |
+
"source": "GPQA Diamond",
|
| 344 |
+
"total_ms": 283812.398125,
|
| 345 |
+
"ttft_ms": 559.6838750000001
|
| 346 |
+
},
|
| 347 |
+
{
|
| 348 |
+
"answer_chars": 205,
|
| 349 |
+
"completion_tokens": 1051,
|
| 350 |
+
"finish_reason": "stop",
|
| 351 |
+
"id": "cef9bcc087434cc2b4e354a9baef55eb",
|
| 352 |
+
"reasoning_chars": 2173,
|
| 353 |
+
"result": "pass",
|
| 354 |
+
"source": "SuperGPQA",
|
| 355 |
+
"total_ms": 13569.998249999999,
|
| 356 |
+
"ttft_ms": 847.419667
|
| 357 |
+
},
|
| 358 |
+
{
|
| 359 |
+
"answer_chars": 1508,
|
| 360 |
+
"completion_tokens": 9098,
|
| 361 |
+
"finish_reason": "stop",
|
| 362 |
+
"id": "aime2025-07",
|
| 363 |
+
"reasoning_chars": 27391,
|
| 364 |
+
"result": "pass",
|
| 365 |
+
"source": "AIME2025",
|
| 366 |
+
"total_ms": 131652.772792,
|
| 367 |
+
"ttft_ms": 519.6575839999999
|
| 368 |
+
},
|
| 369 |
+
{
|
| 370 |
+
"answer_chars": 594,
|
| 371 |
+
"completion_tokens": 6658,
|
| 372 |
+
"finish_reason": "stop",
|
| 373 |
+
"id": "recqGD3fxPCI59vPQ",
|
| 374 |
+
"reasoning_chars": 21454,
|
| 375 |
+
"result": "pass",
|
| 376 |
+
"source": "GPQA Diamond",
|
| 377 |
+
"total_ms": 95350.777208,
|
| 378 |
+
"ttft_ms": 651.443
|
| 379 |
+
},
|
| 380 |
+
{
|
| 381 |
+
"answer_chars": 180,
|
| 382 |
+
"completion_tokens": 290,
|
| 383 |
+
"finish_reason": "stop",
|
| 384 |
+
"id": "9f93aa2cfdb547b5b3a4623f80f7fff6",
|
| 385 |
+
"reasoning_chars": 875,
|
| 386 |
+
"result": "pass",
|
| 387 |
+
"source": "SuperGPQA",
|
| 388 |
+
"total_ms": 4384.0284169999995,
|
| 389 |
+
"ttft_ms": 577.5555
|
| 390 |
+
},
|
| 391 |
+
{
|
| 392 |
+
"answer_chars": 746,
|
| 393 |
+
"completion_tokens": 2827,
|
| 394 |
+
"finish_reason": "stop",
|
| 395 |
+
"id": "aime2025-22",
|
| 396 |
+
"reasoning_chars": 6979,
|
| 397 |
+
"result": "pass",
|
| 398 |
+
"source": "AIME2025",
|
| 399 |
+
"total_ms": 37019.557042,
|
| 400 |
+
"ttft_ms": 515.9891250000001
|
| 401 |
+
},
|
| 402 |
+
{
|
| 403 |
+
"answer_chars": 0,
|
| 404 |
+
"completion_tokens": 32768,
|
| 405 |
+
"finish_reason": "length",
|
| 406 |
+
"id": "rechKl68Uc6H7vU0N",
|
| 407 |
+
"reasoning_chars": 102204,
|
| 408 |
+
"result": "exhausted",
|
| 409 |
+
"source": "GPQA Diamond",
|
| 410 |
+
"total_ms": 466687.117834,
|
| 411 |
+
"ttft_ms": 713.413334
|
| 412 |
+
},
|
| 413 |
+
{
|
| 414 |
+
"answer_chars": 9,
|
| 415 |
+
"completion_tokens": 521,
|
| 416 |
+
"finish_reason": "stop",
|
| 417 |
+
"id": "97ad69dda7b2462c98638b79e78aea0b",
|
| 418 |
+
"reasoning_chars": 2135,
|
| 419 |
+
"result": "pass",
|
| 420 |
+
"source": "SuperGPQA",
|
| 421 |
+
"total_ms": 7781.613375,
|
| 422 |
+
"ttft_ms": 958.0845
|
| 423 |
+
},
|
| 424 |
+
{
|
| 425 |
+
"answer_chars": 826,
|
| 426 |
+
"completion_tokens": 3384,
|
| 427 |
+
"finish_reason": "stop",
|
| 428 |
+
"id": "aime2025-08",
|
| 429 |
+
"reasoning_chars": 7375,
|
| 430 |
+
"result": "pass",
|
| 431 |
+
"source": "AIME2025",
|
| 432 |
+
"total_ms": 42264.326166,
|
| 433 |
+
"ttft_ms": 517.81475
|
| 434 |
+
},
|
| 435 |
+
{
|
| 436 |
+
"answer_chars": 406,
|
| 437 |
+
"completion_tokens": 1711,
|
| 438 |
+
"finish_reason": "stop",
|
| 439 |
+
"id": "rec1zl5LvaatzGhFt",
|
| 440 |
+
"reasoning_chars": 4743,
|
| 441 |
+
"result": "pass",
|
| 442 |
+
"source": "GPQA Diamond",
|
| 443 |
+
"total_ms": 23015.452041,
|
| 444 |
+
"ttft_ms": 707.882291
|
| 445 |
+
},
|
| 446 |
+
{
|
| 447 |
+
"answer_chars": 9,
|
| 448 |
+
"completion_tokens": 2274,
|
| 449 |
+
"finish_reason": "stop",
|
| 450 |
+
"id": "e78e4e539d6f4e379ac140d923d7b1be",
|
| 451 |
+
"reasoning_chars": 11068,
|
| 452 |
+
"result": "fail",
|
| 453 |
+
"source": "SuperGPQA",
|
| 454 |
+
"total_ms": 32477.529124999997,
|
| 455 |
+
"ttft_ms": 505.41775
|
| 456 |
+
},
|
| 457 |
+
{
|
| 458 |
+
"answer_chars": 1289,
|
| 459 |
+
"completion_tokens": 14365,
|
| 460 |
+
"finish_reason": "stop",
|
| 461 |
+
"id": "aime2025-09",
|
| 462 |
+
"reasoning_chars": 26676,
|
| 463 |
+
"result": "pass",
|
| 464 |
+
"source": "AIME2025",
|
| 465 |
+
"total_ms": 179593.557417,
|
| 466 |
+
"ttft_ms": 513.5193340000001
|
| 467 |
+
},
|
| 468 |
+
{
|
| 469 |
+
"answer_chars": 9,
|
| 470 |
+
"completion_tokens": 5198,
|
| 471 |
+
"finish_reason": "stop",
|
| 472 |
+
"id": "recTs7qzfJs6kfLUK",
|
| 473 |
+
"reasoning_chars": 16698,
|
| 474 |
+
"result": "pass",
|
| 475 |
+
"source": "GPQA Diamond",
|
| 476 |
+
"total_ms": 74434.430042,
|
| 477 |
+
"ttft_ms": 928.802959
|
| 478 |
+
},
|
| 479 |
+
{
|
| 480 |
+
"answer_chars": 628,
|
| 481 |
+
"completion_tokens": 26082,
|
| 482 |
+
"finish_reason": "stop",
|
| 483 |
+
"id": "8483667a25e74fdfa3188de4ea734f03",
|
| 484 |
+
"reasoning_chars": 93624,
|
| 485 |
+
"result": "fail",
|
| 486 |
+
"source": "SuperGPQA",
|
| 487 |
+
"total_ms": 379261.83650000003,
|
| 488 |
+
"ttft_ms": 568.733958
|
| 489 |
+
},
|
| 490 |
+
{
|
| 491 |
+
"answer_chars": 1294,
|
| 492 |
+
"completion_tokens": 5755,
|
| 493 |
+
"finish_reason": "stop",
|
| 494 |
+
"id": "aime2025-24",
|
| 495 |
+
"reasoning_chars": 13629,
|
| 496 |
+
"result": "pass",
|
| 497 |
+
"source": "AIME2025",
|
| 498 |
+
"total_ms": 79076.662666,
|
| 499 |
+
"ttft_ms": 763.337083
|
| 500 |
+
},
|
| 501 |
+
{
|
| 502 |
+
"answer_chars": 261,
|
| 503 |
+
"completion_tokens": 1629,
|
| 504 |
+
"finish_reason": "stop",
|
| 505 |
+
"id": "rec32C1ZEapBnCC0E",
|
| 506 |
+
"reasoning_chars": 4316,
|
| 507 |
+
"result": "pass",
|
| 508 |
+
"source": "GPQA Diamond",
|
| 509 |
+
"total_ms": 22963.713708,
|
| 510 |
+
"ttft_ms": 568.427875
|
| 511 |
+
},
|
| 512 |
+
{
|
| 513 |
+
"answer_chars": 9,
|
| 514 |
+
"completion_tokens": 1265,
|
| 515 |
+
"finish_reason": "stop",
|
| 516 |
+
"id": "e5ed76ef98144f06843125daf1bccd35",
|
| 517 |
+
"reasoning_chars": 2555,
|
| 518 |
+
"result": "pass",
|
| 519 |
+
"source": "SuperGPQA",
|
| 520 |
+
"total_ms": 15737.619083,
|
| 521 |
+
"ttft_ms": 583.867791
|
| 522 |
+
},
|
| 523 |
+
{
|
| 524 |
+
"answer_chars": 1913,
|
| 525 |
+
"completion_tokens": 20887,
|
| 526 |
+
"finish_reason": "stop",
|
| 527 |
+
"id": "aime2025-10",
|
| 528 |
+
"reasoning_chars": 64156,
|
| 529 |
+
"result": "pass",
|
| 530 |
+
"source": "AIME2025",
|
| 531 |
+
"total_ms": 303869.707375,
|
| 532 |
+
"ttft_ms": 661.884917
|
| 533 |
+
},
|
| 534 |
+
{
|
| 535 |
+
"answer_chars": 0,
|
| 536 |
+
"completion_tokens": 32768,
|
| 537 |
+
"finish_reason": "length",
|
| 538 |
+
"id": "recZWeueB7lSPR6wN",
|
| 539 |
+
"reasoning_chars": 112650,
|
| 540 |
+
"result": "exhausted",
|
| 541 |
+
"source": "GPQA Diamond",
|
| 542 |
+
"total_ms": 493554.82691600005,
|
| 543 |
+
"ttft_ms": 783.787
|
| 544 |
+
},
|
| 545 |
+
{
|
| 546 |
+
"answer_chars": 9,
|
| 547 |
+
"completion_tokens": 2329,
|
| 548 |
+
"finish_reason": "stop",
|
| 549 |
+
"id": "fd7924876c4845cd83d95d61dfa0b236",
|
| 550 |
+
"reasoning_chars": 11680,
|
| 551 |
+
"result": "pass",
|
| 552 |
+
"source": "SuperGPQA",
|
| 553 |
+
"total_ms": 33429.654125,
|
| 554 |
+
"ttft_ms": 828.107083
|
| 555 |
+
},
|
| 556 |
+
{
|
| 557 |
+
"answer_chars": 1516,
|
| 558 |
+
"completion_tokens": 3541,
|
| 559 |
+
"finish_reason": "stop",
|
| 560 |
+
"id": "aime2025-25",
|
| 561 |
+
"reasoning_chars": 8756,
|
| 562 |
+
"result": "pass",
|
| 563 |
+
"source": "AIME2025",
|
| 564 |
+
"total_ms": 46446.801375,
|
| 565 |
+
"ttft_ms": 527.522417
|
| 566 |
+
},
|
| 567 |
+
{
|
| 568 |
+
"answer_chars": 0,
|
| 569 |
+
"completion_tokens": 32768,
|
| 570 |
+
"finish_reason": "length",
|
| 571 |
+
"id": "recVvpD8miVjmmyfe",
|
| 572 |
+
"reasoning_chars": 73787,
|
| 573 |
+
"result": "exhausted",
|
| 574 |
+
"source": "GPQA Diamond",
|
| 575 |
+
"total_ms": 469471.107458,
|
| 576 |
+
"ttft_ms": 516.121083
|
| 577 |
+
},
|
| 578 |
+
{
|
| 579 |
+
"answer_chars": 555,
|
| 580 |
+
"completion_tokens": 6152,
|
| 581 |
+
"finish_reason": "stop",
|
| 582 |
+
"id": "6bfe7d19299d4b3184636e1f51694306",
|
| 583 |
+
"reasoning_chars": 20763,
|
| 584 |
+
"result": "pass",
|
| 585 |
+
"source": "SuperGPQA",
|
| 586 |
+
"total_ms": 84060.745792,
|
| 587 |
+
"ttft_ms": 1027.043084
|
| 588 |
+
},
|
| 589 |
+
{
|
| 590 |
+
"answer_chars": 1152,
|
| 591 |
+
"completion_tokens": 7428,
|
| 592 |
+
"finish_reason": "stop",
|
| 593 |
+
"id": "aime2025-26",
|
| 594 |
+
"reasoning_chars": 23067,
|
| 595 |
+
"result": "pass",
|
| 596 |
+
"source": "AIME2025",
|
| 597 |
+
"total_ms": 105592.622875,
|
| 598 |
+
"ttft_ms": 533.0126670000001
|
| 599 |
+
},
|
| 600 |
+
{
|
| 601 |
+
"answer_chars": 1066,
|
| 602 |
+
"completion_tokens": 14420,
|
| 603 |
+
"finish_reason": "stop",
|
| 604 |
+
"id": "recAAJoHMW45Lv5je",
|
| 605 |
+
"reasoning_chars": 45070,
|
| 606 |
+
"result": "pass",
|
| 607 |
+
"source": "GPQA Diamond",
|
| 608 |
+
"total_ms": 194508.552917,
|
| 609 |
+
"ttft_ms": 609.175417
|
| 610 |
+
},
|
| 611 |
+
{
|
| 612 |
+
"answer_chars": 462,
|
| 613 |
+
"completion_tokens": 1084,
|
| 614 |
+
"finish_reason": "stop",
|
| 615 |
+
"id": "e1825d70c5844c22933087eafa89e39c",
|
| 616 |
+
"reasoning_chars": 1670,
|
| 617 |
+
"result": "pass",
|
| 618 |
+
"source": "SuperGPQA",
|
| 619 |
+
"total_ms": 13081.987125,
|
| 620 |
+
"ttft_ms": 802.438625
|
| 621 |
+
},
|
| 622 |
+
{
|
| 623 |
+
"answer_chars": 1444,
|
| 624 |
+
"completion_tokens": 16627,
|
| 625 |
+
"finish_reason": "stop",
|
| 626 |
+
"id": "aime2025-12",
|
| 627 |
+
"reasoning_chars": 38449,
|
| 628 |
+
"result": "pass",
|
| 629 |
+
"source": "AIME2025",
|
| 630 |
+
"total_ms": 220773.386458,
|
| 631 |
+
"ttft_ms": 514.76325
|
| 632 |
+
},
|
| 633 |
+
{
|
| 634 |
+
"answer_chars": 608,
|
| 635 |
+
"completion_tokens": 12530,
|
| 636 |
+
"finish_reason": "stop",
|
| 637 |
+
"id": "reckEnrOPFT9Ru7tW",
|
| 638 |
+
"reasoning_chars": 40672,
|
| 639 |
+
"result": "pass",
|
| 640 |
+
"source": "GPQA Diamond",
|
| 641 |
+
"total_ms": 181802.454208,
|
| 642 |
+
"ttft_ms": 715.188833
|
| 643 |
+
},
|
| 644 |
+
{
|
| 645 |
+
"answer_chars": 937,
|
| 646 |
+
"completion_tokens": 4505,
|
| 647 |
+
"finish_reason": "stop",
|
| 648 |
+
"id": "ab430ac3f18e4e02a2cb3f35498c6b30",
|
| 649 |
+
"reasoning_chars": 10963,
|
| 650 |
+
"result": "pass",
|
| 651 |
+
"source": "SuperGPQA",
|
| 652 |
+
"total_ms": 62796.388667,
|
| 653 |
+
"ttft_ms": 724.35925
|
| 654 |
+
},
|
| 655 |
+
{
|
| 656 |
+
"answer_chars": 1192,
|
| 657 |
+
"completion_tokens": 10166,
|
| 658 |
+
"finish_reason": "stop",
|
| 659 |
+
"id": "aime2025-27",
|
| 660 |
+
"reasoning_chars": 24548,
|
| 661 |
+
"result": "pass",
|
| 662 |
+
"source": "AIME2025",
|
| 663 |
+
"total_ms": 137678.69475,
|
| 664 |
+
"ttft_ms": 625.979125
|
| 665 |
+
},
|
| 666 |
+
{
|
| 667 |
+
"answer_chars": 9,
|
| 668 |
+
"completion_tokens": 30451,
|
| 669 |
+
"finish_reason": "stop",
|
| 670 |
+
"id": "rec8nshandHARTkrg",
|
| 671 |
+
"reasoning_chars": 100630,
|
| 672 |
+
"result": "pass",
|
| 673 |
+
"source": "GPQA Diamond",
|
| 674 |
+
"total_ms": 426070.122167,
|
| 675 |
+
"ttft_ms": 922.731542
|
| 676 |
+
},
|
| 677 |
+
{
|
| 678 |
+
"answer_chars": 517,
|
| 679 |
+
"completion_tokens": 2358,
|
| 680 |
+
"finish_reason": "stop",
|
| 681 |
+
"id": "e8c5da5ca40647158b0c91dd695c6243",
|
| 682 |
+
"reasoning_chars": 5960,
|
| 683 |
+
"result": "pass",
|
| 684 |
+
"source": "SuperGPQA",
|
| 685 |
+
"total_ms": 30951.200209,
|
| 686 |
+
"ttft_ms": 1053.5945
|
| 687 |
+
},
|
| 688 |
+
{
|
| 689 |
+
"answer_chars": 1999,
|
| 690 |
+
"completion_tokens": 27528,
|
| 691 |
+
"finish_reason": "stop",
|
| 692 |
+
"id": "aime2025-13",
|
| 693 |
+
"reasoning_chars": 96625,
|
| 694 |
+
"result": "pass",
|
| 695 |
+
"source": "AIME2025",
|
| 696 |
+
"total_ms": 412246.286416,
|
| 697 |
+
"ttft_ms": 535.400333
|
| 698 |
+
},
|
| 699 |
+
{
|
| 700 |
+
"answer_chars": 1129,
|
| 701 |
+
"completion_tokens": 18679,
|
| 702 |
+
"finish_reason": "stop",
|
| 703 |
+
"id": "recFaL6j8UMhutXrc",
|
| 704 |
+
"reasoning_chars": 58285,
|
| 705 |
+
"result": "pass",
|
| 706 |
+
"source": "GPQA Diamond",
|
| 707 |
+
"total_ms": 254495.964166,
|
| 708 |
+
"ttft_ms": 1010.184625
|
| 709 |
+
},
|
| 710 |
+
{
|
| 711 |
+
"answer_chars": 458,
|
| 712 |
+
"completion_tokens": 1204,
|
| 713 |
+
"finish_reason": "stop",
|
| 714 |
+
"id": "05efdc6fb2404ddc8dd5729bb68c74e5",
|
| 715 |
+
"reasoning_chars": 1672,
|
| 716 |
+
"result": "pass",
|
| 717 |
+
"source": "SuperGPQA",
|
| 718 |
+
"total_ms": 14794.488667,
|
| 719 |
+
"ttft_ms": 696.417292
|
| 720 |
+
},
|
| 721 |
+
{
|
| 722 |
+
"answer_chars": 0,
|
| 723 |
+
"completion_tokens": 32768,
|
| 724 |
+
"finish_reason": "length",
|
| 725 |
+
"id": "aime2025-28",
|
| 726 |
+
"reasoning_chars": 55067,
|
| 727 |
+
"result": "exhausted",
|
| 728 |
+
"source": "AIME2025",
|
| 729 |
+
"total_ms": 416457.180208,
|
| 730 |
+
"ttft_ms": 502.9515
|
| 731 |
+
},
|
| 732 |
+
{
|
| 733 |
+
"answer_chars": 270,
|
| 734 |
+
"completion_tokens": 6515,
|
| 735 |
+
"finish_reason": "stop",
|
| 736 |
+
"id": "reczQ4I0VpENdMtIj",
|
| 737 |
+
"reasoning_chars": 30415,
|
| 738 |
+
"result": "pass",
|
| 739 |
+
"source": "GPQA Diamond",
|
| 740 |
+
"total_ms": 94152.348459,
|
| 741 |
+
"ttft_ms": 845.909375
|
| 742 |
+
},
|
| 743 |
+
{
|
| 744 |
+
"answer_chars": 264,
|
| 745 |
+
"completion_tokens": 5853,
|
| 746 |
+
"finish_reason": "stop",
|
| 747 |
+
"id": "ba52e06cbe1a4310a77a7d12cd1db943",
|
| 748 |
+
"reasoning_chars": 15996,
|
| 749 |
+
"result": "pass",
|
| 750 |
+
"source": "SuperGPQA",
|
| 751 |
+
"total_ms": 76672.621541,
|
| 752 |
+
"ttft_ms": 852.608916
|
| 753 |
+
},
|
| 754 |
+
{
|
| 755 |
+
"answer_chars": 1986,
|
| 756 |
+
"completion_tokens": 24008,
|
| 757 |
+
"finish_reason": "stop",
|
| 758 |
+
"id": "aime2025-29",
|
| 759 |
+
"reasoning_chars": 54602,
|
| 760 |
+
"result": "pass",
|
| 761 |
+
"source": "AIME2025",
|
| 762 |
+
"total_ms": 320981.63262499997,
|
| 763 |
+
"ttft_ms": 604.779541
|
| 764 |
+
},
|
| 765 |
+
{
|
| 766 |
+
"answer_chars": 0,
|
| 767 |
+
"completion_tokens": 32768,
|
| 768 |
+
"finish_reason": "length",
|
| 769 |
+
"id": "recWxGU8Q4YReJ1tb",
|
| 770 |
+
"reasoning_chars": 100990,
|
| 771 |
+
"result": "exhausted",
|
| 772 |
+
"source": "GPQA Diamond",
|
| 773 |
+
"total_ms": 469972.320334,
|
| 774 |
+
"ttft_ms": 1155.049334
|
| 775 |
+
},
|
| 776 |
+
{
|
| 777 |
+
"answer_chars": 470,
|
| 778 |
+
"completion_tokens": 851,
|
| 779 |
+
"finish_reason": "stop",
|
| 780 |
+
"id": "591a77df21324272914be82ac6583399",
|
| 781 |
+
"reasoning_chars": 1615,
|
| 782 |
+
"result": "fail",
|
| 783 |
+
"source": "SuperGPQA",
|
| 784 |
+
"total_ms": 11110.698917,
|
| 785 |
+
"ttft_ms": 1025.992
|
| 786 |
+
},
|
| 787 |
+
{
|
| 788 |
+
"answer_chars": 0,
|
| 789 |
+
"completion_tokens": 32768,
|
| 790 |
+
"finish_reason": "length",
|
| 791 |
+
"id": "aime2025-15",
|
| 792 |
+
"reasoning_chars": 80520,
|
| 793 |
+
"result": "exhausted",
|
| 794 |
+
"source": "AIME2025",
|
| 795 |
+
"total_ms": 487762.17254199996,
|
| 796 |
+
"ttft_ms": 481.98458300000004
|
| 797 |
+
},
|
| 798 |
+
{
|
| 799 |
+
"answer_chars": 798,
|
| 800 |
+
"completion_tokens": 6382,
|
| 801 |
+
"finish_reason": "stop",
|
| 802 |
+
"id": "recMicVBcqy1xM1jq",
|
| 803 |
+
"reasoning_chars": 19842,
|
| 804 |
+
"result": "pass",
|
| 805 |
+
"source": "GPQA Diamond",
|
| 806 |
+
"total_ms": 87630.761458,
|
| 807 |
+
"ttft_ms": 892.07225
|
| 808 |
+
},
|
| 809 |
+
{
|
| 810 |
+
"answer_chars": 318,
|
| 811 |
+
"completion_tokens": 4862,
|
| 812 |
+
"finish_reason": "stop",
|
| 813 |
+
"id": "e780f37a5baa4fe094cd9c157486664d",
|
| 814 |
+
"reasoning_chars": 20768,
|
| 815 |
+
"result": "fail",
|
| 816 |
+
"source": "SuperGPQA",
|
| 817 |
+
"total_ms": 70782.98479199999,
|
| 818 |
+
"ttft_ms": 601.408
|
| 819 |
+
},
|
| 820 |
+
{
|
| 821 |
+
"answer_chars": 1912,
|
| 822 |
+
"completion_tokens": 28843,
|
| 823 |
+
"finish_reason": "stop",
|
| 824 |
+
"id": "aime2025-30",
|
| 825 |
+
"reasoning_chars": 76334,
|
| 826 |
+
"result": "pass",
|
| 827 |
+
"source": "AIME2025",
|
| 828 |
+
"total_ms": 408931.17208299995,
|
| 829 |
+
"ttft_ms": 634.181917
|
| 830 |
+
},
|
| 831 |
+
{
|
| 832 |
+
"answer_chars": 10,
|
| 833 |
+
"completion_tokens": 3143,
|
| 834 |
+
"finish_reason": "stop",
|
| 835 |
+
"id": "compsec-076",
|
| 836 |
+
"reasoning_chars": 12435,
|
| 837 |
+
"result": "pass",
|
| 838 |
+
"source": "COMPSEC",
|
| 839 |
+
"total_ms": 45112.374041,
|
| 840 |
+
"ttft_ms": 999.834458
|
| 841 |
+
},
|
| 842 |
+
{
|
| 843 |
+
"answer_chars": 10,
|
| 844 |
+
"completion_tokens": 5013,
|
| 845 |
+
"finish_reason": "stop",
|
| 846 |
+
"id": "compsec-077",
|
| 847 |
+
"reasoning_chars": 18144,
|
| 848 |
+
"result": "pass",
|
| 849 |
+
"source": "COMPSEC",
|
| 850 |
+
"total_ms": 70576.978583,
|
| 851 |
+
"ttft_ms": 774.697792
|
| 852 |
+
},
|
| 853 |
+
{
|
| 854 |
+
"answer_chars": 10,
|
| 855 |
+
"completion_tokens": 1408,
|
| 856 |
+
"finish_reason": "stop",
|
| 857 |
+
"id": "compsec-078",
|
| 858 |
+
"reasoning_chars": 5276,
|
| 859 |
+
"result": "pass",
|
| 860 |
+
"source": "COMPSEC",
|
| 861 |
+
"total_ms": 20359.128458,
|
| 862 |
+
"ttft_ms": 770.0350000000001
|
| 863 |
+
},
|
| 864 |
+
{
|
| 865 |
+
"answer_chars": 10,
|
| 866 |
+
"completion_tokens": 9990,
|
| 867 |
+
"finish_reason": "stop",
|
| 868 |
+
"id": "compsec-079",
|
| 869 |
+
"reasoning_chars": 42773,
|
| 870 |
+
"result": "pass",
|
| 871 |
+
"source": "COMPSEC",
|
| 872 |
+
"total_ms": 148875.145583,
|
| 873 |
+
"ttft_ms": 1039.946458
|
| 874 |
+
},
|
| 875 |
+
{
|
| 876 |
+
"answer_chars": 9,
|
| 877 |
+
"completion_tokens": 3439,
|
| 878 |
+
"finish_reason": "stop",
|
| 879 |
+
"id": "compsec-080",
|
| 880 |
+
"reasoning_chars": 15308,
|
| 881 |
+
"result": "pass",
|
| 882 |
+
"source": "COMPSEC",
|
| 883 |
+
"total_ms": 52848.938209,
|
| 884 |
+
"ttft_ms": 758.004584
|
| 885 |
+
},
|
| 886 |
+
{
|
| 887 |
+
"answer_chars": 10,
|
| 888 |
+
"completion_tokens": 9295,
|
| 889 |
+
"finish_reason": "stop",
|
| 890 |
+
"id": "compsec-081",
|
| 891 |
+
"reasoning_chars": 37476,
|
| 892 |
+
"result": "pass",
|
| 893 |
+
"source": "COMPSEC",
|
| 894 |
+
"total_ms": 137047.765708,
|
| 895 |
+
"ttft_ms": 680.141166
|
| 896 |
+
},
|
| 897 |
+
{
|
| 898 |
+
"answer_chars": 9,
|
| 899 |
+
"completion_tokens": 13510,
|
| 900 |
+
"finish_reason": "stop",
|
| 901 |
+
"id": "compsec-082",
|
| 902 |
+
"reasoning_chars": 54400,
|
| 903 |
+
"result": "pass",
|
| 904 |
+
"source": "COMPSEC",
|
| 905 |
+
"total_ms": 203265.347791,
|
| 906 |
+
"ttft_ms": 839.5028329999999
|
| 907 |
+
},
|
| 908 |
+
{
|
| 909 |
+
"answer_chars": 10,
|
| 910 |
+
"completion_tokens": 11329,
|
| 911 |
+
"finish_reason": "stop",
|
| 912 |
+
"id": "compsec-083",
|
| 913 |
+
"reasoning_chars": 43777,
|
| 914 |
+
"result": "pass",
|
| 915 |
+
"source": "COMPSEC",
|
| 916 |
+
"total_ms": 167394.472916,
|
| 917 |
+
"ttft_ms": 718.835458
|
| 918 |
+
},
|
| 919 |
+
{
|
| 920 |
+
"answer_chars": 9,
|
| 921 |
+
"completion_tokens": 1134,
|
| 922 |
+
"finish_reason": "stop",
|
| 923 |
+
"id": "compsec-084",
|
| 924 |
+
"reasoning_chars": 4067,
|
| 925 |
+
"result": "pass",
|
| 926 |
+
"source": "COMPSEC",
|
| 927 |
+
"total_ms": 16992.731667,
|
| 928 |
+
"ttft_ms": 746.074417
|
| 929 |
+
},
|
| 930 |
+
{
|
| 931 |
+
"answer_chars": 9,
|
| 932 |
+
"completion_tokens": 1254,
|
| 933 |
+
"finish_reason": "stop",
|
| 934 |
+
"id": "compsec-085",
|
| 935 |
+
"reasoning_chars": 4972,
|
| 936 |
+
"result": "pass",
|
| 937 |
+
"source": "COMPSEC",
|
| 938 |
+
"total_ms": 18737.374708,
|
| 939 |
+
"ttft_ms": 637.940667
|
| 940 |
+
},
|
| 941 |
+
{
|
| 942 |
+
"answer_chars": 9,
|
| 943 |
+
"completion_tokens": 1927,
|
| 944 |
+
"finish_reason": "stop",
|
| 945 |
+
"id": "compsec-086",
|
| 946 |
+
"reasoning_chars": 7287,
|
| 947 |
+
"result": "pass",
|
| 948 |
+
"source": "COMPSEC",
|
| 949 |
+
"total_ms": 29033.311333,
|
| 950 |
+
"ttft_ms": 650.522333
|
| 951 |
+
},
|
| 952 |
+
{
|
| 953 |
+
"answer_chars": 9,
|
| 954 |
+
"completion_tokens": 10374,
|
| 955 |
+
"finish_reason": "stop",
|
| 956 |
+
"id": "compsec-087",
|
| 957 |
+
"reasoning_chars": 36801,
|
| 958 |
+
"result": "pass",
|
| 959 |
+
"source": "COMPSEC",
|
| 960 |
+
"total_ms": 149365.527542,
|
| 961 |
+
"ttft_ms": 701.871792
|
| 962 |
+
},
|
| 963 |
+
{
|
| 964 |
+
"answer_chars": 10,
|
| 965 |
+
"completion_tokens": 1611,
|
| 966 |
+
"finish_reason": "stop",
|
| 967 |
+
"id": "compsec-088",
|
| 968 |
+
"reasoning_chars": 6651,
|
| 969 |
+
"result": "pass",
|
| 970 |
+
"source": "COMPSEC",
|
| 971 |
+
"total_ms": 23745.865458,
|
| 972 |
+
"ttft_ms": 712.036125
|
| 973 |
+
},
|
| 974 |
+
{
|
| 975 |
+
"answer_chars": 10,
|
| 976 |
+
"completion_tokens": 617,
|
| 977 |
+
"finish_reason": "stop",
|
| 978 |
+
"id": "compsec-089",
|
| 979 |
+
"reasoning_chars": 2230,
|
| 980 |
+
"result": "pass",
|
| 981 |
+
"source": "COMPSEC",
|
| 982 |
+
"total_ms": 8626.226792000001,
|
| 983 |
+
"ttft_ms": 559.131834
|
| 984 |
+
},
|
| 985 |
+
{
|
| 986 |
+
"answer_chars": 10,
|
| 987 |
+
"completion_tokens": 7180,
|
| 988 |
+
"finish_reason": "stop",
|
| 989 |
+
"id": "compsec-090",
|
| 990 |
+
"reasoning_chars": 24514,
|
| 991 |
+
"result": "pass",
|
| 992 |
+
"source": "COMPSEC",
|
| 993 |
+
"total_ms": 96036.09141699999,
|
| 994 |
+
"ttft_ms": 605.856667
|
| 995 |
+
},
|
| 996 |
+
{
|
| 997 |
+
"answer_chars": 9,
|
| 998 |
+
"completion_tokens": 962,
|
| 999 |
+
"finish_reason": "stop",
|
| 1000 |
+
"id": "compsec-091",
|
| 1001 |
+
"reasoning_chars": 3954,
|
| 1002 |
+
"result": "pass",
|
| 1003 |
+
"source": "COMPSEC",
|
| 1004 |
+
"total_ms": 15032.648833,
|
| 1005 |
+
"ttft_ms": 630.936291
|
| 1006 |
+
},
|
| 1007 |
+
{
|
| 1008 |
+
"answer_chars": 10,
|
| 1009 |
+
"completion_tokens": 4390,
|
| 1010 |
+
"finish_reason": "stop",
|
| 1011 |
+
"id": "compsec-092",
|
| 1012 |
+
"reasoning_chars": 17602,
|
| 1013 |
+
"result": "pass",
|
| 1014 |
+
"source": "COMPSEC",
|
| 1015 |
+
"total_ms": 64935.494417,
|
| 1016 |
+
"ttft_ms": 640.4516249999999
|
| 1017 |
+
}
|
| 1018 |
+
],
|
| 1019 |
+
"config": {
|
| 1020 |
+
"max_tokens": 32768,
|
| 1021 |
+
"seed": 42,
|
| 1022 |
+
"temperature": 0.0
|
| 1023 |
+
},
|
| 1024 |
+
"exhausted": 7,
|
| 1025 |
+
"failed_answered": 5,
|
| 1026 |
+
"model": "fit-256k",
|
| 1027 |
+
"passed": 80
|
| 1028 |
+
}
|
bench/iq4/config-public.txt
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
run: iq4-mtp
|
| 2 |
+
date: 2026-08-16T06:04:08+02:00
|
| 3 |
+
driver: bench-baselines-mtp.sh @ 2073ef7
|
| 4 |
+
bs4: bs4 (our eval harness; not public)
|
| 5 |
+
serve_cmd: ~/llama.cpp/build-mtp/bin/llama-server -m ~/models/Qwen3.8-27B-IQ4_XS.gguf -md ~/models/Qwen3.8-27B-MTP-ONLY-Q8_0.gguf --spec-draft-n-max 3 -c 131072 -ctk q4_0 -ctv q4_0 -fa on -ngl 99 -ngld 99 --port 8083 --host 0.0.0.0
|
| 6 |
+
--- desktop side ---
|
| 7 |
+
llama.cpp: 22b8e31 (22b8e31)
|
| 8 |
+
model: 15705860064 bytes ~/models/Qwen3.8-27B-IQ4_XS.gguf
|
| 9 |
+
draft: 4503398688 bytes
|
| 10 |
+
gpu: NVIDIA RTX PRO 6000 Blackwell Workstation Edition, 250.00 W, 97887 MiB
|
| 11 |
+
driver_ver: 610.57.04
|
| 12 |
+
|
| 13 |
+
sampler: temperature 0.0, seed 42, max_tokens 32768 (sent by the eval client in each request body; source: qa-eval-1786862759.json)
|
| 14 |
+
|
| 15 |
+
--- server /props at run start ---
|
| 16 |
+
{
|
| 17 |
+
"_note": "SERVER DEFAULTS ONLY — these are what llama-server starts with, NOT what the eval used. Every request overrides them per the 'sampler:' line above (temperature 0, fixed seed). model_ftype is llama.cpp's coarse single-label for the file; for a per-tensor mix it does not describe the quantization.",
|
| 18 |
+
"build_info": "b93-22b8e31",
|
| 19 |
+
"model_ftype": "IQ4_XS - 4.25 bpw",
|
| 20 |
+
"n_ctx": 131072,
|
| 21 |
+
"total_slots": 4,
|
| 22 |
+
"sampler_defaults": {
|
| 23 |
+
"temperature": 1.0,
|
| 24 |
+
"top_k": 20,
|
| 25 |
+
"top_p": 0.949999988079071,
|
| 26 |
+
"min_p": 0.05000000074505806,
|
| 27 |
+
"repeat_penalty": 1.0,
|
| 28 |
+
"samplers": [
|
| 29 |
+
"penalties",
|
| 30 |
+
"dry",
|
| 31 |
+
"top_n_sigma",
|
| 32 |
+
"top_k",
|
| 33 |
+
"typ_p",
|
| 34 |
+
"top_p",
|
| 35 |
+
"min_p",
|
| 36 |
+
"xtc",
|
| 37 |
+
"temperature"
|
| 38 |
+
]
|
| 39 |
+
},
|
| 40 |
+
"chat_template": "<omitted: ~30KB jinja, no reproduction value>"
|
| 41 |
+
}
|
| 42 |
+
|
| 43 |
+
--- publication note ---
|
| 44 |
+
Scrubbed for publication by sanitize-config.py: hostnames, internal
|
| 45 |
+
repo paths and home paths removed, GPU index omitted (immaterial —
|
| 46 |
+
one card, one power cap), chat template omitted for size. Everything
|
| 47 |
+
that affects the measurement is kept verbatim.
|
bench/iq4/qa-eval-1786862759.csv
ADDED
|
@@ -0,0 +1,93 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
id,source,domain,result,reasoning_chars,answer_chars,completion_tokens,finish_reason,ttft_ms,total_ms
|
| 2 |
+
recNu3MXkvWUzHZr9,GPQA Diamond,Physics,pass,4957,516,2256,stop,393.0,24132.8
|
| 3 |
+
001b51d76b4d422988f2c11f104a2c6c,SuperGPQA,Agronomy,pass,2137,9,503,stop,407.6,5462.6
|
| 4 |
+
aime2025-01,AIME2025,Number Theory,pass,1028,418,685,stop,415.3,7030.3
|
| 5 |
+
recoiTJPGUmzAkief,GPQA Diamond,Physics,pass,9843,625,2407,stop,493.0,30989.6
|
| 6 |
+
b7e20eac98764fb0bf30e8366d951daa,SuperGPQA,Engineering,pass,24172,754,6870,stop,588.7,75237.4
|
| 7 |
+
aime2025-16,AIME2025,Geometry,pass,2413,703,1491,stop,484.5,15082.4
|
| 8 |
+
rec4UqStf9WUVif1f,GPQA Diamond,Physics,pass,1498,435,1011,stop,449.6,10234.5
|
| 9 |
+
4a1d1780a93f4093b6fb7d3c314cbea8,SuperGPQA,Engineering,fail,27294,9,5940,stop,427.6,73045.9
|
| 10 |
+
aime2025-02,AIME2025,Geometry,exhausted,81510,0,32768,length,817.1,378020.4
|
| 11 |
+
recgI6tUQ7RLJRWGx,GPQA Diamond,Physics,pass,3664,510,1460,stop,759.0,16712.4
|
| 12 |
+
6082513c8dba4ec68aa68f1bf5854d09,SuperGPQA,Law,pass,6005,9,1268,stop,435.1,14860.8
|
| 13 |
+
aime2025-03,AIME2025,Combinatorics,pass,1693,495,881,stop,436.7,9080.4
|
| 14 |
+
recDytVnNYZe2HuUU,GPQA Diamond (modified),Physics,pass,5964,372,2983,stop,444.4,32639.1
|
| 15 |
+
bebf1ed45ae14ad7b4f205f3909cb58a,SuperGPQA,Literature and Arts,pass,671,9,221,stop,470.4,2749.0
|
| 16 |
+
aime2025-18,AIME2025,Combinatorics,pass,11367,1365,4077,stop,498.0,46770.9
|
| 17 |
+
recNFJjE5PPTqVJGv,GPQA Diamond,Chemistry,pass,1295,802,958,stop,472.2,9654.1
|
| 18 |
+
7ca71b86327744b78e93185a45bc5cef,SuperGPQA,Medicine,pass,16963,9,4017,stop,452.5,47203.3
|
| 19 |
+
aime2025-04,AIME2025,Algebra,pass,2886,446,1430,stop,457.1,15442.7
|
| 20 |
+
rec2UlKqC6RFHdcro,GPQA Diamond,Physics,pass,3315,456,1388,stop,463.0,15559.5
|
| 21 |
+
d44b94f7749345a39a65f6312bda8764,SuperGPQA,Engineering,pass,2597,477,875,stop,467.9,11410.3
|
| 22 |
+
aime2025-19,AIME2025,Algebra,pass,3438,1136,2293,stop,496.2,23392.6
|
| 23 |
+
recv7GsQg3f0fvB1f,GPQA Diamond,Chemistry,pass,29017,452,6919,stop,548.6,84313.7
|
| 24 |
+
febe406f44d74a40b50bb5b7c69d5dc1,SuperGPQA,Sociology,pass,9216,9,2071,stop,535.5,23664.9
|
| 25 |
+
aime2025-05,AIME2025,"Combinatorics, Number Theory",pass,5638,1555,2738,stop,453.5,28895.1
|
| 26 |
+
recrHBEJJoDTV05JR,GPQA Diamond,Chemistry,pass,52703,561,16217,stop,524.0,184967.1
|
| 27 |
+
31950dc80ded400a9181f50626d1f75c,SuperGPQA,Science,pass,1132,309,558,stop,606.8,6029.9
|
| 28 |
+
aime2025-06,AIME2025,Geometry,pass,2065,1107,1186,stop,432.6,13148.9
|
| 29 |
+
recb80OwMgNnceA9t,GPQA Diamond,Chemistry,exhausted,89248,0,32768,length,456.4,392565.1
|
| 30 |
+
0f14cd17be174618af6d60227e7dca9f,SuperGPQA,Engineering,pass,21150,515,7332,stop,1079.8,86715.0
|
| 31 |
+
aime2025-21,AIME2025,"Algebra, Geometry",pass,10531,1344,4022,stop,859.3,44826.2
|
| 32 |
+
recA1i5ZAh0Uzclxp,GPQA Diamond,Chemistry,pass,81860,498,25758,stop,540.1,311519.3
|
| 33 |
+
cef9bcc087434cc2b4e354a9baef55eb,SuperGPQA,Engineering,pass,1271,511,963,stop,864.7,10116.9
|
| 34 |
+
aime2025-07,AIME2025,Combinatorics,pass,18603,1784,6471,stop,451.0,77894.8
|
| 35 |
+
recqGD3fxPCI59vPQ,GPQA Diamond,Physics,pass,4876,566,1749,stop,617.5,19604.5
|
| 36 |
+
9f93aa2cfdb547b5b3a4623f80f7fff6,SuperGPQA,Engineering,pass,893,143,277,stop,434.1,3316.8
|
| 37 |
+
aime2025-22,AIME2025,Number Theory,pass,4136,1001,1834,stop,446.5,19451.6
|
| 38 |
+
rechKl68Uc6H7vU0N,GPQA Diamond,Chemistry,exhausted,100408,0,32768,length,516.4,387256.3
|
| 39 |
+
97ad69dda7b2462c98638b79e78aea0b,SuperGPQA,Medicine,pass,12824,9,3196,stop,782.8,34916.9
|
| 40 |
+
aime2025-08,AIME2025,Algebra,pass,5916,877,2936,stop,456.2,30667.1
|
| 41 |
+
rec1zl5LvaatzGhFt,GPQA Diamond,Physics,pass,3983,378,1633,stop,592.1,17666.5
|
| 42 |
+
e78e4e539d6f4e379ac140d923d7b1be,SuperGPQA,Military Science,fail,10468,9,2148,stop,454.9,25005.6
|
| 43 |
+
aime2025-09,AIME2025,Algebra,pass,48410,1936,21490,stop,475.8,241600.9
|
| 44 |
+
recTs7qzfJs6kfLUK,GPQA Diamond,Biology,pass,31295,9,10379,stop,893.6,118889.9
|
| 45 |
+
8483667a25e74fdfa3188de4ea734f03,SuperGPQA,Science,fail,67959,860,19649,stop,594.3,236243.3
|
| 46 |
+
aime2025-24,AIME2025,Algebra,pass,21164,937,8856,stop,600.5,100464.6
|
| 47 |
+
rec32C1ZEapBnCC0E,GPQA Diamond,Physics,pass,5929,383,2173,stop,567.8,24801.6
|
| 48 |
+
e5ed76ef98144f06843125daf1bccd35,SuperGPQA,Science,pass,2202,9,992,stop,477.3,10312.1
|
| 49 |
+
aime2025-10,AIME2025,Combinatorics,pass,95696,1602,30868,stop,643.4,370198.4
|
| 50 |
+
recZWeueB7lSPR6wN,GPQA Diamond,Chemistry,exhausted,109416,0,32768,length,795.2,411463.3
|
| 51 |
+
fd7924876c4845cd83d95d61dfa0b236,SuperGPQA,Sociology,pass,8388,9,1594,stop,771.0,19853.9
|
| 52 |
+
aime2025-25,AIME2025,Combinatorics,pass,16903,1536,5938,stop,449.6,68168.5
|
| 53 |
+
recVvpD8miVjmmyfe,GPQA Diamond,Biology,exhausted,72883,0,32768,length,462.6,384184.0
|
| 54 |
+
6bfe7d19299d4b3184636e1f51694306,SuperGPQA,Agronomy,pass,36420,461,11118,stop,906.8,127574.6
|
| 55 |
+
aime2025-26,AIME2025,Combinatorics,pass,14244,822,4804,stop,539.2,57414.4
|
| 56 |
+
recAAJoHMW45Lv5je,GPQA Diamond,Chemistry,pass,64264,846,20175,stop,571.4,231093.5
|
| 57 |
+
e1825d70c5844c22933087eafa89e39c,SuperGPQA,Engineering,pass,1788,455,1242,stop,915.3,12656.2
|
| 58 |
+
aime2025-12,AIME2025,Algebra,pass,16030,1336,6755,stop,499.8,75467.9
|
| 59 |
+
reckEnrOPFT9Ru7tW,GPQA Diamond,Chemistry,pass,73378,666,22636,stop,528.5,273153.8
|
| 60 |
+
ab430ac3f18e4e02a2cb3f35498c6b30,SuperGPQA,Engineering,pass,8989,1167,3751,stop,719.8,43082.8
|
| 61 |
+
aime2025-27,AIME2025,Geometry,pass,30128,1215,11718,stop,573.6,134166.7
|
| 62 |
+
rec8nshandHARTkrg,GPQA Diamond,Chemistry,exhausted,106637,0,32768,length,812.0,388554.8
|
| 63 |
+
e8c5da5ca40647158b0c91dd695c6243,SuperGPQA,Science,pass,6663,408,2704,stop,1001.0,30449.6
|
| 64 |
+
aime2025-13,AIME2025,Combinatorics,pass,92853,1893,25789,stop,495.1,320011.8
|
| 65 |
+
recFaL6j8UMhutXrc,GPQA Diamond,Chemistry,pass,42251,856,14372,stop,861.8,162496.3
|
| 66 |
+
05efdc6fb2404ddc8dd5729bb68c74e5,SuperGPQA,Science,pass,1437,572,1077,stop,633.2,10957.5
|
| 67 |
+
aime2025-28,AIME2025,Number Theory,exhausted,63844,0,32768,length,474.7,374460.2
|
| 68 |
+
reczQ4I0VpENdMtIj,GPQA Diamond,Biology,pass,35113,9,7554,stop,814.7,89780.7
|
| 69 |
+
ba52e06cbe1a4310a77a7d12cd1db943,SuperGPQA,Science,pass,10077,9,3691,stop,749.3,39057.6
|
| 70 |
+
aime2025-29,AIME2025,Geometry,pass,37424,2107,20322,stop,543.7,215322.8
|
| 71 |
+
recWxGU8Q4YReJ1tb,GPQA Diamond,Chemistry,exhausted,93893,0,32768,length,969.6,396274.6
|
| 72 |
+
591a77df21324272914be82ac6583399,SuperGPQA,Science,fail,2183,427,1149,stop,866.8,12314.4
|
| 73 |
+
aime2025-15,AIME2025,Number Theory,exhausted,76942,0,32768,length,464.4,396845.8
|
| 74 |
+
recMicVBcqy1xM1jq,GPQA Diamond,Physics,pass,23534,921,8865,stop,876.7,100289.9
|
| 75 |
+
e780f37a5baa4fe094cd9c157486664d,SuperGPQA,Sociology,fail,14690,182,3321,stop,539.2,39935.4
|
| 76 |
+
aime2025-30,AIME2025,Algebra,pass,70913,1460,28421,stop,483.0,333739.9
|
| 77 |
+
compsec-076,COMPSEC,FreeBSD / librpcsec_gss,pass,7182,10,1786,stop,857.5,22333.5
|
| 78 |
+
compsec-077,COMPSEC,GNU Inetutils telnetd,pass,29427,10,8356,stop,565.5,97578.7
|
| 79 |
+
compsec-078,COMPSEC,Botan,pass,3729,10,1016,stop,645.0,11978.9
|
| 80 |
+
compsec-079,COMPSEC,Botan,pass,25159,10,5771,stop,650.8,72865.6
|
| 81 |
+
compsec-080,COMPSEC,Botan,pass,24033,9,5416,stop,553.4,68310.6
|
| 82 |
+
compsec-081,COMPSEC,uds-c,pass,64895,10,16465,stop,666.2,201030.2
|
| 83 |
+
compsec-082,COMPSEC,Firebird,pass,48679,9,12261,stop,830.3,153512.6
|
| 84 |
+
compsec-083,COMPSEC,Firebird,pass,65547,10,17304,stop,697.8,217749.6
|
| 85 |
+
compsec-084,COMPSEC,PHP,pass,2434,9,693,stop,717.0,8961.6
|
| 86 |
+
compsec-085,COMPSEC,PHP PDO Firebird,pass,24580,9,6334,stop,501.2,79052.3
|
| 87 |
+
compsec-086,COMPSEC,libexpat,pass,4644,9,1200,stop,662.6,14616.3
|
| 88 |
+
compsec-087,COMPSEC,Mbed TLS,pass,43808,9,12658,stop,601.6,152057.4
|
| 89 |
+
compsec-088,COMPSEC,Mbed TLS,pass,4418,10,1151,stop,634.3,14193.8
|
| 90 |
+
compsec-089,COMPSEC,Mbed TLS,pass,2212,10,649,stop,511.9,7471.2
|
| 91 |
+
compsec-090,COMPSEC,Linux kernel,pass,2576,10,780,stop,604.6,8964.2
|
| 92 |
+
compsec-091,COMPSEC,Linux kernel USB gadget storage,pass,2311,9,622,stop,499.0,7727.5
|
| 93 |
+
compsec-092,COMPSEC,Linux kernel AppArmor,pass,9552,10,2318,stop,538.3,28152.6
|
bench/iq4/qa-eval-1786862759.json
ADDED
|
@@ -0,0 +1,1028 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"accuracy": 0.8478260869565217,
|
| 3 |
+
"bench_version": "0.1.0",
|
| 4 |
+
"cases": 92,
|
| 5 |
+
"cases_detail": [
|
| 6 |
+
{
|
| 7 |
+
"answer_chars": 516,
|
| 8 |
+
"completion_tokens": 2256,
|
| 9 |
+
"finish_reason": "stop",
|
| 10 |
+
"id": "recNu3MXkvWUzHZr9",
|
| 11 |
+
"reasoning_chars": 4957,
|
| 12 |
+
"result": "pass",
|
| 13 |
+
"source": "GPQA Diamond",
|
| 14 |
+
"total_ms": 24132.795375,
|
| 15 |
+
"ttft_ms": 392.962333
|
| 16 |
+
},
|
| 17 |
+
{
|
| 18 |
+
"answer_chars": 9,
|
| 19 |
+
"completion_tokens": 503,
|
| 20 |
+
"finish_reason": "stop",
|
| 21 |
+
"id": "001b51d76b4d422988f2c11f104a2c6c",
|
| 22 |
+
"reasoning_chars": 2137,
|
| 23 |
+
"result": "pass",
|
| 24 |
+
"source": "SuperGPQA",
|
| 25 |
+
"total_ms": 5462.6095829999995,
|
| 26 |
+
"ttft_ms": 407.617083
|
| 27 |
+
},
|
| 28 |
+
{
|
| 29 |
+
"answer_chars": 418,
|
| 30 |
+
"completion_tokens": 685,
|
| 31 |
+
"finish_reason": "stop",
|
| 32 |
+
"id": "aime2025-01",
|
| 33 |
+
"reasoning_chars": 1028,
|
| 34 |
+
"result": "pass",
|
| 35 |
+
"source": "AIME2025",
|
| 36 |
+
"total_ms": 7030.3345,
|
| 37 |
+
"ttft_ms": 415.26629199999996
|
| 38 |
+
},
|
| 39 |
+
{
|
| 40 |
+
"answer_chars": 625,
|
| 41 |
+
"completion_tokens": 2407,
|
| 42 |
+
"finish_reason": "stop",
|
| 43 |
+
"id": "recoiTJPGUmzAkief",
|
| 44 |
+
"reasoning_chars": 9843,
|
| 45 |
+
"result": "pass",
|
| 46 |
+
"source": "GPQA Diamond",
|
| 47 |
+
"total_ms": 30989.649375,
|
| 48 |
+
"ttft_ms": 492.995792
|
| 49 |
+
},
|
| 50 |
+
{
|
| 51 |
+
"answer_chars": 754,
|
| 52 |
+
"completion_tokens": 6870,
|
| 53 |
+
"finish_reason": "stop",
|
| 54 |
+
"id": "b7e20eac98764fb0bf30e8366d951daa",
|
| 55 |
+
"reasoning_chars": 24172,
|
| 56 |
+
"result": "pass",
|
| 57 |
+
"source": "SuperGPQA",
|
| 58 |
+
"total_ms": 75237.439625,
|
| 59 |
+
"ttft_ms": 588.689208
|
| 60 |
+
},
|
| 61 |
+
{
|
| 62 |
+
"answer_chars": 703,
|
| 63 |
+
"completion_tokens": 1491,
|
| 64 |
+
"finish_reason": "stop",
|
| 65 |
+
"id": "aime2025-16",
|
| 66 |
+
"reasoning_chars": 2413,
|
| 67 |
+
"result": "pass",
|
| 68 |
+
"source": "AIME2025",
|
| 69 |
+
"total_ms": 15082.376083,
|
| 70 |
+
"ttft_ms": 484.47216599999996
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"answer_chars": 435,
|
| 74 |
+
"completion_tokens": 1011,
|
| 75 |
+
"finish_reason": "stop",
|
| 76 |
+
"id": "rec4UqStf9WUVif1f",
|
| 77 |
+
"reasoning_chars": 1498,
|
| 78 |
+
"result": "pass",
|
| 79 |
+
"source": "GPQA Diamond",
|
| 80 |
+
"total_ms": 10234.532584,
|
| 81 |
+
"ttft_ms": 449.586
|
| 82 |
+
},
|
| 83 |
+
{
|
| 84 |
+
"answer_chars": 9,
|
| 85 |
+
"completion_tokens": 5940,
|
| 86 |
+
"finish_reason": "stop",
|
| 87 |
+
"id": "4a1d1780a93f4093b6fb7d3c314cbea8",
|
| 88 |
+
"reasoning_chars": 27294,
|
| 89 |
+
"result": "fail",
|
| 90 |
+
"source": "SuperGPQA",
|
| 91 |
+
"total_ms": 73045.92358300001,
|
| 92 |
+
"ttft_ms": 427.620041
|
| 93 |
+
},
|
| 94 |
+
{
|
| 95 |
+
"answer_chars": 0,
|
| 96 |
+
"completion_tokens": 32768,
|
| 97 |
+
"finish_reason": "length",
|
| 98 |
+
"id": "aime2025-02",
|
| 99 |
+
"reasoning_chars": 81510,
|
| 100 |
+
"result": "exhausted",
|
| 101 |
+
"source": "AIME2025",
|
| 102 |
+
"total_ms": 378020.357958,
|
| 103 |
+
"ttft_ms": 817.065292
|
| 104 |
+
},
|
| 105 |
+
{
|
| 106 |
+
"answer_chars": 510,
|
| 107 |
+
"completion_tokens": 1460,
|
| 108 |
+
"finish_reason": "stop",
|
| 109 |
+
"id": "recgI6tUQ7RLJRWGx",
|
| 110 |
+
"reasoning_chars": 3664,
|
| 111 |
+
"result": "pass",
|
| 112 |
+
"source": "GPQA Diamond",
|
| 113 |
+
"total_ms": 16712.409417,
|
| 114 |
+
"ttft_ms": 759.0152919999999
|
| 115 |
+
},
|
| 116 |
+
{
|
| 117 |
+
"answer_chars": 9,
|
| 118 |
+
"completion_tokens": 1268,
|
| 119 |
+
"finish_reason": "stop",
|
| 120 |
+
"id": "6082513c8dba4ec68aa68f1bf5854d09",
|
| 121 |
+
"reasoning_chars": 6005,
|
| 122 |
+
"result": "pass",
|
| 123 |
+
"source": "SuperGPQA",
|
| 124 |
+
"total_ms": 14860.7845,
|
| 125 |
+
"ttft_ms": 435.130042
|
| 126 |
+
},
|
| 127 |
+
{
|
| 128 |
+
"answer_chars": 495,
|
| 129 |
+
"completion_tokens": 881,
|
| 130 |
+
"finish_reason": "stop",
|
| 131 |
+
"id": "aime2025-03",
|
| 132 |
+
"reasoning_chars": 1693,
|
| 133 |
+
"result": "pass",
|
| 134 |
+
"source": "AIME2025",
|
| 135 |
+
"total_ms": 9080.410625,
|
| 136 |
+
"ttft_ms": 436.679416
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"answer_chars": 372,
|
| 140 |
+
"completion_tokens": 2983,
|
| 141 |
+
"finish_reason": "stop",
|
| 142 |
+
"id": "recDytVnNYZe2HuUU",
|
| 143 |
+
"reasoning_chars": 5964,
|
| 144 |
+
"result": "pass",
|
| 145 |
+
"source": "GPQA Diamond (modified)",
|
| 146 |
+
"total_ms": 32639.136042,
|
| 147 |
+
"ttft_ms": 444.372042
|
| 148 |
+
},
|
| 149 |
+
{
|
| 150 |
+
"answer_chars": 9,
|
| 151 |
+
"completion_tokens": 221,
|
| 152 |
+
"finish_reason": "stop",
|
| 153 |
+
"id": "bebf1ed45ae14ad7b4f205f3909cb58a",
|
| 154 |
+
"reasoning_chars": 671,
|
| 155 |
+
"result": "pass",
|
| 156 |
+
"source": "SuperGPQA",
|
| 157 |
+
"total_ms": 2749.034125,
|
| 158 |
+
"ttft_ms": 470.37320900000003
|
| 159 |
+
},
|
| 160 |
+
{
|
| 161 |
+
"answer_chars": 1365,
|
| 162 |
+
"completion_tokens": 4077,
|
| 163 |
+
"finish_reason": "stop",
|
| 164 |
+
"id": "aime2025-18",
|
| 165 |
+
"reasoning_chars": 11367,
|
| 166 |
+
"result": "pass",
|
| 167 |
+
"source": "AIME2025",
|
| 168 |
+
"total_ms": 46770.856791,
|
| 169 |
+
"ttft_ms": 497.998541
|
| 170 |
+
},
|
| 171 |
+
{
|
| 172 |
+
"answer_chars": 802,
|
| 173 |
+
"completion_tokens": 958,
|
| 174 |
+
"finish_reason": "stop",
|
| 175 |
+
"id": "recNFJjE5PPTqVJGv",
|
| 176 |
+
"reasoning_chars": 1295,
|
| 177 |
+
"result": "pass",
|
| 178 |
+
"source": "GPQA Diamond",
|
| 179 |
+
"total_ms": 9654.135042,
|
| 180 |
+
"ttft_ms": 472.195209
|
| 181 |
+
},
|
| 182 |
+
{
|
| 183 |
+
"answer_chars": 9,
|
| 184 |
+
"completion_tokens": 4017,
|
| 185 |
+
"finish_reason": "stop",
|
| 186 |
+
"id": "7ca71b86327744b78e93185a45bc5cef",
|
| 187 |
+
"reasoning_chars": 16963,
|
| 188 |
+
"result": "pass",
|
| 189 |
+
"source": "SuperGPQA",
|
| 190 |
+
"total_ms": 47203.322917,
|
| 191 |
+
"ttft_ms": 452.497209
|
| 192 |
+
},
|
| 193 |
+
{
|
| 194 |
+
"answer_chars": 446,
|
| 195 |
+
"completion_tokens": 1430,
|
| 196 |
+
"finish_reason": "stop",
|
| 197 |
+
"id": "aime2025-04",
|
| 198 |
+
"reasoning_chars": 2886,
|
| 199 |
+
"result": "pass",
|
| 200 |
+
"source": "AIME2025",
|
| 201 |
+
"total_ms": 15442.723167,
|
| 202 |
+
"ttft_ms": 457.081167
|
| 203 |
+
},
|
| 204 |
+
{
|
| 205 |
+
"answer_chars": 456,
|
| 206 |
+
"completion_tokens": 1388,
|
| 207 |
+
"finish_reason": "stop",
|
| 208 |
+
"id": "rec2UlKqC6RFHdcro",
|
| 209 |
+
"reasoning_chars": 3315,
|
| 210 |
+
"result": "pass",
|
| 211 |
+
"source": "GPQA Diamond",
|
| 212 |
+
"total_ms": 15559.484958000001,
|
| 213 |
+
"ttft_ms": 463.016042
|
| 214 |
+
},
|
| 215 |
+
{
|
| 216 |
+
"answer_chars": 477,
|
| 217 |
+
"completion_tokens": 875,
|
| 218 |
+
"finish_reason": "stop",
|
| 219 |
+
"id": "d44b94f7749345a39a65f6312bda8764",
|
| 220 |
+
"reasoning_chars": 2597,
|
| 221 |
+
"result": "pass",
|
| 222 |
+
"source": "SuperGPQA",
|
| 223 |
+
"total_ms": 11410.305333,
|
| 224 |
+
"ttft_ms": 467.892791
|
| 225 |
+
},
|
| 226 |
+
{
|
| 227 |
+
"answer_chars": 1136,
|
| 228 |
+
"completion_tokens": 2293,
|
| 229 |
+
"finish_reason": "stop",
|
| 230 |
+
"id": "aime2025-19",
|
| 231 |
+
"reasoning_chars": 3438,
|
| 232 |
+
"result": "pass",
|
| 233 |
+
"source": "AIME2025",
|
| 234 |
+
"total_ms": 23392.591167,
|
| 235 |
+
"ttft_ms": 496.226208
|
| 236 |
+
},
|
| 237 |
+
{
|
| 238 |
+
"answer_chars": 452,
|
| 239 |
+
"completion_tokens": 6919,
|
| 240 |
+
"finish_reason": "stop",
|
| 241 |
+
"id": "recv7GsQg3f0fvB1f",
|
| 242 |
+
"reasoning_chars": 29017,
|
| 243 |
+
"result": "pass",
|
| 244 |
+
"source": "GPQA Diamond",
|
| 245 |
+
"total_ms": 84313.740916,
|
| 246 |
+
"ttft_ms": 548.5755
|
| 247 |
+
},
|
| 248 |
+
{
|
| 249 |
+
"answer_chars": 9,
|
| 250 |
+
"completion_tokens": 2071,
|
| 251 |
+
"finish_reason": "stop",
|
| 252 |
+
"id": "febe406f44d74a40b50bb5b7c69d5dc1",
|
| 253 |
+
"reasoning_chars": 9216,
|
| 254 |
+
"result": "pass",
|
| 255 |
+
"source": "SuperGPQA",
|
| 256 |
+
"total_ms": 23664.936333,
|
| 257 |
+
"ttft_ms": 535.487458
|
| 258 |
+
},
|
| 259 |
+
{
|
| 260 |
+
"answer_chars": 1555,
|
| 261 |
+
"completion_tokens": 2738,
|
| 262 |
+
"finish_reason": "stop",
|
| 263 |
+
"id": "aime2025-05",
|
| 264 |
+
"reasoning_chars": 5638,
|
| 265 |
+
"result": "pass",
|
| 266 |
+
"source": "AIME2025",
|
| 267 |
+
"total_ms": 28895.086958,
|
| 268 |
+
"ttft_ms": 453.45441600000004
|
| 269 |
+
},
|
| 270 |
+
{
|
| 271 |
+
"answer_chars": 561,
|
| 272 |
+
"completion_tokens": 16217,
|
| 273 |
+
"finish_reason": "stop",
|
| 274 |
+
"id": "recrHBEJJoDTV05JR",
|
| 275 |
+
"reasoning_chars": 52703,
|
| 276 |
+
"result": "pass",
|
| 277 |
+
"source": "GPQA Diamond",
|
| 278 |
+
"total_ms": 184967.125917,
|
| 279 |
+
"ttft_ms": 523.957125
|
| 280 |
+
},
|
| 281 |
+
{
|
| 282 |
+
"answer_chars": 309,
|
| 283 |
+
"completion_tokens": 558,
|
| 284 |
+
"finish_reason": "stop",
|
| 285 |
+
"id": "31950dc80ded400a9181f50626d1f75c",
|
| 286 |
+
"reasoning_chars": 1132,
|
| 287 |
+
"result": "pass",
|
| 288 |
+
"source": "SuperGPQA",
|
| 289 |
+
"total_ms": 6029.928166999999,
|
| 290 |
+
"ttft_ms": 606.811
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"answer_chars": 1107,
|
| 294 |
+
"completion_tokens": 1186,
|
| 295 |
+
"finish_reason": "stop",
|
| 296 |
+
"id": "aime2025-06",
|
| 297 |
+
"reasoning_chars": 2065,
|
| 298 |
+
"result": "pass",
|
| 299 |
+
"source": "AIME2025",
|
| 300 |
+
"total_ms": 13148.948459,
|
| 301 |
+
"ttft_ms": 432.645667
|
| 302 |
+
},
|
| 303 |
+
{
|
| 304 |
+
"answer_chars": 0,
|
| 305 |
+
"completion_tokens": 32768,
|
| 306 |
+
"finish_reason": "length",
|
| 307 |
+
"id": "recb80OwMgNnceA9t",
|
| 308 |
+
"reasoning_chars": 89248,
|
| 309 |
+
"result": "exhausted",
|
| 310 |
+
"source": "GPQA Diamond",
|
| 311 |
+
"total_ms": 392565.071625,
|
| 312 |
+
"ttft_ms": 456.39854099999997
|
| 313 |
+
},
|
| 314 |
+
{
|
| 315 |
+
"answer_chars": 515,
|
| 316 |
+
"completion_tokens": 7332,
|
| 317 |
+
"finish_reason": "stop",
|
| 318 |
+
"id": "0f14cd17be174618af6d60227e7dca9f",
|
| 319 |
+
"reasoning_chars": 21150,
|
| 320 |
+
"result": "pass",
|
| 321 |
+
"source": "SuperGPQA",
|
| 322 |
+
"total_ms": 86714.99533399999,
|
| 323 |
+
"ttft_ms": 1079.799
|
| 324 |
+
},
|
| 325 |
+
{
|
| 326 |
+
"answer_chars": 1344,
|
| 327 |
+
"completion_tokens": 4022,
|
| 328 |
+
"finish_reason": "stop",
|
| 329 |
+
"id": "aime2025-21",
|
| 330 |
+
"reasoning_chars": 10531,
|
| 331 |
+
"result": "pass",
|
| 332 |
+
"source": "AIME2025",
|
| 333 |
+
"total_ms": 44826.154,
|
| 334 |
+
"ttft_ms": 859.2632500000001
|
| 335 |
+
},
|
| 336 |
+
{
|
| 337 |
+
"answer_chars": 498,
|
| 338 |
+
"completion_tokens": 25758,
|
| 339 |
+
"finish_reason": "stop",
|
| 340 |
+
"id": "recA1i5ZAh0Uzclxp",
|
| 341 |
+
"reasoning_chars": 81860,
|
| 342 |
+
"result": "pass",
|
| 343 |
+
"source": "GPQA Diamond",
|
| 344 |
+
"total_ms": 311519.27575000003,
|
| 345 |
+
"ttft_ms": 540.1415830000001
|
| 346 |
+
},
|
| 347 |
+
{
|
| 348 |
+
"answer_chars": 511,
|
| 349 |
+
"completion_tokens": 963,
|
| 350 |
+
"finish_reason": "stop",
|
| 351 |
+
"id": "cef9bcc087434cc2b4e354a9baef55eb",
|
| 352 |
+
"reasoning_chars": 1271,
|
| 353 |
+
"result": "pass",
|
| 354 |
+
"source": "SuperGPQA",
|
| 355 |
+
"total_ms": 10116.862958,
|
| 356 |
+
"ttft_ms": 864.6772080000001
|
| 357 |
+
},
|
| 358 |
+
{
|
| 359 |
+
"answer_chars": 1784,
|
| 360 |
+
"completion_tokens": 6471,
|
| 361 |
+
"finish_reason": "stop",
|
| 362 |
+
"id": "aime2025-07",
|
| 363 |
+
"reasoning_chars": 18603,
|
| 364 |
+
"result": "pass",
|
| 365 |
+
"source": "AIME2025",
|
| 366 |
+
"total_ms": 77894.772,
|
| 367 |
+
"ttft_ms": 451.046
|
| 368 |
+
},
|
| 369 |
+
{
|
| 370 |
+
"answer_chars": 566,
|
| 371 |
+
"completion_tokens": 1749,
|
| 372 |
+
"finish_reason": "stop",
|
| 373 |
+
"id": "recqGD3fxPCI59vPQ",
|
| 374 |
+
"reasoning_chars": 4876,
|
| 375 |
+
"result": "pass",
|
| 376 |
+
"source": "GPQA Diamond",
|
| 377 |
+
"total_ms": 19604.495,
|
| 378 |
+
"ttft_ms": 617.5035
|
| 379 |
+
},
|
| 380 |
+
{
|
| 381 |
+
"answer_chars": 143,
|
| 382 |
+
"completion_tokens": 277,
|
| 383 |
+
"finish_reason": "stop",
|
| 384 |
+
"id": "9f93aa2cfdb547b5b3a4623f80f7fff6",
|
| 385 |
+
"reasoning_chars": 893,
|
| 386 |
+
"result": "pass",
|
| 387 |
+
"source": "SuperGPQA",
|
| 388 |
+
"total_ms": 3316.814,
|
| 389 |
+
"ttft_ms": 434.074875
|
| 390 |
+
},
|
| 391 |
+
{
|
| 392 |
+
"answer_chars": 1001,
|
| 393 |
+
"completion_tokens": 1834,
|
| 394 |
+
"finish_reason": "stop",
|
| 395 |
+
"id": "aime2025-22",
|
| 396 |
+
"reasoning_chars": 4136,
|
| 397 |
+
"result": "pass",
|
| 398 |
+
"source": "AIME2025",
|
| 399 |
+
"total_ms": 19451.551959,
|
| 400 |
+
"ttft_ms": 446.52854199999996
|
| 401 |
+
},
|
| 402 |
+
{
|
| 403 |
+
"answer_chars": 0,
|
| 404 |
+
"completion_tokens": 32768,
|
| 405 |
+
"finish_reason": "length",
|
| 406 |
+
"id": "rechKl68Uc6H7vU0N",
|
| 407 |
+
"reasoning_chars": 100408,
|
| 408 |
+
"result": "exhausted",
|
| 409 |
+
"source": "GPQA Diamond",
|
| 410 |
+
"total_ms": 387256.25325,
|
| 411 |
+
"ttft_ms": 516.356917
|
| 412 |
+
},
|
| 413 |
+
{
|
| 414 |
+
"answer_chars": 9,
|
| 415 |
+
"completion_tokens": 3196,
|
| 416 |
+
"finish_reason": "stop",
|
| 417 |
+
"id": "97ad69dda7b2462c98638b79e78aea0b",
|
| 418 |
+
"reasoning_chars": 12824,
|
| 419 |
+
"result": "pass",
|
| 420 |
+
"source": "SuperGPQA",
|
| 421 |
+
"total_ms": 34916.925708,
|
| 422 |
+
"ttft_ms": 782.8485830000001
|
| 423 |
+
},
|
| 424 |
+
{
|
| 425 |
+
"answer_chars": 877,
|
| 426 |
+
"completion_tokens": 2936,
|
| 427 |
+
"finish_reason": "stop",
|
| 428 |
+
"id": "aime2025-08",
|
| 429 |
+
"reasoning_chars": 5916,
|
| 430 |
+
"result": "pass",
|
| 431 |
+
"source": "AIME2025",
|
| 432 |
+
"total_ms": 30667.065749999998,
|
| 433 |
+
"ttft_ms": 456.21937499999996
|
| 434 |
+
},
|
| 435 |
+
{
|
| 436 |
+
"answer_chars": 378,
|
| 437 |
+
"completion_tokens": 1633,
|
| 438 |
+
"finish_reason": "stop",
|
| 439 |
+
"id": "rec1zl5LvaatzGhFt",
|
| 440 |
+
"reasoning_chars": 3983,
|
| 441 |
+
"result": "pass",
|
| 442 |
+
"source": "GPQA Diamond",
|
| 443 |
+
"total_ms": 17666.456292,
|
| 444 |
+
"ttft_ms": 592.073625
|
| 445 |
+
},
|
| 446 |
+
{
|
| 447 |
+
"answer_chars": 9,
|
| 448 |
+
"completion_tokens": 2148,
|
| 449 |
+
"finish_reason": "stop",
|
| 450 |
+
"id": "e78e4e539d6f4e379ac140d923d7b1be",
|
| 451 |
+
"reasoning_chars": 10468,
|
| 452 |
+
"result": "fail",
|
| 453 |
+
"source": "SuperGPQA",
|
| 454 |
+
"total_ms": 25005.553290999997,
|
| 455 |
+
"ttft_ms": 454.879333
|
| 456 |
+
},
|
| 457 |
+
{
|
| 458 |
+
"answer_chars": 1936,
|
| 459 |
+
"completion_tokens": 21490,
|
| 460 |
+
"finish_reason": "stop",
|
| 461 |
+
"id": "aime2025-09",
|
| 462 |
+
"reasoning_chars": 48410,
|
| 463 |
+
"result": "pass",
|
| 464 |
+
"source": "AIME2025",
|
| 465 |
+
"total_ms": 241600.916375,
|
| 466 |
+
"ttft_ms": 475.80062499999997
|
| 467 |
+
},
|
| 468 |
+
{
|
| 469 |
+
"answer_chars": 9,
|
| 470 |
+
"completion_tokens": 10379,
|
| 471 |
+
"finish_reason": "stop",
|
| 472 |
+
"id": "recTs7qzfJs6kfLUK",
|
| 473 |
+
"reasoning_chars": 31295,
|
| 474 |
+
"result": "pass",
|
| 475 |
+
"source": "GPQA Diamond",
|
| 476 |
+
"total_ms": 118889.904167,
|
| 477 |
+
"ttft_ms": 893.556292
|
| 478 |
+
},
|
| 479 |
+
{
|
| 480 |
+
"answer_chars": 860,
|
| 481 |
+
"completion_tokens": 19649,
|
| 482 |
+
"finish_reason": "stop",
|
| 483 |
+
"id": "8483667a25e74fdfa3188de4ea734f03",
|
| 484 |
+
"reasoning_chars": 67959,
|
| 485 |
+
"result": "fail",
|
| 486 |
+
"source": "SuperGPQA",
|
| 487 |
+
"total_ms": 236243.349833,
|
| 488 |
+
"ttft_ms": 594.271791
|
| 489 |
+
},
|
| 490 |
+
{
|
| 491 |
+
"answer_chars": 937,
|
| 492 |
+
"completion_tokens": 8856,
|
| 493 |
+
"finish_reason": "stop",
|
| 494 |
+
"id": "aime2025-24",
|
| 495 |
+
"reasoning_chars": 21164,
|
| 496 |
+
"result": "pass",
|
| 497 |
+
"source": "AIME2025",
|
| 498 |
+
"total_ms": 100464.641709,
|
| 499 |
+
"ttft_ms": 600.457792
|
| 500 |
+
},
|
| 501 |
+
{
|
| 502 |
+
"answer_chars": 383,
|
| 503 |
+
"completion_tokens": 2173,
|
| 504 |
+
"finish_reason": "stop",
|
| 505 |
+
"id": "rec32C1ZEapBnCC0E",
|
| 506 |
+
"reasoning_chars": 5929,
|
| 507 |
+
"result": "pass",
|
| 508 |
+
"source": "GPQA Diamond",
|
| 509 |
+
"total_ms": 24801.57075,
|
| 510 |
+
"ttft_ms": 567.779417
|
| 511 |
+
},
|
| 512 |
+
{
|
| 513 |
+
"answer_chars": 9,
|
| 514 |
+
"completion_tokens": 992,
|
| 515 |
+
"finish_reason": "stop",
|
| 516 |
+
"id": "e5ed76ef98144f06843125daf1bccd35",
|
| 517 |
+
"reasoning_chars": 2202,
|
| 518 |
+
"result": "pass",
|
| 519 |
+
"source": "SuperGPQA",
|
| 520 |
+
"total_ms": 10312.147333,
|
| 521 |
+
"ttft_ms": 477.321958
|
| 522 |
+
},
|
| 523 |
+
{
|
| 524 |
+
"answer_chars": 1602,
|
| 525 |
+
"completion_tokens": 30868,
|
| 526 |
+
"finish_reason": "stop",
|
| 527 |
+
"id": "aime2025-10",
|
| 528 |
+
"reasoning_chars": 95696,
|
| 529 |
+
"result": "pass",
|
| 530 |
+
"source": "AIME2025",
|
| 531 |
+
"total_ms": 370198.370458,
|
| 532 |
+
"ttft_ms": 643.408833
|
| 533 |
+
},
|
| 534 |
+
{
|
| 535 |
+
"answer_chars": 0,
|
| 536 |
+
"completion_tokens": 32768,
|
| 537 |
+
"finish_reason": "length",
|
| 538 |
+
"id": "recZWeueB7lSPR6wN",
|
| 539 |
+
"reasoning_chars": 109416,
|
| 540 |
+
"result": "exhausted",
|
| 541 |
+
"source": "GPQA Diamond",
|
| 542 |
+
"total_ms": 411463.27120799996,
|
| 543 |
+
"ttft_ms": 795.192208
|
| 544 |
+
},
|
| 545 |
+
{
|
| 546 |
+
"answer_chars": 9,
|
| 547 |
+
"completion_tokens": 1594,
|
| 548 |
+
"finish_reason": "stop",
|
| 549 |
+
"id": "fd7924876c4845cd83d95d61dfa0b236",
|
| 550 |
+
"reasoning_chars": 8388,
|
| 551 |
+
"result": "pass",
|
| 552 |
+
"source": "SuperGPQA",
|
| 553 |
+
"total_ms": 19853.921125,
|
| 554 |
+
"ttft_ms": 771.021292
|
| 555 |
+
},
|
| 556 |
+
{
|
| 557 |
+
"answer_chars": 1536,
|
| 558 |
+
"completion_tokens": 5938,
|
| 559 |
+
"finish_reason": "stop",
|
| 560 |
+
"id": "aime2025-25",
|
| 561 |
+
"reasoning_chars": 16903,
|
| 562 |
+
"result": "pass",
|
| 563 |
+
"source": "AIME2025",
|
| 564 |
+
"total_ms": 68168.48787499999,
|
| 565 |
+
"ttft_ms": 449.57216700000004
|
| 566 |
+
},
|
| 567 |
+
{
|
| 568 |
+
"answer_chars": 0,
|
| 569 |
+
"completion_tokens": 32768,
|
| 570 |
+
"finish_reason": "length",
|
| 571 |
+
"id": "recVvpD8miVjmmyfe",
|
| 572 |
+
"reasoning_chars": 72883,
|
| 573 |
+
"result": "exhausted",
|
| 574 |
+
"source": "GPQA Diamond",
|
| 575 |
+
"total_ms": 384184.031,
|
| 576 |
+
"ttft_ms": 462.625042
|
| 577 |
+
},
|
| 578 |
+
{
|
| 579 |
+
"answer_chars": 461,
|
| 580 |
+
"completion_tokens": 11118,
|
| 581 |
+
"finish_reason": "stop",
|
| 582 |
+
"id": "6bfe7d19299d4b3184636e1f51694306",
|
| 583 |
+
"reasoning_chars": 36420,
|
| 584 |
+
"result": "pass",
|
| 585 |
+
"source": "SuperGPQA",
|
| 586 |
+
"total_ms": 127574.636375,
|
| 587 |
+
"ttft_ms": 906.764208
|
| 588 |
+
},
|
| 589 |
+
{
|
| 590 |
+
"answer_chars": 822,
|
| 591 |
+
"completion_tokens": 4804,
|
| 592 |
+
"finish_reason": "stop",
|
| 593 |
+
"id": "aime2025-26",
|
| 594 |
+
"reasoning_chars": 14244,
|
| 595 |
+
"result": "pass",
|
| 596 |
+
"source": "AIME2025",
|
| 597 |
+
"total_ms": 57414.397625,
|
| 598 |
+
"ttft_ms": 539.1835000000001
|
| 599 |
+
},
|
| 600 |
+
{
|
| 601 |
+
"answer_chars": 846,
|
| 602 |
+
"completion_tokens": 20175,
|
| 603 |
+
"finish_reason": "stop",
|
| 604 |
+
"id": "recAAJoHMW45Lv5je",
|
| 605 |
+
"reasoning_chars": 64264,
|
| 606 |
+
"result": "pass",
|
| 607 |
+
"source": "GPQA Diamond",
|
| 608 |
+
"total_ms": 231093.521209,
|
| 609 |
+
"ttft_ms": 571.3779169999999
|
| 610 |
+
},
|
| 611 |
+
{
|
| 612 |
+
"answer_chars": 455,
|
| 613 |
+
"completion_tokens": 1242,
|
| 614 |
+
"finish_reason": "stop",
|
| 615 |
+
"id": "e1825d70c5844c22933087eafa89e39c",
|
| 616 |
+
"reasoning_chars": 1788,
|
| 617 |
+
"result": "pass",
|
| 618 |
+
"source": "SuperGPQA",
|
| 619 |
+
"total_ms": 12656.155209,
|
| 620 |
+
"ttft_ms": 915.341375
|
| 621 |
+
},
|
| 622 |
+
{
|
| 623 |
+
"answer_chars": 1336,
|
| 624 |
+
"completion_tokens": 6755,
|
| 625 |
+
"finish_reason": "stop",
|
| 626 |
+
"id": "aime2025-12",
|
| 627 |
+
"reasoning_chars": 16030,
|
| 628 |
+
"result": "pass",
|
| 629 |
+
"source": "AIME2025",
|
| 630 |
+
"total_ms": 75467.93075,
|
| 631 |
+
"ttft_ms": 499.806792
|
| 632 |
+
},
|
| 633 |
+
{
|
| 634 |
+
"answer_chars": 666,
|
| 635 |
+
"completion_tokens": 22636,
|
| 636 |
+
"finish_reason": "stop",
|
| 637 |
+
"id": "reckEnrOPFT9Ru7tW",
|
| 638 |
+
"reasoning_chars": 73378,
|
| 639 |
+
"result": "pass",
|
| 640 |
+
"source": "GPQA Diamond",
|
| 641 |
+
"total_ms": 273153.801333,
|
| 642 |
+
"ttft_ms": 528.4896669999999
|
| 643 |
+
},
|
| 644 |
+
{
|
| 645 |
+
"answer_chars": 1167,
|
| 646 |
+
"completion_tokens": 3751,
|
| 647 |
+
"finish_reason": "stop",
|
| 648 |
+
"id": "ab430ac3f18e4e02a2cb3f35498c6b30",
|
| 649 |
+
"reasoning_chars": 8989,
|
| 650 |
+
"result": "pass",
|
| 651 |
+
"source": "SuperGPQA",
|
| 652 |
+
"total_ms": 43082.825584,
|
| 653 |
+
"ttft_ms": 719.753375
|
| 654 |
+
},
|
| 655 |
+
{
|
| 656 |
+
"answer_chars": 1215,
|
| 657 |
+
"completion_tokens": 11718,
|
| 658 |
+
"finish_reason": "stop",
|
| 659 |
+
"id": "aime2025-27",
|
| 660 |
+
"reasoning_chars": 30128,
|
| 661 |
+
"result": "pass",
|
| 662 |
+
"source": "AIME2025",
|
| 663 |
+
"total_ms": 134166.749541,
|
| 664 |
+
"ttft_ms": 573.593291
|
| 665 |
+
},
|
| 666 |
+
{
|
| 667 |
+
"answer_chars": 0,
|
| 668 |
+
"completion_tokens": 32768,
|
| 669 |
+
"finish_reason": "length",
|
| 670 |
+
"id": "rec8nshandHARTkrg",
|
| 671 |
+
"reasoning_chars": 106637,
|
| 672 |
+
"result": "exhausted",
|
| 673 |
+
"source": "GPQA Diamond",
|
| 674 |
+
"total_ms": 388554.750916,
|
| 675 |
+
"ttft_ms": 811.9523330000001
|
| 676 |
+
},
|
| 677 |
+
{
|
| 678 |
+
"answer_chars": 408,
|
| 679 |
+
"completion_tokens": 2704,
|
| 680 |
+
"finish_reason": "stop",
|
| 681 |
+
"id": "e8c5da5ca40647158b0c91dd695c6243",
|
| 682 |
+
"reasoning_chars": 6663,
|
| 683 |
+
"result": "pass",
|
| 684 |
+
"source": "SuperGPQA",
|
| 685 |
+
"total_ms": 30449.635791999997,
|
| 686 |
+
"ttft_ms": 1000.963875
|
| 687 |
+
},
|
| 688 |
+
{
|
| 689 |
+
"answer_chars": 1893,
|
| 690 |
+
"completion_tokens": 25789,
|
| 691 |
+
"finish_reason": "stop",
|
| 692 |
+
"id": "aime2025-13",
|
| 693 |
+
"reasoning_chars": 92853,
|
| 694 |
+
"result": "pass",
|
| 695 |
+
"source": "AIME2025",
|
| 696 |
+
"total_ms": 320011.844458,
|
| 697 |
+
"ttft_ms": 495.081
|
| 698 |
+
},
|
| 699 |
+
{
|
| 700 |
+
"answer_chars": 856,
|
| 701 |
+
"completion_tokens": 14372,
|
| 702 |
+
"finish_reason": "stop",
|
| 703 |
+
"id": "recFaL6j8UMhutXrc",
|
| 704 |
+
"reasoning_chars": 42251,
|
| 705 |
+
"result": "pass",
|
| 706 |
+
"source": "GPQA Diamond",
|
| 707 |
+
"total_ms": 162496.277167,
|
| 708 |
+
"ttft_ms": 861.797375
|
| 709 |
+
},
|
| 710 |
+
{
|
| 711 |
+
"answer_chars": 572,
|
| 712 |
+
"completion_tokens": 1077,
|
| 713 |
+
"finish_reason": "stop",
|
| 714 |
+
"id": "05efdc6fb2404ddc8dd5729bb68c74e5",
|
| 715 |
+
"reasoning_chars": 1437,
|
| 716 |
+
"result": "pass",
|
| 717 |
+
"source": "SuperGPQA",
|
| 718 |
+
"total_ms": 10957.472834,
|
| 719 |
+
"ttft_ms": 633.23125
|
| 720 |
+
},
|
| 721 |
+
{
|
| 722 |
+
"answer_chars": 0,
|
| 723 |
+
"completion_tokens": 32768,
|
| 724 |
+
"finish_reason": "length",
|
| 725 |
+
"id": "aime2025-28",
|
| 726 |
+
"reasoning_chars": 63844,
|
| 727 |
+
"result": "exhausted",
|
| 728 |
+
"source": "AIME2025",
|
| 729 |
+
"total_ms": 374460.237125,
|
| 730 |
+
"ttft_ms": 474.684459
|
| 731 |
+
},
|
| 732 |
+
{
|
| 733 |
+
"answer_chars": 9,
|
| 734 |
+
"completion_tokens": 7554,
|
| 735 |
+
"finish_reason": "stop",
|
| 736 |
+
"id": "reczQ4I0VpENdMtIj",
|
| 737 |
+
"reasoning_chars": 35113,
|
| 738 |
+
"result": "pass",
|
| 739 |
+
"source": "GPQA Diamond",
|
| 740 |
+
"total_ms": 89780.66775000001,
|
| 741 |
+
"ttft_ms": 814.702333
|
| 742 |
+
},
|
| 743 |
+
{
|
| 744 |
+
"answer_chars": 9,
|
| 745 |
+
"completion_tokens": 3691,
|
| 746 |
+
"finish_reason": "stop",
|
| 747 |
+
"id": "ba52e06cbe1a4310a77a7d12cd1db943",
|
| 748 |
+
"reasoning_chars": 10077,
|
| 749 |
+
"result": "pass",
|
| 750 |
+
"source": "SuperGPQA",
|
| 751 |
+
"total_ms": 39057.569,
|
| 752 |
+
"ttft_ms": 749.285625
|
| 753 |
+
},
|
| 754 |
+
{
|
| 755 |
+
"answer_chars": 2107,
|
| 756 |
+
"completion_tokens": 20322,
|
| 757 |
+
"finish_reason": "stop",
|
| 758 |
+
"id": "aime2025-29",
|
| 759 |
+
"reasoning_chars": 37424,
|
| 760 |
+
"result": "pass",
|
| 761 |
+
"source": "AIME2025",
|
| 762 |
+
"total_ms": 215322.795167,
|
| 763 |
+
"ttft_ms": 543.663833
|
| 764 |
+
},
|
| 765 |
+
{
|
| 766 |
+
"answer_chars": 0,
|
| 767 |
+
"completion_tokens": 32768,
|
| 768 |
+
"finish_reason": "length",
|
| 769 |
+
"id": "recWxGU8Q4YReJ1tb",
|
| 770 |
+
"reasoning_chars": 93893,
|
| 771 |
+
"result": "exhausted",
|
| 772 |
+
"source": "GPQA Diamond",
|
| 773 |
+
"total_ms": 396274.570042,
|
| 774 |
+
"ttft_ms": 969.61275
|
| 775 |
+
},
|
| 776 |
+
{
|
| 777 |
+
"answer_chars": 427,
|
| 778 |
+
"completion_tokens": 1149,
|
| 779 |
+
"finish_reason": "stop",
|
| 780 |
+
"id": "591a77df21324272914be82ac6583399",
|
| 781 |
+
"reasoning_chars": 2183,
|
| 782 |
+
"result": "fail",
|
| 783 |
+
"source": "SuperGPQA",
|
| 784 |
+
"total_ms": 12314.380625,
|
| 785 |
+
"ttft_ms": 866.8087089999999
|
| 786 |
+
},
|
| 787 |
+
{
|
| 788 |
+
"answer_chars": 0,
|
| 789 |
+
"completion_tokens": 32768,
|
| 790 |
+
"finish_reason": "length",
|
| 791 |
+
"id": "aime2025-15",
|
| 792 |
+
"reasoning_chars": 76942,
|
| 793 |
+
"result": "exhausted",
|
| 794 |
+
"source": "AIME2025",
|
| 795 |
+
"total_ms": 396845.81741699995,
|
| 796 |
+
"ttft_ms": 464.445417
|
| 797 |
+
},
|
| 798 |
+
{
|
| 799 |
+
"answer_chars": 921,
|
| 800 |
+
"completion_tokens": 8865,
|
| 801 |
+
"finish_reason": "stop",
|
| 802 |
+
"id": "recMicVBcqy1xM1jq",
|
| 803 |
+
"reasoning_chars": 23534,
|
| 804 |
+
"result": "pass",
|
| 805 |
+
"source": "GPQA Diamond",
|
| 806 |
+
"total_ms": 100289.881333,
|
| 807 |
+
"ttft_ms": 876.686458
|
| 808 |
+
},
|
| 809 |
+
{
|
| 810 |
+
"answer_chars": 182,
|
| 811 |
+
"completion_tokens": 3321,
|
| 812 |
+
"finish_reason": "stop",
|
| 813 |
+
"id": "e780f37a5baa4fe094cd9c157486664d",
|
| 814 |
+
"reasoning_chars": 14690,
|
| 815 |
+
"result": "fail",
|
| 816 |
+
"source": "SuperGPQA",
|
| 817 |
+
"total_ms": 39935.412625,
|
| 818 |
+
"ttft_ms": 539.244791
|
| 819 |
+
},
|
| 820 |
+
{
|
| 821 |
+
"answer_chars": 1460,
|
| 822 |
+
"completion_tokens": 28421,
|
| 823 |
+
"finish_reason": "stop",
|
| 824 |
+
"id": "aime2025-30",
|
| 825 |
+
"reasoning_chars": 70913,
|
| 826 |
+
"result": "pass",
|
| 827 |
+
"source": "AIME2025",
|
| 828 |
+
"total_ms": 333739.869917,
|
| 829 |
+
"ttft_ms": 483.025875
|
| 830 |
+
},
|
| 831 |
+
{
|
| 832 |
+
"answer_chars": 10,
|
| 833 |
+
"completion_tokens": 1786,
|
| 834 |
+
"finish_reason": "stop",
|
| 835 |
+
"id": "compsec-076",
|
| 836 |
+
"reasoning_chars": 7182,
|
| 837 |
+
"result": "pass",
|
| 838 |
+
"source": "COMPSEC",
|
| 839 |
+
"total_ms": 22333.537041,
|
| 840 |
+
"ttft_ms": 857.504375
|
| 841 |
+
},
|
| 842 |
+
{
|
| 843 |
+
"answer_chars": 10,
|
| 844 |
+
"completion_tokens": 8356,
|
| 845 |
+
"finish_reason": "stop",
|
| 846 |
+
"id": "compsec-077",
|
| 847 |
+
"reasoning_chars": 29427,
|
| 848 |
+
"result": "pass",
|
| 849 |
+
"source": "COMPSEC",
|
| 850 |
+
"total_ms": 97578.713708,
|
| 851 |
+
"ttft_ms": 565.4876250000001
|
| 852 |
+
},
|
| 853 |
+
{
|
| 854 |
+
"answer_chars": 10,
|
| 855 |
+
"completion_tokens": 1016,
|
| 856 |
+
"finish_reason": "stop",
|
| 857 |
+
"id": "compsec-078",
|
| 858 |
+
"reasoning_chars": 3729,
|
| 859 |
+
"result": "pass",
|
| 860 |
+
"source": "COMPSEC",
|
| 861 |
+
"total_ms": 11978.9155,
|
| 862 |
+
"ttft_ms": 645.03025
|
| 863 |
+
},
|
| 864 |
+
{
|
| 865 |
+
"answer_chars": 10,
|
| 866 |
+
"completion_tokens": 5771,
|
| 867 |
+
"finish_reason": "stop",
|
| 868 |
+
"id": "compsec-079",
|
| 869 |
+
"reasoning_chars": 25159,
|
| 870 |
+
"result": "pass",
|
| 871 |
+
"source": "COMPSEC",
|
| 872 |
+
"total_ms": 72865.583541,
|
| 873 |
+
"ttft_ms": 650.810625
|
| 874 |
+
},
|
| 875 |
+
{
|
| 876 |
+
"answer_chars": 9,
|
| 877 |
+
"completion_tokens": 5416,
|
| 878 |
+
"finish_reason": "stop",
|
| 879 |
+
"id": "compsec-080",
|
| 880 |
+
"reasoning_chars": 24033,
|
| 881 |
+
"result": "pass",
|
| 882 |
+
"source": "COMPSEC",
|
| 883 |
+
"total_ms": 68310.592584,
|
| 884 |
+
"ttft_ms": 553.357459
|
| 885 |
+
},
|
| 886 |
+
{
|
| 887 |
+
"answer_chars": 10,
|
| 888 |
+
"completion_tokens": 16465,
|
| 889 |
+
"finish_reason": "stop",
|
| 890 |
+
"id": "compsec-081",
|
| 891 |
+
"reasoning_chars": 64895,
|
| 892 |
+
"result": "pass",
|
| 893 |
+
"source": "COMPSEC",
|
| 894 |
+
"total_ms": 201030.182166,
|
| 895 |
+
"ttft_ms": 666.184166
|
| 896 |
+
},
|
| 897 |
+
{
|
| 898 |
+
"answer_chars": 9,
|
| 899 |
+
"completion_tokens": 12261,
|
| 900 |
+
"finish_reason": "stop",
|
| 901 |
+
"id": "compsec-082",
|
| 902 |
+
"reasoning_chars": 48679,
|
| 903 |
+
"result": "pass",
|
| 904 |
+
"source": "COMPSEC",
|
| 905 |
+
"total_ms": 153512.559875,
|
| 906 |
+
"ttft_ms": 830.349083
|
| 907 |
+
},
|
| 908 |
+
{
|
| 909 |
+
"answer_chars": 10,
|
| 910 |
+
"completion_tokens": 17304,
|
| 911 |
+
"finish_reason": "stop",
|
| 912 |
+
"id": "compsec-083",
|
| 913 |
+
"reasoning_chars": 65547,
|
| 914 |
+
"result": "pass",
|
| 915 |
+
"source": "COMPSEC",
|
| 916 |
+
"total_ms": 217749.60100000002,
|
| 917 |
+
"ttft_ms": 697.829041
|
| 918 |
+
},
|
| 919 |
+
{
|
| 920 |
+
"answer_chars": 9,
|
| 921 |
+
"completion_tokens": 693,
|
| 922 |
+
"finish_reason": "stop",
|
| 923 |
+
"id": "compsec-084",
|
| 924 |
+
"reasoning_chars": 2434,
|
| 925 |
+
"result": "pass",
|
| 926 |
+
"source": "COMPSEC",
|
| 927 |
+
"total_ms": 8961.636875,
|
| 928 |
+
"ttft_ms": 717.026917
|
| 929 |
+
},
|
| 930 |
+
{
|
| 931 |
+
"answer_chars": 9,
|
| 932 |
+
"completion_tokens": 6334,
|
| 933 |
+
"finish_reason": "stop",
|
| 934 |
+
"id": "compsec-085",
|
| 935 |
+
"reasoning_chars": 24580,
|
| 936 |
+
"result": "pass",
|
| 937 |
+
"source": "COMPSEC",
|
| 938 |
+
"total_ms": 79052.252583,
|
| 939 |
+
"ttft_ms": 501.243542
|
| 940 |
+
},
|
| 941 |
+
{
|
| 942 |
+
"answer_chars": 9,
|
| 943 |
+
"completion_tokens": 1200,
|
| 944 |
+
"finish_reason": "stop",
|
| 945 |
+
"id": "compsec-086",
|
| 946 |
+
"reasoning_chars": 4644,
|
| 947 |
+
"result": "pass",
|
| 948 |
+
"source": "COMPSEC",
|
| 949 |
+
"total_ms": 14616.335791000001,
|
| 950 |
+
"ttft_ms": 662.555333
|
| 951 |
+
},
|
| 952 |
+
{
|
| 953 |
+
"answer_chars": 9,
|
| 954 |
+
"completion_tokens": 12658,
|
| 955 |
+
"finish_reason": "stop",
|
| 956 |
+
"id": "compsec-087",
|
| 957 |
+
"reasoning_chars": 43808,
|
| 958 |
+
"result": "pass",
|
| 959 |
+
"source": "COMPSEC",
|
| 960 |
+
"total_ms": 152057.35204199998,
|
| 961 |
+
"ttft_ms": 601.607334
|
| 962 |
+
},
|
| 963 |
+
{
|
| 964 |
+
"answer_chars": 10,
|
| 965 |
+
"completion_tokens": 1151,
|
| 966 |
+
"finish_reason": "stop",
|
| 967 |
+
"id": "compsec-088",
|
| 968 |
+
"reasoning_chars": 4418,
|
| 969 |
+
"result": "pass",
|
| 970 |
+
"source": "COMPSEC",
|
| 971 |
+
"total_ms": 14193.834041,
|
| 972 |
+
"ttft_ms": 634.264666
|
| 973 |
+
},
|
| 974 |
+
{
|
| 975 |
+
"answer_chars": 10,
|
| 976 |
+
"completion_tokens": 649,
|
| 977 |
+
"finish_reason": "stop",
|
| 978 |
+
"id": "compsec-089",
|
| 979 |
+
"reasoning_chars": 2212,
|
| 980 |
+
"result": "pass",
|
| 981 |
+
"source": "COMPSEC",
|
| 982 |
+
"total_ms": 7471.202291,
|
| 983 |
+
"ttft_ms": 511.90250000000003
|
| 984 |
+
},
|
| 985 |
+
{
|
| 986 |
+
"answer_chars": 10,
|
| 987 |
+
"completion_tokens": 780,
|
| 988 |
+
"finish_reason": "stop",
|
| 989 |
+
"id": "compsec-090",
|
| 990 |
+
"reasoning_chars": 2576,
|
| 991 |
+
"result": "pass",
|
| 992 |
+
"source": "COMPSEC",
|
| 993 |
+
"total_ms": 8964.221792,
|
| 994 |
+
"ttft_ms": 604.6085
|
| 995 |
+
},
|
| 996 |
+
{
|
| 997 |
+
"answer_chars": 9,
|
| 998 |
+
"completion_tokens": 622,
|
| 999 |
+
"finish_reason": "stop",
|
| 1000 |
+
"id": "compsec-091",
|
| 1001 |
+
"reasoning_chars": 2311,
|
| 1002 |
+
"result": "pass",
|
| 1003 |
+
"source": "COMPSEC",
|
| 1004 |
+
"total_ms": 7727.497917,
|
| 1005 |
+
"ttft_ms": 499.007833
|
| 1006 |
+
},
|
| 1007 |
+
{
|
| 1008 |
+
"answer_chars": 10,
|
| 1009 |
+
"completion_tokens": 2318,
|
| 1010 |
+
"finish_reason": "stop",
|
| 1011 |
+
"id": "compsec-092",
|
| 1012 |
+
"reasoning_chars": 9552,
|
| 1013 |
+
"result": "pass",
|
| 1014 |
+
"source": "COMPSEC",
|
| 1015 |
+
"total_ms": 28152.645,
|
| 1016 |
+
"ttft_ms": 538.3396660000001
|
| 1017 |
+
}
|
| 1018 |
+
],
|
| 1019 |
+
"config": {
|
| 1020 |
+
"max_tokens": 32768,
|
| 1021 |
+
"seed": 42,
|
| 1022 |
+
"temperature": 0.0
|
| 1023 |
+
},
|
| 1024 |
+
"exhausted": 9,
|
| 1025 |
+
"failed_answered": 5,
|
| 1026 |
+
"model": "iq4-mtp",
|
| 1027 |
+
"passed": 78
|
| 1028 |
+
}
|
bench/q8/config-public.txt
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
run: q8-mtp
|
| 2 |
+
date: 2026-08-16T02:52:51+02:00
|
| 3 |
+
driver: bench-baselines-mtp.sh @ 4d81187
|
| 4 |
+
bs4: bs4 (our eval harness; not public)
|
| 5 |
+
serve_cmd: ~/llama.cpp/build-mtp/bin/llama-server -m ~/models/Qwen3.8-27B-Q8_0.gguf -md ~/models/Qwen3.8-27B-MTP-ONLY-Q8_0.gguf --spec-draft-n-max 3 -c 131072 -ctk q4_0 -ctv q4_0 -fa on -ngl 99 -ngld 99 --port 8083 --host 0.0.0.0
|
| 6 |
+
--- desktop side ---
|
| 7 |
+
llama.cpp: 22b8e31 (22b8e31)
|
| 8 |
+
model: 29047085024 bytes ~/models/Qwen3.8-27B-Q8_0.gguf
|
| 9 |
+
draft: 4503398688 bytes
|
| 10 |
+
gpu: NVIDIA RTX PRO 6000 Blackwell Workstation Edition, 250.00 W, 97887 MiB
|
| 11 |
+
driver_ver: 610.57.04
|
| 12 |
+
|
| 13 |
+
sampler: temperature 0.0, seed 42, max_tokens 32768 (sent by the eval client in each request body; source: qa-eval-1786853047.json)
|
| 14 |
+
|
| 15 |
+
--- server /props at run start ---
|
| 16 |
+
{
|
| 17 |
+
"_note": "SERVER DEFAULTS ONLY — these are what llama-server starts with, NOT what the eval used. Every request overrides them per the 'sampler:' line above (temperature 0, fixed seed). model_ftype is llama.cpp's coarse single-label for the file; for a per-tensor mix it does not describe the quantization.",
|
| 18 |
+
"build_info": "b93-22b8e31",
|
| 19 |
+
"model_ftype": "Q8_0",
|
| 20 |
+
"n_ctx": 131072,
|
| 21 |
+
"total_slots": 4,
|
| 22 |
+
"sampler_defaults": {
|
| 23 |
+
"temperature": 1.0,
|
| 24 |
+
"top_k": 20,
|
| 25 |
+
"top_p": 0.949999988079071,
|
| 26 |
+
"min_p": 0.05000000074505806,
|
| 27 |
+
"repeat_penalty": 1.0,
|
| 28 |
+
"samplers": [
|
| 29 |
+
"penalties",
|
| 30 |
+
"dry",
|
| 31 |
+
"top_n_sigma",
|
| 32 |
+
"top_k",
|
| 33 |
+
"typ_p",
|
| 34 |
+
"top_p",
|
| 35 |
+
"min_p",
|
| 36 |
+
"xtc",
|
| 37 |
+
"temperature"
|
| 38 |
+
]
|
| 39 |
+
},
|
| 40 |
+
"chat_template": "<omitted: ~30KB jinja, no reproduction value>"
|
| 41 |
+
}
|
| 42 |
+
|
| 43 |
+
--- publication note ---
|
| 44 |
+
Scrubbed for publication by sanitize-config.py: hostnames, internal
|
| 45 |
+
repo paths and home paths removed, GPU index omitted (immaterial —
|
| 46 |
+
one card, one power cap), chat template omitted for size. Everything
|
| 47 |
+
that affects the measurement is kept verbatim.
|
bench/q8/qa-eval-1786853047.csv
ADDED
|
@@ -0,0 +1,93 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
id,source,domain,result,reasoning_chars,answer_chars,completion_tokens,finish_reason,ttft_ms,total_ms
|
| 2 |
+
recNu3MXkvWUzHZr9,GPQA Diamond,Physics,pass,4701,575,2116,stop,359.1,27456.6
|
| 3 |
+
001b51d76b4d422988f2c11f104a2c6c,SuperGPQA,Agronomy,pass,1958,9,473,stop,441.6,6207.8
|
| 4 |
+
aime2025-01,AIME2025,Number Theory,pass,1234,414,731,stop,451.2,9283.4
|
| 5 |
+
recoiTJPGUmzAkief,GPQA Diamond,Physics,pass,13843,363,3178,stop,554.4,51646.3
|
| 6 |
+
b7e20eac98764fb0bf30e8366d951daa,SuperGPQA,Engineering,fail,51804,422,14665,stop,578.1,198819.5
|
| 7 |
+
aime2025-16,AIME2025,Geometry,pass,3571,731,1979,stop,582.0,26516.6
|
| 8 |
+
rec4UqStf9WUVif1f,GPQA Diamond,Physics,pass,1470,418,972,stop,497.7,12552.1
|
| 9 |
+
4a1d1780a93f4093b6fb7d3c314cbea8,SuperGPQA,Engineering,fail,16691,159,3560,stop,458.6,56200.7
|
| 10 |
+
aime2025-02,AIME2025,Geometry,pass,40824,1421,16615,stop,801.5,238811.1
|
| 11 |
+
recgI6tUQ7RLJRWGx,GPQA Diamond,Physics,pass,4160,618,1764,stop,666.9,25740.6
|
| 12 |
+
6082513c8dba4ec68aa68f1bf5854d09,SuperGPQA,Law,pass,4232,9,857,stop,473.7,12780.1
|
| 13 |
+
aime2025-03,AIME2025,Combinatorics,pass,1870,612,1006,stop,470.3,13878.7
|
| 14 |
+
recDytVnNYZe2HuUU,GPQA Diamond (modified),Physics,pass,5351,517,2426,stop,470.2,34159.0
|
| 15 |
+
bebf1ed45ae14ad7b4f205f3909cb58a,SuperGPQA,Literature and Arts,pass,1604,9,435,stop,511.8,6477.3
|
| 16 |
+
aime2025-18,AIME2025,Combinatorics,pass,16032,1430,5814,stop,552.6,84963.1
|
| 17 |
+
recNFJjE5PPTqVJGv,GPQA Diamond,Chemistry,pass,2829,772,1507,stop,539.0,20557.4
|
| 18 |
+
7ca71b86327744b78e93185a45bc5cef,SuperGPQA,Medicine,pass,12862,9,3097,stop,494.5,45193.0
|
| 19 |
+
aime2025-04,AIME2025,Algebra,pass,1826,657,1117,stop,463.3,14533.8
|
| 20 |
+
rec2UlKqC6RFHdcro,GPQA Diamond,Physics,pass,4151,606,1818,stop,482.6,26101.1
|
| 21 |
+
d44b94f7749345a39a65f6312bda8764,SuperGPQA,Engineering,pass,4443,325,1401,stop,488.7,22851.7
|
| 22 |
+
aime2025-19,AIME2025,Algebra,pass,3650,1060,2353,stop,506.2,30637.1
|
| 23 |
+
recv7GsQg3f0fvB1f,GPQA Diamond,Chemistry,pass,56548,672,13521,stop,622.7,207777.7
|
| 24 |
+
febe406f44d74a40b50bb5b7c69d5dc1,SuperGPQA,Sociology,pass,15522,127,3565,stop,634.0,49053.7
|
| 25 |
+
aime2025-05,AIME2025,"Combinatorics, Number Theory",pass,9752,1313,4515,stop,477.3,63086.6
|
| 26 |
+
recrHBEJJoDTV05JR,GPQA Diamond,Chemistry,pass,47078,962,14733,stop,531.7,218094.1
|
| 27 |
+
31950dc80ded400a9181f50626d1f75c,SuperGPQA,Science,pass,909,325,540,stop,611.9,7376.5
|
| 28 |
+
aime2025-06,AIME2025,Geometry,pass,4389,873,1956,stop,452.1,27535.9
|
| 29 |
+
recb80OwMgNnceA9t,GPQA Diamond,Chemistry,exhausted,91845,0,32768,length,510.6,502161.4
|
| 30 |
+
0f14cd17be174618af6d60227e7dca9f,SuperGPQA,Engineering,pass,6986,915,2978,stop,1168.0,43433.6
|
| 31 |
+
aime2025-21,AIME2025,"Algebra, Geometry",pass,11657,1321,4517,stop,870.1,62776.6
|
| 32 |
+
recA1i5ZAh0Uzclxp,GPQA Diamond,Chemistry,pass,45301,989,14450,stop,575.5,214332.1
|
| 33 |
+
cef9bcc087434cc2b4e354a9baef55eb,SuperGPQA,Engineering,pass,1056,485,857,stop,795.8,10955.6
|
| 34 |
+
aime2025-07,AIME2025,Combinatorics,pass,19495,1795,7143,stop,510.8,107042.8
|
| 35 |
+
recqGD3fxPCI59vPQ,GPQA Diamond,Physics,pass,24812,727,7297,stop,597.3,109647.1
|
| 36 |
+
9f93aa2cfdb547b5b3a4623f80f7fff6,SuperGPQA,Engineering,pass,2195,191,690,stop,552.2,10307.9
|
| 37 |
+
aime2025-22,AIME2025,Number Theory,fail,4202,1060,2030,stop,476.5,26262.3
|
| 38 |
+
rechKl68Uc6H7vU0N,GPQA Diamond,Chemistry,exhausted,101889,0,32768,length,589.7,486320.0
|
| 39 |
+
97ad69dda7b2462c98638b79e78aea0b,SuperGPQA,Medicine,pass,5808,122,1448,stop,817.8,20874.6
|
| 40 |
+
aime2025-08,AIME2025,Algebra,pass,5323,1096,2767,stop,471.5,35525.3
|
| 41 |
+
rec1zl5LvaatzGhFt,GPQA Diamond,Physics,pass,2285,401,835,stop,709.0,11320.5
|
| 42 |
+
e78e4e539d6f4e379ac140d923d7b1be,SuperGPQA,Military Science,fail,16665,9,3390,stop,473.8,50566.4
|
| 43 |
+
aime2025-09,AIME2025,Algebra,pass,46935,1669,20456,stop,511.9,280544.5
|
| 44 |
+
recTs7qzfJs6kfLUK,GPQA Diamond,Biology,pass,22405,339,7863,stop,946.2,114526.4
|
| 45 |
+
8483667a25e74fdfa3188de4ea734f03,SuperGPQA,Science,fail,102234,953,29267,stop,602.8,449802.7
|
| 46 |
+
aime2025-24,AIME2025,Algebra,pass,15429,1226,6515,stop,745.3,90301.1
|
| 47 |
+
rec32C1ZEapBnCC0E,GPQA Diamond,Physics,pass,5631,535,2513,stop,543.3,35348.5
|
| 48 |
+
e5ed76ef98144f06843125daf1bccd35,SuperGPQA,Science,pass,1871,335,1130,stop,501.8,14369.6
|
| 49 |
+
aime2025-10,AIME2025,Combinatorics,pass,41121,2097,14430,stop,662.9,207504.8
|
| 50 |
+
recZWeueB7lSPR6wN,GPQA Diamond,Chemistry,exhausted,111809,0,32768,length,622.6,506089.8
|
| 51 |
+
fd7924876c4845cd83d95d61dfa0b236,SuperGPQA,Sociology,pass,9416,9,1889,stop,788.7,27349.8
|
| 52 |
+
aime2025-25,AIME2025,Combinatorics,pass,33469,1381,11406,stop,467.4,163280.6
|
| 53 |
+
recVvpD8miVjmmyfe,GPQA Diamond,Biology,exhausted,71858,0,32768,length,563.9,480198.1
|
| 54 |
+
6bfe7d19299d4b3184636e1f51694306,SuperGPQA,Agronomy,pass,31232,597,9044,stop,917.5,123836.9
|
| 55 |
+
aime2025-26,AIME2025,Combinatorics,pass,20058,1038,6974,stop,564.9,101663.8
|
| 56 |
+
recAAJoHMW45Lv5je,GPQA Diamond,Chemistry,pass,56011,663,16947,stop,534.8,236405.8
|
| 57 |
+
e1825d70c5844c22933087eafa89e39c,SuperGPQA,Engineering,pass,1498,414,1013,stop,808.0,12681.6
|
| 58 |
+
aime2025-12,AIME2025,Algebra,pass,24641,1690,13523,stop,484.1,172934.2
|
| 59 |
+
reckEnrOPFT9Ru7tW,GPQA Diamond,Chemistry,pass,22555,770,7029,stop,690.7,102551.2
|
| 60 |
+
ab430ac3f18e4e02a2cb3f35498c6b30,SuperGPQA,Engineering,pass,8942,840,3568,stop,574.6,51126.2
|
| 61 |
+
aime2025-27,AIME2025,Geometry,pass,36498,1239,14283,stop,571.2,200309.2
|
| 62 |
+
rec8nshandHARTkrg,GPQA Diamond,Chemistry,pass,73328,498,22955,stop,878.6,326324.8
|
| 63 |
+
e8c5da5ca40647158b0c91dd695c6243,SuperGPQA,Science,pass,6470,705,2750,stop,901.4,37356.8
|
| 64 |
+
aime2025-13,AIME2025,Combinatorics,exhausted,113865,0,32768,length,526.0,469657.6
|
| 65 |
+
recFaL6j8UMhutXrc,GPQA Diamond,Chemistry,pass,86504,1575,28289,stop,944.9,400071.8
|
| 66 |
+
05efdc6fb2404ddc8dd5729bb68c74e5,SuperGPQA,Science,pass,3248,655,2132,stop,791.7,26802.9
|
| 67 |
+
aime2025-28,AIME2025,Number Theory,exhausted,64329,0,32768,length,493.0,455399.0
|
| 68 |
+
reczQ4I0VpENdMtIj,GPQA Diamond,Biology,pass,29362,335,6207,stop,786.8,91141.2
|
| 69 |
+
ba52e06cbe1a4310a77a7d12cd1db943,SuperGPQA,Science,pass,27339,292,9504,stop,771.0,125482.9
|
| 70 |
+
aime2025-29,AIME2025,Geometry,pass,63742,1669,27648,stop,594.1,381561.2
|
| 71 |
+
recWxGU8Q4YReJ1tb,GPQA Diamond,Chemistry,exhausted,98325,0,32768,length,1088.5,477832.9
|
| 72 |
+
591a77df21324272914be82ac6583399,SuperGPQA,Science,fail,2190,330,1124,stop,872.8,15071.5
|
| 73 |
+
aime2025-15,AIME2025,Number Theory,exhausted,77388,0,32768,length,438.5,488279.0
|
| 74 |
+
recMicVBcqy1xM1jq,GPQA Diamond,Physics,pass,38300,610,14108,stop,823.6,201131.7
|
| 75 |
+
e780f37a5baa4fe094cd9c157486664d,SuperGPQA,Sociology,fail,30028,345,6801,stop,635.0,100085.7
|
| 76 |
+
aime2025-30,AIME2025,Algebra,pass,54238,1827,23088,stop,500.9,328146.3
|
| 77 |
+
compsec-076,COMPSEC,FreeBSD / librpcsec_gss,pass,6439,10,1671,stop,896.4,24692.0
|
| 78 |
+
compsec-077,COMPSEC,GNU Inetutils telnetd,pass,24880,10,6698,stop,601.0,100004.4
|
| 79 |
+
compsec-078,COMPSEC,Botan,pass,2685,10,749,stop,684.5,11191.5
|
| 80 |
+
compsec-079,COMPSEC,Botan,pass,32135,10,7426,stop,600.3,118136.7
|
| 81 |
+
compsec-080,COMPSEC,Botan,pass,12486,9,2731,stop,632.1,43336.2
|
| 82 |
+
compsec-081,COMPSEC,uds-c,pass,27125,10,6657,stop,608.0,99869.3
|
| 83 |
+
compsec-082,COMPSEC,Firebird,pass,31725,10,7949,stop,685.8,122373.6
|
| 84 |
+
compsec-083,COMPSEC,Firebird,pass,43646,10,11357,stop,645.8,176298.5
|
| 85 |
+
compsec-084,COMPSEC,PHP,pass,3979,9,1046,stop,640.8,15888.1
|
| 86 |
+
compsec-085,COMPSEC,PHP PDO Firebird,pass,7012,9,1764,stop,483.2,27259.2
|
| 87 |
+
compsec-086,COMPSEC,libexpat,pass,5129,9,1352,stop,699.8,20433.3
|
| 88 |
+
compsec-087,COMPSEC,Mbed TLS,pass,10591,9,2933,stop,602.9,43862.8
|
| 89 |
+
compsec-088,COMPSEC,Mbed TLS,pass,9526,10,2381,stop,595.7,36932.5
|
| 90 |
+
compsec-089,COMPSEC,Mbed TLS,pass,2845,10,772,stop,522.1,11385.1
|
| 91 |
+
compsec-090,COMPSEC,Linux kernel,pass,4157,10,1157,stop,562.5,16899.3
|
| 92 |
+
compsec-091,COMPSEC,Linux kernel USB gadget storage,pass,2443,9,643,stop,596.1,9724.6
|
| 93 |
+
compsec-092,COMPSEC,Linux kernel AppArmor,pass,9002,10,2142,stop,538.2,32139.2
|
bench/q8/qa-eval-1786853047.json
ADDED
|
@@ -0,0 +1,1028 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"accuracy": 0.8369565217391305,
|
| 3 |
+
"bench_version": "0.1.0",
|
| 4 |
+
"cases": 92,
|
| 5 |
+
"cases_detail": [
|
| 6 |
+
{
|
| 7 |
+
"answer_chars": 575,
|
| 8 |
+
"completion_tokens": 2116,
|
| 9 |
+
"finish_reason": "stop",
|
| 10 |
+
"id": "recNu3MXkvWUzHZr9",
|
| 11 |
+
"reasoning_chars": 4701,
|
| 12 |
+
"result": "pass",
|
| 13 |
+
"source": "GPQA Diamond",
|
| 14 |
+
"total_ms": 27456.625834000002,
|
| 15 |
+
"ttft_ms": 359.130959
|
| 16 |
+
},
|
| 17 |
+
{
|
| 18 |
+
"answer_chars": 9,
|
| 19 |
+
"completion_tokens": 473,
|
| 20 |
+
"finish_reason": "stop",
|
| 21 |
+
"id": "001b51d76b4d422988f2c11f104a2c6c",
|
| 22 |
+
"reasoning_chars": 1958,
|
| 23 |
+
"result": "pass",
|
| 24 |
+
"source": "SuperGPQA",
|
| 25 |
+
"total_ms": 6207.820583000001,
|
| 26 |
+
"ttft_ms": 441.594125
|
| 27 |
+
},
|
| 28 |
+
{
|
| 29 |
+
"answer_chars": 414,
|
| 30 |
+
"completion_tokens": 731,
|
| 31 |
+
"finish_reason": "stop",
|
| 32 |
+
"id": "aime2025-01",
|
| 33 |
+
"reasoning_chars": 1234,
|
| 34 |
+
"result": "pass",
|
| 35 |
+
"source": "AIME2025",
|
| 36 |
+
"total_ms": 9283.4445,
|
| 37 |
+
"ttft_ms": 451.192625
|
| 38 |
+
},
|
| 39 |
+
{
|
| 40 |
+
"answer_chars": 363,
|
| 41 |
+
"completion_tokens": 3178,
|
| 42 |
+
"finish_reason": "stop",
|
| 43 |
+
"id": "recoiTJPGUmzAkief",
|
| 44 |
+
"reasoning_chars": 13843,
|
| 45 |
+
"result": "pass",
|
| 46 |
+
"source": "GPQA Diamond",
|
| 47 |
+
"total_ms": 51646.299917000004,
|
| 48 |
+
"ttft_ms": 554.41025
|
| 49 |
+
},
|
| 50 |
+
{
|
| 51 |
+
"answer_chars": 422,
|
| 52 |
+
"completion_tokens": 14665,
|
| 53 |
+
"finish_reason": "stop",
|
| 54 |
+
"id": "b7e20eac98764fb0bf30e8366d951daa",
|
| 55 |
+
"reasoning_chars": 51804,
|
| 56 |
+
"result": "fail",
|
| 57 |
+
"source": "SuperGPQA",
|
| 58 |
+
"total_ms": 198819.493416,
|
| 59 |
+
"ttft_ms": 578.119458
|
| 60 |
+
},
|
| 61 |
+
{
|
| 62 |
+
"answer_chars": 731,
|
| 63 |
+
"completion_tokens": 1979,
|
| 64 |
+
"finish_reason": "stop",
|
| 65 |
+
"id": "aime2025-16",
|
| 66 |
+
"reasoning_chars": 3571,
|
| 67 |
+
"result": "pass",
|
| 68 |
+
"source": "AIME2025",
|
| 69 |
+
"total_ms": 26516.596374999997,
|
| 70 |
+
"ttft_ms": 581.993291
|
| 71 |
+
},
|
| 72 |
+
{
|
| 73 |
+
"answer_chars": 418,
|
| 74 |
+
"completion_tokens": 972,
|
| 75 |
+
"finish_reason": "stop",
|
| 76 |
+
"id": "rec4UqStf9WUVif1f",
|
| 77 |
+
"reasoning_chars": 1470,
|
| 78 |
+
"result": "pass",
|
| 79 |
+
"source": "GPQA Diamond",
|
| 80 |
+
"total_ms": 12552.091125,
|
| 81 |
+
"ttft_ms": 497.682875
|
| 82 |
+
},
|
| 83 |
+
{
|
| 84 |
+
"answer_chars": 159,
|
| 85 |
+
"completion_tokens": 3560,
|
| 86 |
+
"finish_reason": "stop",
|
| 87 |
+
"id": "4a1d1780a93f4093b6fb7d3c314cbea8",
|
| 88 |
+
"reasoning_chars": 16691,
|
| 89 |
+
"result": "fail",
|
| 90 |
+
"source": "SuperGPQA",
|
| 91 |
+
"total_ms": 56200.715375,
|
| 92 |
+
"ttft_ms": 458.59191599999997
|
| 93 |
+
},
|
| 94 |
+
{
|
| 95 |
+
"answer_chars": 1421,
|
| 96 |
+
"completion_tokens": 16615,
|
| 97 |
+
"finish_reason": "stop",
|
| 98 |
+
"id": "aime2025-02",
|
| 99 |
+
"reasoning_chars": 40824,
|
| 100 |
+
"result": "pass",
|
| 101 |
+
"source": "AIME2025",
|
| 102 |
+
"total_ms": 238811.061625,
|
| 103 |
+
"ttft_ms": 801.4995
|
| 104 |
+
},
|
| 105 |
+
{
|
| 106 |
+
"answer_chars": 618,
|
| 107 |
+
"completion_tokens": 1764,
|
| 108 |
+
"finish_reason": "stop",
|
| 109 |
+
"id": "recgI6tUQ7RLJRWGx",
|
| 110 |
+
"reasoning_chars": 4160,
|
| 111 |
+
"result": "pass",
|
| 112 |
+
"source": "GPQA Diamond",
|
| 113 |
+
"total_ms": 25740.642417,
|
| 114 |
+
"ttft_ms": 666.9044170000001
|
| 115 |
+
},
|
| 116 |
+
{
|
| 117 |
+
"answer_chars": 9,
|
| 118 |
+
"completion_tokens": 857,
|
| 119 |
+
"finish_reason": "stop",
|
| 120 |
+
"id": "6082513c8dba4ec68aa68f1bf5854d09",
|
| 121 |
+
"reasoning_chars": 4232,
|
| 122 |
+
"result": "pass",
|
| 123 |
+
"source": "SuperGPQA",
|
| 124 |
+
"total_ms": 12780.08675,
|
| 125 |
+
"ttft_ms": 473.662417
|
| 126 |
+
},
|
| 127 |
+
{
|
| 128 |
+
"answer_chars": 612,
|
| 129 |
+
"completion_tokens": 1006,
|
| 130 |
+
"finish_reason": "stop",
|
| 131 |
+
"id": "aime2025-03",
|
| 132 |
+
"reasoning_chars": 1870,
|
| 133 |
+
"result": "pass",
|
| 134 |
+
"source": "AIME2025",
|
| 135 |
+
"total_ms": 13878.669249999999,
|
| 136 |
+
"ttft_ms": 470.332417
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"answer_chars": 517,
|
| 140 |
+
"completion_tokens": 2426,
|
| 141 |
+
"finish_reason": "stop",
|
| 142 |
+
"id": "recDytVnNYZe2HuUU",
|
| 143 |
+
"reasoning_chars": 5351,
|
| 144 |
+
"result": "pass",
|
| 145 |
+
"source": "GPQA Diamond (modified)",
|
| 146 |
+
"total_ms": 34158.975875000004,
|
| 147 |
+
"ttft_ms": 470.16366700000003
|
| 148 |
+
},
|
| 149 |
+
{
|
| 150 |
+
"answer_chars": 9,
|
| 151 |
+
"completion_tokens": 435,
|
| 152 |
+
"finish_reason": "stop",
|
| 153 |
+
"id": "bebf1ed45ae14ad7b4f205f3909cb58a",
|
| 154 |
+
"reasoning_chars": 1604,
|
| 155 |
+
"result": "pass",
|
| 156 |
+
"source": "SuperGPQA",
|
| 157 |
+
"total_ms": 6477.3483750000005,
|
| 158 |
+
"ttft_ms": 511.84637499999997
|
| 159 |
+
},
|
| 160 |
+
{
|
| 161 |
+
"answer_chars": 1430,
|
| 162 |
+
"completion_tokens": 5814,
|
| 163 |
+
"finish_reason": "stop",
|
| 164 |
+
"id": "aime2025-18",
|
| 165 |
+
"reasoning_chars": 16032,
|
| 166 |
+
"result": "pass",
|
| 167 |
+
"source": "AIME2025",
|
| 168 |
+
"total_ms": 84963.127792,
|
| 169 |
+
"ttft_ms": 552.57425
|
| 170 |
+
},
|
| 171 |
+
{
|
| 172 |
+
"answer_chars": 772,
|
| 173 |
+
"completion_tokens": 1507,
|
| 174 |
+
"finish_reason": "stop",
|
| 175 |
+
"id": "recNFJjE5PPTqVJGv",
|
| 176 |
+
"reasoning_chars": 2829,
|
| 177 |
+
"result": "pass",
|
| 178 |
+
"source": "GPQA Diamond",
|
| 179 |
+
"total_ms": 20557.352708,
|
| 180 |
+
"ttft_ms": 539.001583
|
| 181 |
+
},
|
| 182 |
+
{
|
| 183 |
+
"answer_chars": 9,
|
| 184 |
+
"completion_tokens": 3097,
|
| 185 |
+
"finish_reason": "stop",
|
| 186 |
+
"id": "7ca71b86327744b78e93185a45bc5cef",
|
| 187 |
+
"reasoning_chars": 12862,
|
| 188 |
+
"result": "pass",
|
| 189 |
+
"source": "SuperGPQA",
|
| 190 |
+
"total_ms": 45193.0045,
|
| 191 |
+
"ttft_ms": 494.537625
|
| 192 |
+
},
|
| 193 |
+
{
|
| 194 |
+
"answer_chars": 657,
|
| 195 |
+
"completion_tokens": 1117,
|
| 196 |
+
"finish_reason": "stop",
|
| 197 |
+
"id": "aime2025-04",
|
| 198 |
+
"reasoning_chars": 1826,
|
| 199 |
+
"result": "pass",
|
| 200 |
+
"source": "AIME2025",
|
| 201 |
+
"total_ms": 14533.831750000001,
|
| 202 |
+
"ttft_ms": 463.292792
|
| 203 |
+
},
|
| 204 |
+
{
|
| 205 |
+
"answer_chars": 606,
|
| 206 |
+
"completion_tokens": 1818,
|
| 207 |
+
"finish_reason": "stop",
|
| 208 |
+
"id": "rec2UlKqC6RFHdcro",
|
| 209 |
+
"reasoning_chars": 4151,
|
| 210 |
+
"result": "pass",
|
| 211 |
+
"source": "GPQA Diamond",
|
| 212 |
+
"total_ms": 26101.106375,
|
| 213 |
+
"ttft_ms": 482.605875
|
| 214 |
+
},
|
| 215 |
+
{
|
| 216 |
+
"answer_chars": 325,
|
| 217 |
+
"completion_tokens": 1401,
|
| 218 |
+
"finish_reason": "stop",
|
| 219 |
+
"id": "d44b94f7749345a39a65f6312bda8764",
|
| 220 |
+
"reasoning_chars": 4443,
|
| 221 |
+
"result": "pass",
|
| 222 |
+
"source": "SuperGPQA",
|
| 223 |
+
"total_ms": 22851.748375,
|
| 224 |
+
"ttft_ms": 488.66375
|
| 225 |
+
},
|
| 226 |
+
{
|
| 227 |
+
"answer_chars": 1060,
|
| 228 |
+
"completion_tokens": 2353,
|
| 229 |
+
"finish_reason": "stop",
|
| 230 |
+
"id": "aime2025-19",
|
| 231 |
+
"reasoning_chars": 3650,
|
| 232 |
+
"result": "pass",
|
| 233 |
+
"source": "AIME2025",
|
| 234 |
+
"total_ms": 30637.0505,
|
| 235 |
+
"ttft_ms": 506.202625
|
| 236 |
+
},
|
| 237 |
+
{
|
| 238 |
+
"answer_chars": 672,
|
| 239 |
+
"completion_tokens": 13521,
|
| 240 |
+
"finish_reason": "stop",
|
| 241 |
+
"id": "recv7GsQg3f0fvB1f",
|
| 242 |
+
"reasoning_chars": 56548,
|
| 243 |
+
"result": "pass",
|
| 244 |
+
"source": "GPQA Diamond",
|
| 245 |
+
"total_ms": 207777.664042,
|
| 246 |
+
"ttft_ms": 622.6594170000001
|
| 247 |
+
},
|
| 248 |
+
{
|
| 249 |
+
"answer_chars": 127,
|
| 250 |
+
"completion_tokens": 3565,
|
| 251 |
+
"finish_reason": "stop",
|
| 252 |
+
"id": "febe406f44d74a40b50bb5b7c69d5dc1",
|
| 253 |
+
"reasoning_chars": 15522,
|
| 254 |
+
"result": "pass",
|
| 255 |
+
"source": "SuperGPQA",
|
| 256 |
+
"total_ms": 49053.660875,
|
| 257 |
+
"ttft_ms": 633.976583
|
| 258 |
+
},
|
| 259 |
+
{
|
| 260 |
+
"answer_chars": 1313,
|
| 261 |
+
"completion_tokens": 4515,
|
| 262 |
+
"finish_reason": "stop",
|
| 263 |
+
"id": "aime2025-05",
|
| 264 |
+
"reasoning_chars": 9752,
|
| 265 |
+
"result": "pass",
|
| 266 |
+
"source": "AIME2025",
|
| 267 |
+
"total_ms": 63086.649083,
|
| 268 |
+
"ttft_ms": 477.33354099999997
|
| 269 |
+
},
|
| 270 |
+
{
|
| 271 |
+
"answer_chars": 962,
|
| 272 |
+
"completion_tokens": 14733,
|
| 273 |
+
"finish_reason": "stop",
|
| 274 |
+
"id": "recrHBEJJoDTV05JR",
|
| 275 |
+
"reasoning_chars": 47078,
|
| 276 |
+
"result": "pass",
|
| 277 |
+
"source": "GPQA Diamond",
|
| 278 |
+
"total_ms": 218094.104166,
|
| 279 |
+
"ttft_ms": 531.713791
|
| 280 |
+
},
|
| 281 |
+
{
|
| 282 |
+
"answer_chars": 325,
|
| 283 |
+
"completion_tokens": 540,
|
| 284 |
+
"finish_reason": "stop",
|
| 285 |
+
"id": "31950dc80ded400a9181f50626d1f75c",
|
| 286 |
+
"reasoning_chars": 909,
|
| 287 |
+
"result": "pass",
|
| 288 |
+
"source": "SuperGPQA",
|
| 289 |
+
"total_ms": 7376.520375,
|
| 290 |
+
"ttft_ms": 611.90075
|
| 291 |
+
},
|
| 292 |
+
{
|
| 293 |
+
"answer_chars": 873,
|
| 294 |
+
"completion_tokens": 1956,
|
| 295 |
+
"finish_reason": "stop",
|
| 296 |
+
"id": "aime2025-06",
|
| 297 |
+
"reasoning_chars": 4389,
|
| 298 |
+
"result": "pass",
|
| 299 |
+
"source": "AIME2025",
|
| 300 |
+
"total_ms": 27535.874750000003,
|
| 301 |
+
"ttft_ms": 452.08575
|
| 302 |
+
},
|
| 303 |
+
{
|
| 304 |
+
"answer_chars": 0,
|
| 305 |
+
"completion_tokens": 32768,
|
| 306 |
+
"finish_reason": "length",
|
| 307 |
+
"id": "recb80OwMgNnceA9t",
|
| 308 |
+
"reasoning_chars": 91845,
|
| 309 |
+
"result": "exhausted",
|
| 310 |
+
"source": "GPQA Diamond",
|
| 311 |
+
"total_ms": 502161.387417,
|
| 312 |
+
"ttft_ms": 510.573417
|
| 313 |
+
},
|
| 314 |
+
{
|
| 315 |
+
"answer_chars": 915,
|
| 316 |
+
"completion_tokens": 2978,
|
| 317 |
+
"finish_reason": "stop",
|
| 318 |
+
"id": "0f14cd17be174618af6d60227e7dca9f",
|
| 319 |
+
"reasoning_chars": 6986,
|
| 320 |
+
"result": "pass",
|
| 321 |
+
"source": "SuperGPQA",
|
| 322 |
+
"total_ms": 43433.608958,
|
| 323 |
+
"ttft_ms": 1168.0147080000002
|
| 324 |
+
},
|
| 325 |
+
{
|
| 326 |
+
"answer_chars": 1321,
|
| 327 |
+
"completion_tokens": 4517,
|
| 328 |
+
"finish_reason": "stop",
|
| 329 |
+
"id": "aime2025-21",
|
| 330 |
+
"reasoning_chars": 11657,
|
| 331 |
+
"result": "pass",
|
| 332 |
+
"source": "AIME2025",
|
| 333 |
+
"total_ms": 62776.589708,
|
| 334 |
+
"ttft_ms": 870.065083
|
| 335 |
+
},
|
| 336 |
+
{
|
| 337 |
+
"answer_chars": 989,
|
| 338 |
+
"completion_tokens": 14450,
|
| 339 |
+
"finish_reason": "stop",
|
| 340 |
+
"id": "recA1i5ZAh0Uzclxp",
|
| 341 |
+
"reasoning_chars": 45301,
|
| 342 |
+
"result": "pass",
|
| 343 |
+
"source": "GPQA Diamond",
|
| 344 |
+
"total_ms": 214332.063125,
|
| 345 |
+
"ttft_ms": 575.4913750000001
|
| 346 |
+
},
|
| 347 |
+
{
|
| 348 |
+
"answer_chars": 485,
|
| 349 |
+
"completion_tokens": 857,
|
| 350 |
+
"finish_reason": "stop",
|
| 351 |
+
"id": "cef9bcc087434cc2b4e354a9baef55eb",
|
| 352 |
+
"reasoning_chars": 1056,
|
| 353 |
+
"result": "pass",
|
| 354 |
+
"source": "SuperGPQA",
|
| 355 |
+
"total_ms": 10955.635209,
|
| 356 |
+
"ttft_ms": 795.782584
|
| 357 |
+
},
|
| 358 |
+
{
|
| 359 |
+
"answer_chars": 1795,
|
| 360 |
+
"completion_tokens": 7143,
|
| 361 |
+
"finish_reason": "stop",
|
| 362 |
+
"id": "aime2025-07",
|
| 363 |
+
"reasoning_chars": 19495,
|
| 364 |
+
"result": "pass",
|
| 365 |
+
"source": "AIME2025",
|
| 366 |
+
"total_ms": 107042.78525,
|
| 367 |
+
"ttft_ms": 510.82020900000003
|
| 368 |
+
},
|
| 369 |
+
{
|
| 370 |
+
"answer_chars": 727,
|
| 371 |
+
"completion_tokens": 7297,
|
| 372 |
+
"finish_reason": "stop",
|
| 373 |
+
"id": "recqGD3fxPCI59vPQ",
|
| 374 |
+
"reasoning_chars": 24812,
|
| 375 |
+
"result": "pass",
|
| 376 |
+
"source": "GPQA Diamond",
|
| 377 |
+
"total_ms": 109647.099334,
|
| 378 |
+
"ttft_ms": 597.345667
|
| 379 |
+
},
|
| 380 |
+
{
|
| 381 |
+
"answer_chars": 191,
|
| 382 |
+
"completion_tokens": 690,
|
| 383 |
+
"finish_reason": "stop",
|
| 384 |
+
"id": "9f93aa2cfdb547b5b3a4623f80f7fff6",
|
| 385 |
+
"reasoning_chars": 2195,
|
| 386 |
+
"result": "pass",
|
| 387 |
+
"source": "SuperGPQA",
|
| 388 |
+
"total_ms": 10307.940125,
|
| 389 |
+
"ttft_ms": 552.197167
|
| 390 |
+
},
|
| 391 |
+
{
|
| 392 |
+
"answer_chars": 1060,
|
| 393 |
+
"completion_tokens": 2030,
|
| 394 |
+
"finish_reason": "stop",
|
| 395 |
+
"id": "aime2025-22",
|
| 396 |
+
"reasoning_chars": 4202,
|
| 397 |
+
"result": "fail",
|
| 398 |
+
"source": "AIME2025",
|
| 399 |
+
"total_ms": 26262.289125,
|
| 400 |
+
"ttft_ms": 476.522167
|
| 401 |
+
},
|
| 402 |
+
{
|
| 403 |
+
"answer_chars": 0,
|
| 404 |
+
"completion_tokens": 32768,
|
| 405 |
+
"finish_reason": "length",
|
| 406 |
+
"id": "rechKl68Uc6H7vU0N",
|
| 407 |
+
"reasoning_chars": 101889,
|
| 408 |
+
"result": "exhausted",
|
| 409 |
+
"source": "GPQA Diamond",
|
| 410 |
+
"total_ms": 486320.004375,
|
| 411 |
+
"ttft_ms": 589.710666
|
| 412 |
+
},
|
| 413 |
+
{
|
| 414 |
+
"answer_chars": 122,
|
| 415 |
+
"completion_tokens": 1448,
|
| 416 |
+
"finish_reason": "stop",
|
| 417 |
+
"id": "97ad69dda7b2462c98638b79e78aea0b",
|
| 418 |
+
"reasoning_chars": 5808,
|
| 419 |
+
"result": "pass",
|
| 420 |
+
"source": "SuperGPQA",
|
| 421 |
+
"total_ms": 20874.60025,
|
| 422 |
+
"ttft_ms": 817.808208
|
| 423 |
+
},
|
| 424 |
+
{
|
| 425 |
+
"answer_chars": 1096,
|
| 426 |
+
"completion_tokens": 2767,
|
| 427 |
+
"finish_reason": "stop",
|
| 428 |
+
"id": "aime2025-08",
|
| 429 |
+
"reasoning_chars": 5323,
|
| 430 |
+
"result": "pass",
|
| 431 |
+
"source": "AIME2025",
|
| 432 |
+
"total_ms": 35525.251958,
|
| 433 |
+
"ttft_ms": 471.541625
|
| 434 |
+
},
|
| 435 |
+
{
|
| 436 |
+
"answer_chars": 401,
|
| 437 |
+
"completion_tokens": 835,
|
| 438 |
+
"finish_reason": "stop",
|
| 439 |
+
"id": "rec1zl5LvaatzGhFt",
|
| 440 |
+
"reasoning_chars": 2285,
|
| 441 |
+
"result": "pass",
|
| 442 |
+
"source": "GPQA Diamond",
|
| 443 |
+
"total_ms": 11320.547542,
|
| 444 |
+
"ttft_ms": 708.979375
|
| 445 |
+
},
|
| 446 |
+
{
|
| 447 |
+
"answer_chars": 9,
|
| 448 |
+
"completion_tokens": 3390,
|
| 449 |
+
"finish_reason": "stop",
|
| 450 |
+
"id": "e78e4e539d6f4e379ac140d923d7b1be",
|
| 451 |
+
"reasoning_chars": 16665,
|
| 452 |
+
"result": "fail",
|
| 453 |
+
"source": "SuperGPQA",
|
| 454 |
+
"total_ms": 50566.380125,
|
| 455 |
+
"ttft_ms": 473.783833
|
| 456 |
+
},
|
| 457 |
+
{
|
| 458 |
+
"answer_chars": 1669,
|
| 459 |
+
"completion_tokens": 20456,
|
| 460 |
+
"finish_reason": "stop",
|
| 461 |
+
"id": "aime2025-09",
|
| 462 |
+
"reasoning_chars": 46935,
|
| 463 |
+
"result": "pass",
|
| 464 |
+
"source": "AIME2025",
|
| 465 |
+
"total_ms": 280544.515,
|
| 466 |
+
"ttft_ms": 511.88204199999996
|
| 467 |
+
},
|
| 468 |
+
{
|
| 469 |
+
"answer_chars": 339,
|
| 470 |
+
"completion_tokens": 7863,
|
| 471 |
+
"finish_reason": "stop",
|
| 472 |
+
"id": "recTs7qzfJs6kfLUK",
|
| 473 |
+
"reasoning_chars": 22405,
|
| 474 |
+
"result": "pass",
|
| 475 |
+
"source": "GPQA Diamond",
|
| 476 |
+
"total_ms": 114526.443333,
|
| 477 |
+
"ttft_ms": 946.1744170000001
|
| 478 |
+
},
|
| 479 |
+
{
|
| 480 |
+
"answer_chars": 953,
|
| 481 |
+
"completion_tokens": 29267,
|
| 482 |
+
"finish_reason": "stop",
|
| 483 |
+
"id": "8483667a25e74fdfa3188de4ea734f03",
|
| 484 |
+
"reasoning_chars": 102234,
|
| 485 |
+
"result": "fail",
|
| 486 |
+
"source": "SuperGPQA",
|
| 487 |
+
"total_ms": 449802.710541,
|
| 488 |
+
"ttft_ms": 602.766875
|
| 489 |
+
},
|
| 490 |
+
{
|
| 491 |
+
"answer_chars": 1226,
|
| 492 |
+
"completion_tokens": 6515,
|
| 493 |
+
"finish_reason": "stop",
|
| 494 |
+
"id": "aime2025-24",
|
| 495 |
+
"reasoning_chars": 15429,
|
| 496 |
+
"result": "pass",
|
| 497 |
+
"source": "AIME2025",
|
| 498 |
+
"total_ms": 90301.084666,
|
| 499 |
+
"ttft_ms": 745.3406249999999
|
| 500 |
+
},
|
| 501 |
+
{
|
| 502 |
+
"answer_chars": 535,
|
| 503 |
+
"completion_tokens": 2513,
|
| 504 |
+
"finish_reason": "stop",
|
| 505 |
+
"id": "rec32C1ZEapBnCC0E",
|
| 506 |
+
"reasoning_chars": 5631,
|
| 507 |
+
"result": "pass",
|
| 508 |
+
"source": "GPQA Diamond",
|
| 509 |
+
"total_ms": 35348.47425,
|
| 510 |
+
"ttft_ms": 543.251667
|
| 511 |
+
},
|
| 512 |
+
{
|
| 513 |
+
"answer_chars": 335,
|
| 514 |
+
"completion_tokens": 1130,
|
| 515 |
+
"finish_reason": "stop",
|
| 516 |
+
"id": "e5ed76ef98144f06843125daf1bccd35",
|
| 517 |
+
"reasoning_chars": 1871,
|
| 518 |
+
"result": "pass",
|
| 519 |
+
"source": "SuperGPQA",
|
| 520 |
+
"total_ms": 14369.618208,
|
| 521 |
+
"ttft_ms": 501.82775000000004
|
| 522 |
+
},
|
| 523 |
+
{
|
| 524 |
+
"answer_chars": 2097,
|
| 525 |
+
"completion_tokens": 14430,
|
| 526 |
+
"finish_reason": "stop",
|
| 527 |
+
"id": "aime2025-10",
|
| 528 |
+
"reasoning_chars": 41121,
|
| 529 |
+
"result": "pass",
|
| 530 |
+
"source": "AIME2025",
|
| 531 |
+
"total_ms": 207504.819334,
|
| 532 |
+
"ttft_ms": 662.8592920000001
|
| 533 |
+
},
|
| 534 |
+
{
|
| 535 |
+
"answer_chars": 0,
|
| 536 |
+
"completion_tokens": 32768,
|
| 537 |
+
"finish_reason": "length",
|
| 538 |
+
"id": "recZWeueB7lSPR6wN",
|
| 539 |
+
"reasoning_chars": 111809,
|
| 540 |
+
"result": "exhausted",
|
| 541 |
+
"source": "GPQA Diamond",
|
| 542 |
+
"total_ms": 506089.753583,
|
| 543 |
+
"ttft_ms": 622.592708
|
| 544 |
+
},
|
| 545 |
+
{
|
| 546 |
+
"answer_chars": 9,
|
| 547 |
+
"completion_tokens": 1889,
|
| 548 |
+
"finish_reason": "stop",
|
| 549 |
+
"id": "fd7924876c4845cd83d95d61dfa0b236",
|
| 550 |
+
"reasoning_chars": 9416,
|
| 551 |
+
"result": "pass",
|
| 552 |
+
"source": "SuperGPQA",
|
| 553 |
+
"total_ms": 27349.834583,
|
| 554 |
+
"ttft_ms": 788.725
|
| 555 |
+
},
|
| 556 |
+
{
|
| 557 |
+
"answer_chars": 1381,
|
| 558 |
+
"completion_tokens": 11406,
|
| 559 |
+
"finish_reason": "stop",
|
| 560 |
+
"id": "aime2025-25",
|
| 561 |
+
"reasoning_chars": 33469,
|
| 562 |
+
"result": "pass",
|
| 563 |
+
"source": "AIME2025",
|
| 564 |
+
"total_ms": 163280.632333,
|
| 565 |
+
"ttft_ms": 467.42170799999997
|
| 566 |
+
},
|
| 567 |
+
{
|
| 568 |
+
"answer_chars": 0,
|
| 569 |
+
"completion_tokens": 32768,
|
| 570 |
+
"finish_reason": "length",
|
| 571 |
+
"id": "recVvpD8miVjmmyfe",
|
| 572 |
+
"reasoning_chars": 71858,
|
| 573 |
+
"result": "exhausted",
|
| 574 |
+
"source": "GPQA Diamond",
|
| 575 |
+
"total_ms": 480198.054417,
|
| 576 |
+
"ttft_ms": 563.9400420000001
|
| 577 |
+
},
|
| 578 |
+
{
|
| 579 |
+
"answer_chars": 597,
|
| 580 |
+
"completion_tokens": 9044,
|
| 581 |
+
"finish_reason": "stop",
|
| 582 |
+
"id": "6bfe7d19299d4b3184636e1f51694306",
|
| 583 |
+
"reasoning_chars": 31232,
|
| 584 |
+
"result": "pass",
|
| 585 |
+
"source": "SuperGPQA",
|
| 586 |
+
"total_ms": 123836.93679200001,
|
| 587 |
+
"ttft_ms": 917.491833
|
| 588 |
+
},
|
| 589 |
+
{
|
| 590 |
+
"answer_chars": 1038,
|
| 591 |
+
"completion_tokens": 6974,
|
| 592 |
+
"finish_reason": "stop",
|
| 593 |
+
"id": "aime2025-26",
|
| 594 |
+
"reasoning_chars": 20058,
|
| 595 |
+
"result": "pass",
|
| 596 |
+
"source": "AIME2025",
|
| 597 |
+
"total_ms": 101663.767416,
|
| 598 |
+
"ttft_ms": 564.897875
|
| 599 |
+
},
|
| 600 |
+
{
|
| 601 |
+
"answer_chars": 663,
|
| 602 |
+
"completion_tokens": 16947,
|
| 603 |
+
"finish_reason": "stop",
|
| 604 |
+
"id": "recAAJoHMW45Lv5je",
|
| 605 |
+
"reasoning_chars": 56011,
|
| 606 |
+
"result": "pass",
|
| 607 |
+
"source": "GPQA Diamond",
|
| 608 |
+
"total_ms": 236405.806666,
|
| 609 |
+
"ttft_ms": 534.812458
|
| 610 |
+
},
|
| 611 |
+
{
|
| 612 |
+
"answer_chars": 414,
|
| 613 |
+
"completion_tokens": 1013,
|
| 614 |
+
"finish_reason": "stop",
|
| 615 |
+
"id": "e1825d70c5844c22933087eafa89e39c",
|
| 616 |
+
"reasoning_chars": 1498,
|
| 617 |
+
"result": "pass",
|
| 618 |
+
"source": "SuperGPQA",
|
| 619 |
+
"total_ms": 12681.578958999999,
|
| 620 |
+
"ttft_ms": 807.969375
|
| 621 |
+
},
|
| 622 |
+
{
|
| 623 |
+
"answer_chars": 1690,
|
| 624 |
+
"completion_tokens": 13523,
|
| 625 |
+
"finish_reason": "stop",
|
| 626 |
+
"id": "aime2025-12",
|
| 627 |
+
"reasoning_chars": 24641,
|
| 628 |
+
"result": "pass",
|
| 629 |
+
"source": "AIME2025",
|
| 630 |
+
"total_ms": 172934.19700000001,
|
| 631 |
+
"ttft_ms": 484.131542
|
| 632 |
+
},
|
| 633 |
+
{
|
| 634 |
+
"answer_chars": 770,
|
| 635 |
+
"completion_tokens": 7029,
|
| 636 |
+
"finish_reason": "stop",
|
| 637 |
+
"id": "reckEnrOPFT9Ru7tW",
|
| 638 |
+
"reasoning_chars": 22555,
|
| 639 |
+
"result": "pass",
|
| 640 |
+
"source": "GPQA Diamond",
|
| 641 |
+
"total_ms": 102551.2195,
|
| 642 |
+
"ttft_ms": 690.736
|
| 643 |
+
},
|
| 644 |
+
{
|
| 645 |
+
"answer_chars": 840,
|
| 646 |
+
"completion_tokens": 3568,
|
| 647 |
+
"finish_reason": "stop",
|
| 648 |
+
"id": "ab430ac3f18e4e02a2cb3f35498c6b30",
|
| 649 |
+
"reasoning_chars": 8942,
|
| 650 |
+
"result": "pass",
|
| 651 |
+
"source": "SuperGPQA",
|
| 652 |
+
"total_ms": 51126.206375,
|
| 653 |
+
"ttft_ms": 574.6495
|
| 654 |
+
},
|
| 655 |
+
{
|
| 656 |
+
"answer_chars": 1239,
|
| 657 |
+
"completion_tokens": 14283,
|
| 658 |
+
"finish_reason": "stop",
|
| 659 |
+
"id": "aime2025-27",
|
| 660 |
+
"reasoning_chars": 36498,
|
| 661 |
+
"result": "pass",
|
| 662 |
+
"source": "AIME2025",
|
| 663 |
+
"total_ms": 200309.19775000002,
|
| 664 |
+
"ttft_ms": 571.1750840000001
|
| 665 |
+
},
|
| 666 |
+
{
|
| 667 |
+
"answer_chars": 498,
|
| 668 |
+
"completion_tokens": 22955,
|
| 669 |
+
"finish_reason": "stop",
|
| 670 |
+
"id": "rec8nshandHARTkrg",
|
| 671 |
+
"reasoning_chars": 73328,
|
| 672 |
+
"result": "pass",
|
| 673 |
+
"source": "GPQA Diamond",
|
| 674 |
+
"total_ms": 326324.774541,
|
| 675 |
+
"ttft_ms": 878.552416
|
| 676 |
+
},
|
| 677 |
+
{
|
| 678 |
+
"answer_chars": 705,
|
| 679 |
+
"completion_tokens": 2750,
|
| 680 |
+
"finish_reason": "stop",
|
| 681 |
+
"id": "e8c5da5ca40647158b0c91dd695c6243",
|
| 682 |
+
"reasoning_chars": 6470,
|
| 683 |
+
"result": "pass",
|
| 684 |
+
"source": "SuperGPQA",
|
| 685 |
+
"total_ms": 37356.805541999995,
|
| 686 |
+
"ttft_ms": 901.4087499999999
|
| 687 |
+
},
|
| 688 |
+
{
|
| 689 |
+
"answer_chars": 0,
|
| 690 |
+
"completion_tokens": 32768,
|
| 691 |
+
"finish_reason": "length",
|
| 692 |
+
"id": "aime2025-13",
|
| 693 |
+
"reasoning_chars": 113865,
|
| 694 |
+
"result": "exhausted",
|
| 695 |
+
"source": "AIME2025",
|
| 696 |
+
"total_ms": 469657.62200000003,
|
| 697 |
+
"ttft_ms": 525.9973329999999
|
| 698 |
+
},
|
| 699 |
+
{
|
| 700 |
+
"answer_chars": 1575,
|
| 701 |
+
"completion_tokens": 28289,
|
| 702 |
+
"finish_reason": "stop",
|
| 703 |
+
"id": "recFaL6j8UMhutXrc",
|
| 704 |
+
"reasoning_chars": 86504,
|
| 705 |
+
"result": "pass",
|
| 706 |
+
"source": "GPQA Diamond",
|
| 707 |
+
"total_ms": 400071.826917,
|
| 708 |
+
"ttft_ms": 944.872958
|
| 709 |
+
},
|
| 710 |
+
{
|
| 711 |
+
"answer_chars": 655,
|
| 712 |
+
"completion_tokens": 2132,
|
| 713 |
+
"finish_reason": "stop",
|
| 714 |
+
"id": "05efdc6fb2404ddc8dd5729bb68c74e5",
|
| 715 |
+
"reasoning_chars": 3248,
|
| 716 |
+
"result": "pass",
|
| 717 |
+
"source": "SuperGPQA",
|
| 718 |
+
"total_ms": 26802.890292,
|
| 719 |
+
"ttft_ms": 791.721584
|
| 720 |
+
},
|
| 721 |
+
{
|
| 722 |
+
"answer_chars": 0,
|
| 723 |
+
"completion_tokens": 32768,
|
| 724 |
+
"finish_reason": "length",
|
| 725 |
+
"id": "aime2025-28",
|
| 726 |
+
"reasoning_chars": 64329,
|
| 727 |
+
"result": "exhausted",
|
| 728 |
+
"source": "AIME2025",
|
| 729 |
+
"total_ms": 455399.040875,
|
| 730 |
+
"ttft_ms": 492.990125
|
| 731 |
+
},
|
| 732 |
+
{
|
| 733 |
+
"answer_chars": 335,
|
| 734 |
+
"completion_tokens": 6207,
|
| 735 |
+
"finish_reason": "stop",
|
| 736 |
+
"id": "reczQ4I0VpENdMtIj",
|
| 737 |
+
"reasoning_chars": 29362,
|
| 738 |
+
"result": "pass",
|
| 739 |
+
"source": "GPQA Diamond",
|
| 740 |
+
"total_ms": 91141.16124999999,
|
| 741 |
+
"ttft_ms": 786.774583
|
| 742 |
+
},
|
| 743 |
+
{
|
| 744 |
+
"answer_chars": 292,
|
| 745 |
+
"completion_tokens": 9504,
|
| 746 |
+
"finish_reason": "stop",
|
| 747 |
+
"id": "ba52e06cbe1a4310a77a7d12cd1db943",
|
| 748 |
+
"reasoning_chars": 27339,
|
| 749 |
+
"result": "pass",
|
| 750 |
+
"source": "SuperGPQA",
|
| 751 |
+
"total_ms": 125482.8795,
|
| 752 |
+
"ttft_ms": 770.972209
|
| 753 |
+
},
|
| 754 |
+
{
|
| 755 |
+
"answer_chars": 1669,
|
| 756 |
+
"completion_tokens": 27648,
|
| 757 |
+
"finish_reason": "stop",
|
| 758 |
+
"id": "aime2025-29",
|
| 759 |
+
"reasoning_chars": 63742,
|
| 760 |
+
"result": "pass",
|
| 761 |
+
"source": "AIME2025",
|
| 762 |
+
"total_ms": 381561.177042,
|
| 763 |
+
"ttft_ms": 594.065709
|
| 764 |
+
},
|
| 765 |
+
{
|
| 766 |
+
"answer_chars": 0,
|
| 767 |
+
"completion_tokens": 32768,
|
| 768 |
+
"finish_reason": "length",
|
| 769 |
+
"id": "recWxGU8Q4YReJ1tb",
|
| 770 |
+
"reasoning_chars": 98325,
|
| 771 |
+
"result": "exhausted",
|
| 772 |
+
"source": "GPQA Diamond",
|
| 773 |
+
"total_ms": 477832.87579099997,
|
| 774 |
+
"ttft_ms": 1088.534791
|
| 775 |
+
},
|
| 776 |
+
{
|
| 777 |
+
"answer_chars": 330,
|
| 778 |
+
"completion_tokens": 1124,
|
| 779 |
+
"finish_reason": "stop",
|
| 780 |
+
"id": "591a77df21324272914be82ac6583399",
|
| 781 |
+
"reasoning_chars": 2190,
|
| 782 |
+
"result": "fail",
|
| 783 |
+
"source": "SuperGPQA",
|
| 784 |
+
"total_ms": 15071.496667,
|
| 785 |
+
"ttft_ms": 872.8029590000001
|
| 786 |
+
},
|
| 787 |
+
{
|
| 788 |
+
"answer_chars": 0,
|
| 789 |
+
"completion_tokens": 32768,
|
| 790 |
+
"finish_reason": "length",
|
| 791 |
+
"id": "aime2025-15",
|
| 792 |
+
"reasoning_chars": 77388,
|
| 793 |
+
"result": "exhausted",
|
| 794 |
+
"source": "AIME2025",
|
| 795 |
+
"total_ms": 488278.975292,
|
| 796 |
+
"ttft_ms": 438.50212500000004
|
| 797 |
+
},
|
| 798 |
+
{
|
| 799 |
+
"answer_chars": 610,
|
| 800 |
+
"completion_tokens": 14108,
|
| 801 |
+
"finish_reason": "stop",
|
| 802 |
+
"id": "recMicVBcqy1xM1jq",
|
| 803 |
+
"reasoning_chars": 38300,
|
| 804 |
+
"result": "pass",
|
| 805 |
+
"source": "GPQA Diamond",
|
| 806 |
+
"total_ms": 201131.696708,
|
| 807 |
+
"ttft_ms": 823.588542
|
| 808 |
+
},
|
| 809 |
+
{
|
| 810 |
+
"answer_chars": 345,
|
| 811 |
+
"completion_tokens": 6801,
|
| 812 |
+
"finish_reason": "stop",
|
| 813 |
+
"id": "e780f37a5baa4fe094cd9c157486664d",
|
| 814 |
+
"reasoning_chars": 30028,
|
| 815 |
+
"result": "fail",
|
| 816 |
+
"source": "SuperGPQA",
|
| 817 |
+
"total_ms": 100085.698041,
|
| 818 |
+
"ttft_ms": 635.0276660000001
|
| 819 |
+
},
|
| 820 |
+
{
|
| 821 |
+
"answer_chars": 1827,
|
| 822 |
+
"completion_tokens": 23088,
|
| 823 |
+
"finish_reason": "stop",
|
| 824 |
+
"id": "aime2025-30",
|
| 825 |
+
"reasoning_chars": 54238,
|
| 826 |
+
"result": "pass",
|
| 827 |
+
"source": "AIME2025",
|
| 828 |
+
"total_ms": 328146.294042,
|
| 829 |
+
"ttft_ms": 500.85208299999994
|
| 830 |
+
},
|
| 831 |
+
{
|
| 832 |
+
"answer_chars": 10,
|
| 833 |
+
"completion_tokens": 1671,
|
| 834 |
+
"finish_reason": "stop",
|
| 835 |
+
"id": "compsec-076",
|
| 836 |
+
"reasoning_chars": 6439,
|
| 837 |
+
"result": "pass",
|
| 838 |
+
"source": "COMPSEC",
|
| 839 |
+
"total_ms": 24691.996709000003,
|
| 840 |
+
"ttft_ms": 896.443125
|
| 841 |
+
},
|
| 842 |
+
{
|
| 843 |
+
"answer_chars": 10,
|
| 844 |
+
"completion_tokens": 6698,
|
| 845 |
+
"finish_reason": "stop",
|
| 846 |
+
"id": "compsec-077",
|
| 847 |
+
"reasoning_chars": 24880,
|
| 848 |
+
"result": "pass",
|
| 849 |
+
"source": "COMPSEC",
|
| 850 |
+
"total_ms": 100004.369167,
|
| 851 |
+
"ttft_ms": 600.965792
|
| 852 |
+
},
|
| 853 |
+
{
|
| 854 |
+
"answer_chars": 10,
|
| 855 |
+
"completion_tokens": 749,
|
| 856 |
+
"finish_reason": "stop",
|
| 857 |
+
"id": "compsec-078",
|
| 858 |
+
"reasoning_chars": 2685,
|
| 859 |
+
"result": "pass",
|
| 860 |
+
"source": "COMPSEC",
|
| 861 |
+
"total_ms": 11191.506334,
|
| 862 |
+
"ttft_ms": 684.492709
|
| 863 |
+
},
|
| 864 |
+
{
|
| 865 |
+
"answer_chars": 10,
|
| 866 |
+
"completion_tokens": 7426,
|
| 867 |
+
"finish_reason": "stop",
|
| 868 |
+
"id": "compsec-079",
|
| 869 |
+
"reasoning_chars": 32135,
|
| 870 |
+
"result": "pass",
|
| 871 |
+
"source": "COMPSEC",
|
| 872 |
+
"total_ms": 118136.657833,
|
| 873 |
+
"ttft_ms": 600.282291
|
| 874 |
+
},
|
| 875 |
+
{
|
| 876 |
+
"answer_chars": 9,
|
| 877 |
+
"completion_tokens": 2731,
|
| 878 |
+
"finish_reason": "stop",
|
| 879 |
+
"id": "compsec-080",
|
| 880 |
+
"reasoning_chars": 12486,
|
| 881 |
+
"result": "pass",
|
| 882 |
+
"source": "COMPSEC",
|
| 883 |
+
"total_ms": 43336.239665999994,
|
| 884 |
+
"ttft_ms": 632.071375
|
| 885 |
+
},
|
| 886 |
+
{
|
| 887 |
+
"answer_chars": 10,
|
| 888 |
+
"completion_tokens": 6657,
|
| 889 |
+
"finish_reason": "stop",
|
| 890 |
+
"id": "compsec-081",
|
| 891 |
+
"reasoning_chars": 27125,
|
| 892 |
+
"result": "pass",
|
| 893 |
+
"source": "COMPSEC",
|
| 894 |
+
"total_ms": 99869.314375,
|
| 895 |
+
"ttft_ms": 608.006042
|
| 896 |
+
},
|
| 897 |
+
{
|
| 898 |
+
"answer_chars": 10,
|
| 899 |
+
"completion_tokens": 7949,
|
| 900 |
+
"finish_reason": "stop",
|
| 901 |
+
"id": "compsec-082",
|
| 902 |
+
"reasoning_chars": 31725,
|
| 903 |
+
"result": "pass",
|
| 904 |
+
"source": "COMPSEC",
|
| 905 |
+
"total_ms": 122373.649583,
|
| 906 |
+
"ttft_ms": 685.7641669999999
|
| 907 |
+
},
|
| 908 |
+
{
|
| 909 |
+
"answer_chars": 10,
|
| 910 |
+
"completion_tokens": 11357,
|
| 911 |
+
"finish_reason": "stop",
|
| 912 |
+
"id": "compsec-083",
|
| 913 |
+
"reasoning_chars": 43646,
|
| 914 |
+
"result": "pass",
|
| 915 |
+
"source": "COMPSEC",
|
| 916 |
+
"total_ms": 176298.53866700002,
|
| 917 |
+
"ttft_ms": 645.836958
|
| 918 |
+
},
|
| 919 |
+
{
|
| 920 |
+
"answer_chars": 9,
|
| 921 |
+
"completion_tokens": 1046,
|
| 922 |
+
"finish_reason": "stop",
|
| 923 |
+
"id": "compsec-084",
|
| 924 |
+
"reasoning_chars": 3979,
|
| 925 |
+
"result": "pass",
|
| 926 |
+
"source": "COMPSEC",
|
| 927 |
+
"total_ms": 15888.129125000001,
|
| 928 |
+
"ttft_ms": 640.836167
|
| 929 |
+
},
|
| 930 |
+
{
|
| 931 |
+
"answer_chars": 9,
|
| 932 |
+
"completion_tokens": 1764,
|
| 933 |
+
"finish_reason": "stop",
|
| 934 |
+
"id": "compsec-085",
|
| 935 |
+
"reasoning_chars": 7012,
|
| 936 |
+
"result": "pass",
|
| 937 |
+
"source": "COMPSEC",
|
| 938 |
+
"total_ms": 27259.208708,
|
| 939 |
+
"ttft_ms": 483.22645800000004
|
| 940 |
+
},
|
| 941 |
+
{
|
| 942 |
+
"answer_chars": 9,
|
| 943 |
+
"completion_tokens": 1352,
|
| 944 |
+
"finish_reason": "stop",
|
| 945 |
+
"id": "compsec-086",
|
| 946 |
+
"reasoning_chars": 5129,
|
| 947 |
+
"result": "pass",
|
| 948 |
+
"source": "COMPSEC",
|
| 949 |
+
"total_ms": 20433.278416,
|
| 950 |
+
"ttft_ms": 699.7719999999999
|
| 951 |
+
},
|
| 952 |
+
{
|
| 953 |
+
"answer_chars": 9,
|
| 954 |
+
"completion_tokens": 2933,
|
| 955 |
+
"finish_reason": "stop",
|
| 956 |
+
"id": "compsec-087",
|
| 957 |
+
"reasoning_chars": 10591,
|
| 958 |
+
"result": "pass",
|
| 959 |
+
"source": "COMPSEC",
|
| 960 |
+
"total_ms": 43862.756541,
|
| 961 |
+
"ttft_ms": 602.864083
|
| 962 |
+
},
|
| 963 |
+
{
|
| 964 |
+
"answer_chars": 10,
|
| 965 |
+
"completion_tokens": 2381,
|
| 966 |
+
"finish_reason": "stop",
|
| 967 |
+
"id": "compsec-088",
|
| 968 |
+
"reasoning_chars": 9526,
|
| 969 |
+
"result": "pass",
|
| 970 |
+
"source": "COMPSEC",
|
| 971 |
+
"total_ms": 36932.5335,
|
| 972 |
+
"ttft_ms": 595.733166
|
| 973 |
+
},
|
| 974 |
+
{
|
| 975 |
+
"answer_chars": 10,
|
| 976 |
+
"completion_tokens": 772,
|
| 977 |
+
"finish_reason": "stop",
|
| 978 |
+
"id": "compsec-089",
|
| 979 |
+
"reasoning_chars": 2845,
|
| 980 |
+
"result": "pass",
|
| 981 |
+
"source": "COMPSEC",
|
| 982 |
+
"total_ms": 11385.085542,
|
| 983 |
+
"ttft_ms": 522.12125
|
| 984 |
+
},
|
| 985 |
+
{
|
| 986 |
+
"answer_chars": 10,
|
| 987 |
+
"completion_tokens": 1157,
|
| 988 |
+
"finish_reason": "stop",
|
| 989 |
+
"id": "compsec-090",
|
| 990 |
+
"reasoning_chars": 4157,
|
| 991 |
+
"result": "pass",
|
| 992 |
+
"source": "COMPSEC",
|
| 993 |
+
"total_ms": 16899.257292000002,
|
| 994 |
+
"ttft_ms": 562.517583
|
| 995 |
+
},
|
| 996 |
+
{
|
| 997 |
+
"answer_chars": 9,
|
| 998 |
+
"completion_tokens": 643,
|
| 999 |
+
"finish_reason": "stop",
|
| 1000 |
+
"id": "compsec-091",
|
| 1001 |
+
"reasoning_chars": 2443,
|
| 1002 |
+
"result": "pass",
|
| 1003 |
+
"source": "COMPSEC",
|
| 1004 |
+
"total_ms": 9724.619584,
|
| 1005 |
+
"ttft_ms": 596.148292
|
| 1006 |
+
},
|
| 1007 |
+
{
|
| 1008 |
+
"answer_chars": 10,
|
| 1009 |
+
"completion_tokens": 2142,
|
| 1010 |
+
"finish_reason": "stop",
|
| 1011 |
+
"id": "compsec-092",
|
| 1012 |
+
"reasoning_chars": 9002,
|
| 1013 |
+
"result": "pass",
|
| 1014 |
+
"source": "COMPSEC",
|
| 1015 |
+
"total_ms": 32139.205208,
|
| 1016 |
+
"ttft_ms": 538.2330410000001
|
| 1017 |
+
}
|
| 1018 |
+
],
|
| 1019 |
+
"config": {
|
| 1020 |
+
"max_tokens": 32768,
|
| 1021 |
+
"seed": 42,
|
| 1022 |
+
"temperature": 0.0
|
| 1023 |
+
},
|
| 1024 |
+
"exhausted": 8,
|
| 1025 |
+
"failed_answered": 7,
|
| 1026 |
+
"model": "q8-mtp",
|
| 1027 |
+
"passed": 77
|
| 1028 |
+
}
|