From 0f18a9f9ced6f26dcf4922b910e8d0d56d89dd80 Mon Sep 17 00:00:00 2001 From: xiaolongsun <95378566+xiaolong0728@users.noreply.github.com> Date: Mon, 7 Jul 2025 15:07:25 +0200 Subject: [PATCH 1/3] update toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 53d8442..665b85b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "views_stepshifter" -version = "1.0.0" +version = "1.0.1" description = "" authors = [ "Xiaolong Sun ", From ce474c21eefe4ce43fe0a4149243230a29adbdb7 Mon Sep 17 00:00:00 2001 From: xiaolongsun <95378566+xiaolong0728@users.noreply.github.com> Date: Tue, 2 Sep 2025 19:50:23 +0200 Subject: [PATCH 2/3] update flag --- views_stepshifter/manager/stepshifter_manager.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/views_stepshifter/manager/stepshifter_manager.py b/views_stepshifter/manager/stepshifter_manager.py index 1852284..dd75270 100644 --- a/views_stepshifter/manager/stepshifter_manager.py +++ b/views_stepshifter/manager/stepshifter_manager.py @@ -17,8 +17,8 @@ class StepshifterManager(ForecastingModelManager): def __init__( self, model_path: ModelPathManager, - wandb_notifications: bool = True, - use_prediction_store: bool = True, + wandb_notifications: bool = False, + use_prediction_store: bool = False, ) -> None: super().__init__(model_path, wandb_notifications, use_prediction_store) self._is_hurdle = self._config_meta["algorithm"] == "HurdleModel" From 6040d20fd8b0048fc3598a36bee622bdcf4f5480 Mon Sep 17 00:00:00 2001 From: xiaolongsun <95378566+xiaolong0728@users.noreply.github.com> Date: Thu, 11 Sep 2025 15:11:17 +0200 Subject: [PATCH 3/3] update toml file --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 665b85b..d5006e3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "views_stepshifter" -version = "1.0.1" +version = "1.0.2" description = "" authors = [ "Xiaolong Sun ",