Output Format ============= This page describes the structure and content of all output artifacts produced by the LoS Estimator. Directory Structure ------------------- Results are saved to the ``results/`` directory with the following structure: :: results/ └── _dev_step_train_test_fit_admissions_/ ├── run.log # Detailed run log ├── run_configurations.toml # Configuration snapshot ├── model_data/ │ ├── series_data.pkl # Loaded time series (binary) │ ├── all_fit_results.pkl # All fit results (binary) │ ├── visualization_context.pkl # Visualization metadata (binary) │ └── _models.csv # Model parameters per window for each distribution function ├── figures/ │ ├── error_comparison.png # Bar plot of mean and median test and train errors │ ├── prediction_all_distros.png # All distribution and time point predictions overlaid │ ├── prediction_error_all_distros.png # All distribution and time point predictions overlaid with errors. │ ├── prediction_error_fit.png # Predictions and errors for a specific distribution at all time points │ ├── test_error_boxplot.png │ ├── test_error_boxplot_no_outliers.png │ ├── test_error_boxplot_no_outliers.png │ ├── train_error_boxplot.png │ ├── train_error_boxplot_no_outliers.png │ └── train_vs_test_error.png ├── animation/ │ ├── fit_.png # Individual frames │ └── combined_video.gif # Combined animation └── metrics/ ├── _test.png # Metric for each distribution function at each time point ├── metrics_train.csv # Metric values for training data └── metrics_test.csv # Metric values for test data