From 22d1c63888014fe3a08b17f5471e265edafe097e Mon Sep 17 00:00:00 2001 From: foefl Date: Wed, 26 Mar 2025 13:25:26 +0100 Subject: [PATCH] disable logging --- src/delta_barth/constants.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/delta_barth/constants.py b/src/delta_barth/constants.py index 022295f..b613d9d 100644 --- a/src/delta_barth/constants.py +++ b/src/delta_barth/constants.py @@ -15,7 +15,7 @@ assert dummy_data_pth.exists(), f"dummy data path not found: {dummy_data_pth}" DUMMY_DATA_PATH: Final[Path] = dummy_data_pth # ** logging -ENABLE_LOGGING: Final[bool] = True +ENABLE_LOGGING: Final[bool] = False LOGGING_TO_FILE: Final[bool] = True LOGGING_TO_STDERR: Final[bool] = True @@ -53,4 +53,8 @@ FEATURES_SALES_PROGNOSIS: Final[frozenset[str]] = frozenset( ) ) -MIN_NUMBER_DATAPOINTS: Final[int] = 100 + +# ** Pipelines +# ** Forecast +SALES_MIN_NUM_DATAPOINTS: Final[int] = 36 +SALES_BASE_NUM_DATAPOINTS_MONTHS: Final[int] = 36