Skip to content

Commit

Permalink
fix optuna storage default param
Browse files Browse the repository at this point in the history
  • Loading branch information
diegomarvid committed Mar 5, 2024
1 parent c5210f1 commit 5f273be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pipeline_lib/implementation/tabular/xgboost/fit_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def optuna_logging_callback(study, trial):
self.logger.info(f"Optimizing XGBoost hyperparameters with {optuna_trials} trials.")

study_name = optuna_params.get("study_name", "xgboost_optimization")
storage = optuna_params.get("storage", "I")
storage = optuna_params.get("storage", "sqlite:///db.sqlite3")

study = optuna.create_study(
direction="minimize",
Expand Down

0 comments on commit 5f273be

Please sign in to comment.