SynLV is a synthetic benchmark for decision-time incompleteness in longitudinal survival prediction. This repository is the public code companion to the hosted synthetic benchmark dataset.
- Dataset URL: https://huggingface.co/datasets/Mele0/SynLV
- Croissant URL: https://huggingface.co/api/datasets/Mele0/SynLV/croissant
- NeurIPS Croissant file:
SynLV_hf_platform_croissant.json
This repository provides:
- benchmark generation entry points,
- benchmark analysis/export helpers,
- release packaging/validation scripts,
- release-facing benchmark documentation,
- core model code used by probe-model workflows.
This repository does not bundle hosted benchmark payload files; those are distributed via Hugging Face.
Primary hosted v1.0 benchmark scenarios:
scenario_A— Referencescenario_B— MNAR Mildscenario_C— MNAR Strongscenario_MNAR_CORRELATED— MNAR Corrscenario_MAR— MARscenario_VISITSHIFT— VisitShift, a visit-schedule control generated under the base visit samplerscenario_VISITSHIFT_TRANSFER— VisitShift-Transfer, Reference train/validation with VisitShift test sourcescenario_MISMATCH— Mismatch, an alternative MNAR observation regime with informative missingnessscenario_MISMATCH_TRANSFER— Mismatch-Transfer, Reference train/validation with Mismatch test source
The canonical scenario registry is benchmark_analysis/synlv_release_config.py; a Markdown summary is provided in docs/SCENARIO_REGISTRY.md.
benchmark_generation/: benchmark generation entry points and release generator modulesbenchmark_analysis/: benchmark analysis and export helpersbenchmark_release/: release packaging, validation, and summary utilitiesdocs/: scenario registry, generator specification, benchmark card, reproducibility guide, real-data boundary notes, and third-party noticeslib/: core model code used by probe-model workflowsenv/: environment specification files
docs/SCENARIO_REGISTRY.md: scenario names, Hugging Face subsets, source roots, and implemented mechanismsdocs/GENERATOR_SPECIFICATION.md: compact code-faithful generator notesdocs/BENCHMARK_CARD.md: benchmark scope, task framing, and limitationsdocs/REPRODUCIBILITY.md: validation and reproducibility commandsdocs/REPRODUCE_PAPER_RESULTS.md: paper table/figure reproduction targets and commandsdocs/PAPER_RESULT_ARTIFACTS.md: result-artifact requirements and expected schemasdocs/MIMIC_GROUNDING.md: MIMIC/eICU access and redistribution boundarydocs/THIRD_PARTY_NOTICES.md: third-party code lineage and notices
Run from the repository root:
python benchmark_generation/final_generation.py --list-scenarios
python -m compileall benchmark_generation benchmark_analysis benchmark_release lib
python benchmark_release/validate_synlv_release.py --help
python benchmark_release/summarize_synlv_release.py --help
python benchmark_release/validate_synlv_release.py --strict 1The strict validation command checks the scenario registry and Croissant inventory. Full local split/schema validation requires local dataset files and --dataset-root.
The paper-results reproduction CLI maps analysis-derived paper outputs to executable targets. It does not reproduce descriptive scenario/protocol tables, and real-data targets require local credentialed summaries. Tables and figures are regenerated from local long-form result artifacts or precomputed summaries supplied through --results-root or --input; the repository does not bundle model checkpoints, logs, or raw long-form synthetic stress-result CSVs.
python benchmark_analysis/reproduce_paper_results.py --list-targets
python benchmark_analysis/reproduce_paper_results.py --self-testUse --audit-inputs to check that local artifacts are present before running a target:
python benchmark_analysis/reproduce_paper_results.py --audit-inputs --target table5_grid_avg --results-root /path/to/local/resultsSee docs/REPRODUCE_PAPER_RESULTS.md for the full target map and runbook, and docs/PAPER_RESULT_ARTIFACTS.md for expected input schemas. Full cold-start regeneration of every baseline across all scenarios, cohort seeds, and stress-grid cells is computationally expensive and intended for HPC/GPU environments. The repository therefore separates dataset/generator validation and table-level reproduction from documented result artifacts from full benchmark reruns. See the paper appendix for the reported compute-resource accounting.
git clone --branch synlv-neurips2026 --depth 1 https://github.com/Mele0/SynLV.git
cd SynLV
python benchmark_generation/final_generation.py --list-scenarios
python benchmark_release/validate_synlv_release.py --strict 1benchmark_generation/final_generation.py is the public nine-scenario generation entry point. It lists all primary scenarios and delegates to the release generator modules stored under benchmark_generation/.
Examples:
python benchmark_generation/final_generation.py --list-scenarios
python benchmark_generation/final_generation.py --scenario reference --cohort-seed 0 --dry-run
python benchmark_generation/final_generation.py --all-primary --dry-runMIMIC-IV and eICU are grounding-only and reconstruction-only. This repository and the hosted SynLV dataset do not redistribute raw or row-level derived ICU data. Reconstruction requires credentialed source access. See docs/MIMIC_GROUNDING.md.
SynLV is synthetic benchmark data for robustness evaluation. It is not for clinical model training, clinical certification, deployment validation, or patient-level inference.
Code license: MIT. Hosted dataset license: CC BY 4.0.