Choose a case to begin.
Waiting…
Waiting…
Waiting…
/ Data-quality audit · NHTSA SGO crash reports
An open-source data-quality tool for public NHTSA crash reports. It flags ADS vs Level 2 ADAS labels that look inconsistent, so a human can review them.
In one sentence
Manufacturers report crashes as either self-driving (ADS) or driver-assist (Level 2 ADAS). SGO-Audit checks whether that label looks consistent with the same public record, using rules, an ML model, and a local AI reader, then queues mismatches for people to inspect.
01 · Problem
NHTSA’s Standing General Order (SGO) crash data is used by researchers, journalists, and policymakers. The ADS vs Level 2 ADAS label is self-reported, and NHTSA has said some records get corrected over time.
If you take every label at face value, you can misread the dataset. SGO-Audit asks a narrower question: does this record’s label look consistent with its own fields and narrative?
02 · Approach
Think of it as three independent reviewers plus a ranking desk. None of them “decide the truth.” They raise their hand when something looks off.
04 · Boundary
05 · Mini demo
Pick a case. Press run. See what the rule checker, ML model, and narrative reader each say, then whether it lands in the review queue.
Waiting…
Waiting…
Waiting…
06 · Proof
Loading…
Browse the tracked consensus queue. Filter by which checker disagreed.
| Report ID | Entity | Reported | Checks | Why it was queued |
|---|
07 · Reproduce
Re-run on NHTSA’s archived 2021–2025 snapshot (canonical demo) or the
current third-amended CSVs. To adapt to another similarly structured crash
dataset, map columns in src/fields.py and keep the same
three-signal pattern.
pip install -r requirements.txt
python scripts/download_data.py
python scripts/run_all.py --llm-backend transformers --llm-sample 50
python scripts/build_showcase_data.py
python scripts/serve_showcase.py
python scripts/download_data.py --current --overwrite
python scripts/run_all.py --current --llm-backend transformers --llm-sample 50
Unit tests use tiny fixtures and need no download:
python -m pytest