Hermes Prediction Benchmark: Competitive Model Leaderboard
Interactive Benchmark Workbench
Section titled “Interactive Benchmark Workbench”Inspect model rankings, compare head-to-head match-ups, explore the Murphy decomposition, or enter your own predictions in the sandbox:
Official Model Leaderboard (Brier Score & Skill Metric)
| Rank | Predictive Model | Brier Score (BS) | Skill Score (BSS) | Reliability (REL ↓) | Resolution (RES ↑) | Win vs EPSS | Tier |
|---|---|---|---|---|---|---|---|
| 🥇 #1 | Hermes Forecast Engine Champion | 0.1043 | +58.3% | 0.001 | 0.0246 | 80% (4/5) | ELITE (Superforecaster) |
| 🥈 #2 | Crowd Consensus Baseline Aggregated Human | 0.1232 | +50.7% | 0.001 | 0.0216 | 80% (4/5) | PROFICIENT |
| 🥉 #3 | CVSS Severity Heuristic Enterprise Standard | 0.1751 | +30% | 0.0151 | 0 | 80% (4/5) | PROFICIENT |
| #4 | Uninformed Random Guess Coin Flip | 0.25 | 0% | 0.09 | 0 | 80% (4/5) | BASELINE |
| #5 | Raw EPSS First-Day Baseline Population-Wide | 0.6223 | -148.9% | 0.4719 | 0.0096 | 0% | UNCALIBRATED |
Murphy Decomposition: Why Hermes Outperforms Heuristics
Allan H. Murphy's 1973 decomposition separates pure calibration deviation (Reliability REL, lower is better) from true information discriminative power (Resolution RES, higher is better) against fixed base-rate uncertainty (UNC).
Side-by-Side Head-to-Head Comparison
Sandbox: Challenge the Leaderboard!
Input your own probability estimates for the 5 resolved CVE cases. The benchmark computes your personal Brier score in real time and ranks you directly on the leaderboard against Hermes, EPSS, and crowd consensus!
1. Why Cybersecurity Needs a Prediction Leaderboard
Section titled “1. Why Cybersecurity Needs a Prediction Leaderboard”Threat intelligence has long operated in an accountability vacuum:
- Unilateral Evaluation: Vendors score their models on proprietary, cherry-picked datasets.
- Hidden Failures: When high-severity warnings fail to materialize, they are quietly erased from marketing materials.
- Apples-to-Oranges Comparisons: Models with different evaluation windows (e.g. lifetime probability vs 30-day window) are conflated.
The Hermes Prediction Benchmark eliminates these ambiguities through four strict rules:
- Identical Event Corpus: All models are evaluated on the exact same resolved CVE events and calendar cutoff horizons.
- Strictly Proper Scoring: The Brier Score (
BS) guarantees that no model can game the leaderboard by hedging or artificially inflating probabilities. - Open-Access REST API: All model scores, predictions, and pairwise records are exported statically at
/api/benchmark/index.json.
2. The Competing Models
Section titled “2. The Competing Models”The benchmark tracks five distinct algorithmic and human forecasting paradigms:
| Model ID | Model Name | Category | Primary Mechanism |
|---|---|---|---|
HFE-v2.0 | Hermes Forecast Engine | Agentic AI | Multimodal telemetry, Vulnerability Genome 6-loci structural decomposition, and kinetic risk trajectory. |
CROWD-WISDOM | Crowd Consensus Prior | Aggregated Human | Ensemble community wisdom simulating Metaculus and Good Judgment Project probability aggregations. |
CVSS-HEURISTIC | CVSS Severity Rule-of-Thumb | Enterprise Baseline | Standard corporate heuristic mapping CVSS v3.1 base score directly to likelihood (Critical $\implies 90-95%$). |
RANDOM-BASELINE | Uninformed Coin-Flip | Statistical Floor | Constant 50/50 odds (P = 0.50, constant BS = 0.2500). |
EPSS-RAW | Raw EPSS First-Day Score | Population Baseline | Unadjusted first-day published EPSS v3 probability from FIRST.org. |
3. Why Raw EPSS Scores Poorly on Zero-Days (The Baseline Paradox)
Section titled “3. Why Raw EPSS Scores Poorly on Zero-Days (The Baseline Paradox)”A common question is: « Why does Raw EPSS have a negative Brier Skill Score (-148.9%) on newly published critical CVEs? »
The answer lies in base-rate dilution:
- EPSS is designed to rank 250,000+ historical CVEs across the entire software ecosystem, where the average exploitation rate is under 3%.
- Consequently, when a critical zero-day is disclosed (e.g. Cisco SEG
CVE-2026-76461or DeepSeekCVE-2026-76460), Day-1 EPSS models assign conservative probabilities between0.04and0.15until large-scale honeypot scanning is registered weeks later. - When an unauthenticated remote exploit is weaponized within 48 hours, a prediction of
P = 0.07incurs a severe Brier penalty:
BS_i = (0.07 - 1)^2 = 0.8649Hermes HFE incorporates the Vulnerability Genome (architectural bug structure) and Threat Trajectory (immediate secondary chat chatter), predicting P = 0.88 (BS_i = 0.0144) and outperforming raw EPSS on 80% of newly published zero-days.
4. REST API Access
Section titled “4. REST API Access”Benchmark data is compiled statically and available for researchers and automated evaluation pipelines:
- Benchmark Catalog & Matrix:
/api/benchmark/index.json - Official Leaderboard Ranking:
/api/benchmark/leaderboard.json - Model Evaluation Records:
/api/benchmark/models.json
# Fetch latest benchmark leaderboard via CLIcurl -s https://hermes-codex.vercel.app/api/benchmark/leaderboard.json | jq .