Skip to content

Commit

Permalink
Set xi to 0.01
Browse files Browse the repository at this point in the history
  • Loading branch information
renesass committed Dec 12, 2022
1 parent 10c7b4e commit 3a66258
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ multi-fidelity, multi-objective and multi-threading by nature now.
- Continuing a run is now fully supported.
- Added more examples.
- Updated documentation based on new implementation.
- Changed default xi of expected improvement to 0.01.

This comment has been minimized.

Copy link
@dengdifan

dengdifan Dec 15, 2022

Contributor

This change is for EIPS



# 2.0.0a2
Expand Down
2 changes: 1 addition & 1 deletion smac/acquisition/function/expected_improvement.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ class EIPS(EI):
Controls the balance between exploration and exploitation of the acquisition function.
"""

def __init__(self, xi: float = 0.0) -> None:
def __init__(self, xi: float = 0.01) -> None:
super(EIPS, self).__init__(xi=xi)

@property
Expand Down

0 comments on commit 3a66258

Please sign in to comment.