Jump to any tool or page
Put uncertainty around an AI or LLM evaluation pass rate. Balance sample size, observed rate, and baseline targets to determine whether an apparent improvement is statistically credible or noise.
Number of evaluation cases evaluated
Percentage of evaluation items passed
Benchmark or incumbent rate to beat
At 95% confidence, the true pass rate lies between 73.9% and 85.0%.
Uncertainty spans 11.0 percentage points across 200 examples. To cut this margin of error in half, roughly 4× as many evaluation samples (~800) would be needed.
Evaluating model performance on a finite test set is a binomial sampling experiment. An apparent 80% pass rate on 20 examples yields an interval of 58.4% to 91.9% at 95% confidence—meaning you cannot confidently assert it outperforms a 70% baseline. Only by scaling sample size or observing substantial margins can true model improvements be distinguished from stochastic variance.
A pass rate is a point estimate of an underlying probability. Without sample size, there is no way to tell whether a reported 80% score represents 4 out of 5 tests (where uncertainty spans 35 percentage points) or 800 out of 1000 (where uncertainty spans less than 3 points).
Wald assumes the sampling distribution is symmetric and normal. When all samples pass (k = n), the estimated variance collapses to zero, causing Wald to claim an interval width of exactly 0% (absolute certainty from finite samples). When k is close to n, Wald can even produce bounds greater than 100%.
Wilson inverts the score test under the true binomial variance. It never escapes [0, 100%], behaves correctly when k = 0 or k = n, and provides well-calibrated average coverage across both small and large sample sizes.
Clopper-Pearson is the exact interval derived by inverting the binomial CDF test. Because of the discrete nature of binomial trials, its true coverage is guaranteed to never drop below the nominal level, making it the most conservative and widest interval.
Because the standard error scales inversely with the square root of n, narrowing the confidence interval by half requires four times as many evaluation examples (4× n).
Put a confidence interval around an AI or LLM eval pass rate and see whether an observed improvement clears a baseline benchmark. Pass rates reported without sample size hide stochastic noise; this tool calculates intervals under Wilson, Wald, and Clopper-Pearson methods to evaluate statistical credibility.