Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions app/public/data/lanes.json
Original file line number Diff line number Diff line change
Expand Up @@ -265,10 +265,10 @@
"source": "UKMOD/EUROMOD",
"area": "household cases via JRC connector",
"mode": 3,
"stage": "registered",
"stage": "cataloged",
"running": false,
"updated": "2026-08-01",
"note": "Connector runnable per axiom-oracles#264 (#5)"
"updated": "2026-08-14",
"note": "Case schema + 1st battery landed (#41); connector run pending UKMOD environment; schema shared with taxsim-cases (#5)"
},
{
"id": "cbo-baseline",
Expand Down
6 changes: 3 additions & 3 deletions data/lanes.json
Original file line number Diff line number Diff line change
Expand Up @@ -265,10 +265,10 @@
"source": "UKMOD/EUROMOD",
"area": "household cases via JRC connector",
"mode": 3,
"stage": "registered",
"stage": "cataloged",
"running": false,
"updated": "2026-08-01",
"note": "Connector runnable per axiom-oracles#264 (#5)"
"updated": "2026-08-14",
"note": "Case schema + 1st battery landed (#41); connector run pending UKMOD environment; schema shared with taxsim-cases (#5)"
},
{
"id": "cbo-baseline",
Expand Down
20 changes: 20 additions & 0 deletions scorecard_db/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
from .case_diffs import (
ADJUDICATED_ONLY,
DEFAULT_TOLERANCES,
CaseResult,
CaseSpec,
DiffClassification,
Oracle,
VariableClass,
classify,
load_battery,
)
from .db import ScorecardDB
from .models import (
BASELINE,
Expand All @@ -17,19 +28,28 @@
)

__all__ = [
"ADJUDICATED_ONLY",
"BASELINE",
"CURRENT_LAW_DESCRIPTOR",
"DEFAULT_TOLERANCES",
"STANDARD_CONDITIONS",
"BenchmarkClass",
"CalibrationRelationship",
"CaseResult",
"CaseSpec",
"ComparisonStatus",
"DiagnosisClass",
"DiffClassification",
"ExternalScore",
"Metric",
"Oracle",
"PEResult",
"ReformRef",
"ScorecardDB",
"TimeBasis",
"UnitConcept",
"VariableClass",
"baseline_key",
"classify",
"load_battery",
]
Loading
Loading