Datasets:
Tasks:
Tabular Classification
Formats:
parquet
Languages:
English
Size:
< 1K
Tags:
economics
quantitative-finance
causal-inference
macroeconomics
housing-economics
market-microstructure
License:
File size: 1,462 Bytes
ebcde1f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | """Frozen-bundle reporting and verification interfaces."""
from microstructure.reporting.bundle import (
ChecksumMismatchError,
IncompleteRunError,
RunBundle,
RunBundleError,
RunBundleValidationError,
evidence_watermark,
load_run_bundle,
verify_checksums,
write_checksum_manifest,
)
from microstructure.reporting.l2 import (
L2ReportData,
L2ReportError,
canonical_report_data_sha256,
render_l2_executive_memo,
render_l2_model_comparison,
render_l2_technical_report,
write_l2_report_set,
)
from microstructure.reporting.render import (
ReportPaths,
render_executive_memo,
render_model_comparison_report,
render_technical_report,
write_report_set,
)
from microstructure.reporting.tables import comparison_rows, render_model_comparison
__all__ = [
"ChecksumMismatchError",
"IncompleteRunError",
"L2ReportData",
"L2ReportError",
"ReportPaths",
"RunBundle",
"RunBundleError",
"RunBundleValidationError",
"canonical_report_data_sha256",
"comparison_rows",
"evidence_watermark",
"load_run_bundle",
"render_executive_memo",
"render_l2_executive_memo",
"render_l2_model_comparison",
"render_l2_technical_report",
"render_model_comparison",
"render_model_comparison_report",
"render_technical_report",
"verify_checksums",
"write_checksum_manifest",
"write_l2_report_set",
"write_report_set",
]
|