Skip to content

Commit

Permalink
Merge branch 'development' into hotfix/reject_configs
Browse files Browse the repository at this point in the history
  • Loading branch information
dengdifan authored Oct 5, 2023
2 parents e886400 + d58d5b1 commit 85ea6c1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# 2.0.3

## Bugfixes
- Fix path for dask scheduler file (#1055).
- Add OrdinalHyperparameter for random forest imputer (#1065).
- Configurations that fail to become incumbents will be added to the rejected lists (#1069).


# 2.0.2

## Improvements
Expand Down
2 changes: 1 addition & 1 deletion smac/runner/dask_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def __init__(
)

if self._scenario.output_directory is not None:
self._scheduler_file = self._scenario.output_directory / ".dask_scheduler_file"
self._scheduler_file = Path(self._scenario.output_directory, ".dask_scheduler_file")
self._client.write_scheduler_file(scheduler_file=str(self._scheduler_file))
else:
# We just use their set up
Expand Down

0 comments on commit 85ea6c1

Please sign in to comment.