noisecheck
You test your AI twice with a quiz. First it scored 71. Second it scored 74. Is it really better, or did you just get lucky?
noisecheck reads your eval results and gives you a straight answer: real improvement, real regression, or just noise. It also tells you the smallest change your eval can actually detect, and how many more test items you need when it cannot.
It never runs your evals and never calls any AI. It only does the math, on your files, on your machine, the same way every time.
sixty seconds
uvx --from git+https://github.com/y4hyya/noisecheck noisecheck compare baseline.jsonl candidate.jsonl
Your files need one json line per answer:
{"example_id": "q001", "variant": "baseline", "metric": "pass", "value": 1}
Already using promptfoo? Convert its output first:
noisecheck import results.json -o baseline.jsonl --variant my-model
the trap this tool exists for
The repo ships a realistic example: 40 questions asked inside 8 conversations, two versions of an agent. Compare them the usual way and both metrics look like wins:
$ noisecheck compare examples/baseline.jsonl examples/candidate.jsonl
| metric | verdict | estimate | interval | q | mde |
| latency_s | improvement | +0.1165 | [0.1069, 0.127] | 0.0002 | 0.01387 |
| task_success | improvement | +0.175 | [0.04758, 0.3515] | 0.0391 | 0.1978 |
gate non regression: pass (exit 0)
But questions inside one conversation go wrong together. Tell noisecheck about the conversations and it counts the evidence honestly:
$ noisecheck compare examples/baseline.jsonl examples/candidate.jsonl --cluster conversation_id
| metric | verdict | estimate | interval | q | mde |
| latency_s | improvement | +0.1165 | [0.1023, 0.1295] | 0.0144 | 0.01569 |
| task_success | underpowered | +0.175 | [0.037, 0.3362] | 0.06389 | 0.1653 |
task_success: this eval cannot detect differences below 0.1653, about 36 items would
Same data. The latency improvement survives, because it shows up inside every conversation. The task success "win" honestly becomes "cannot tell": 8 conversations are not enough independent evidence, and the tool says how many items would settle it.
This is not a matter of taste. validation.md simulates a thousand worlds per row where the truth is known: the naive analysis fires up to 32 percent false alarms on clustered data, while noisecheck stays at the promised 5.
who grades the grader
If an AI judges your AI, check the judge before trusting the scores. On 80 real MT Bench battles where expert humans and GPT-4 judged the same model pairs:
$ noisecheck judge agreement examples/mtbench-sample.jsonl --human human --judge gpt4
winner: kappa 0.1513 [-0.02142, 0.3293], raw agreement 62% over 80 pairs
Raw agreement sounds fine at 62 percent. Kappa subtracts the agreement a coin flipping judge would get, and what is left barely clears zero. There are also judge position (does the verdict follow the seat instead of the answer?), judge stability (does the judge change its mind on identical inputs?), and judge scaffold-swap (a promptfoo template to produce the swapped runs).
in your CI
Exit codes are the contract: 0 ship, 1 stop, 2 cannot tell, 3 your files are broken.
- run: noisecheck compare baseline.jsonl candidate.jsonl --min-effect 0.02 --json report.json
Set --min-effect to the smallest difference you actually care about. Use --gate improvement when only proven wins may pass, and --lower-is-better latency_s for metrics where smaller is better. Reports embed the seed, the package version, and the sha256 of both input files, and identical inputs produce byte identical reports.
what noisecheck does not do
- it does not run evals, call models, or need API keys
- no dashboard, no account, nothing leaves your machine
- it does not invent certainty: when the data cannot answer, the verdict is "underpowered" plus the number of items that would fix it
the details
- methods: every statistic, its assumptions, and where it breaks
- validation: the 95 percent promise, measured, including the regimes where it falls short
- case study: the same data giving two opposite answers, and why the most starred eval harness has this exact bug filed against it
Commands: compare, power, floor, import, judge agreement, judge position, judge stability, judge scaffold-swap. Each has --help.
The MT Bench sample comes from lmsys/mt_bench_human_judgments (CC BY 4.0). MIT license.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file noisecheck-0.1.0.tar.gz.
File metadata
- Download URL: noisecheck-0.1.0.tar.gz
- Upload date:
- Size: 55.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
38cd1686758d5ec1d583926663cd1e0d8dabc07e25efd19e3b046fe6ed8fc1a7
|
|
| MD5 |
017bbd07c1d05583b55d0750c3bc2cb7
|
|
| BLAKE2b-256 |
ba881f00e1bfc78de39f1a899bc56855af511d789428b82bba8ed956ba45547c
|
File details
Details for the file noisecheck-0.1.0-py3-none-any.whl.
File metadata
- Download URL: noisecheck-0.1.0-py3-none-any.whl
- Upload date:
- Size: 34.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6a740a6ac1bd017cd3270ad9f93601ba7d1a9fac8427091d2c762c9f005227bd
|
|
| MD5 |
8d89b111cf144135770142b24cfdb18a
|
|
| BLAKE2b-256 |
fd9b21b9be8d810dd077a4a5ddb8d0427861d7efb0bfd996024255a9204fb500
|