diff --git a/pyproject.toml b/pyproject.toml index 53d8442..d5006e3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "views_stepshifter" -version = "1.0.0" +version = "1.0.2" description = "" authors = [ "Xiaolong Sun ", 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"