Skip to content

Commit

Permalink
Enable saving run status by default in hyperparameter search pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
GabrielBG0 committed Nov 11, 2024
1 parent 2e68956 commit 53c1a76
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion minerva/pipelines/hyperopt_hyperparameter_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def __init__(
model: type,
search_space: Dict[str, Any],
log_dir: Optional[PathLike] = None,
save_run_status: bool = False,
save_run_status: bool = True,
):
super().__init__(log_dir=log_dir, save_run_status=save_run_status)
self.model = model
Expand Down
2 changes: 1 addition & 1 deletion minerva/pipelines/ray_hyperparameter_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def __init__(
model: type,
search_space: Dict[str, Any],
log_dir: Optional[PathLike] = None,
save_run_status: bool = False,
save_run_status: bool = True,
):
super().__init__(log_dir=log_dir, save_run_status=save_run_status)
self.model = model
Expand Down

0 comments on commit 53c1a76

Please sign in to comment.