intermediate backup

This commit is contained in:
2025-05-02 14:36:19 +02:00
parent 980696aef5
commit 2b0a5728d4
16 changed files with 2780 additions and 316 deletions

View File

@ -1,5 +1,26 @@
"""
IO utilities for the forecasting model.
Input/Output utilities for the forecasting model package.
Currently, primarily includes plotting functions used internally by evaluation.
"""
This package contains utilities for data loading, saving, and visualization.
"""
# Expose plotting utilities if intended for external use
# from .plotting import (
# setup_plot_style,
# save_plot,
# create_time_series_plot,
# create_scatter_plot,
# create_residuals_plot,
# create_residuals_distribution_plot
# )
# __all__ = [
# "setup_plot_style",
# "save_plot",
# "create_time_series_plot",
# "create_scatter_plot",
# "create_residuals_plot",
# "create_residuals_distribution_plot",
# ]
# If nothing is intended for public API from this submodule, leave this file empty
# or with just a docstring.