Skip to content

Commit

Permalink
Renamed EI/PI inflate hyper
Browse files Browse the repository at this point in the history
  • Loading branch information
kstone40 committed Aug 9, 2024
1 parent 31ce4d7 commit 258991c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions obsidian/acquisition/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,14 @@
universal_aqs = ['RS', 'Mean', 'SF']
valid_aqs = {'single': ['EI', 'NEI', 'PI', 'UCB', 'SR', 'NIPV'] + universal_aqs,
'multi': ['EHVI', 'NEHVI', 'NParEGO'] + universal_aqs}
aq_defaults = {'single': 'NEI', 'multi': 'NEHVI'}


# For default values, 'optional' indicates whether or not a default value (or None) 'val' can be used
aq_hp_defaults = {
'EI': {'Xi_f': {'val': 0, 'optional': True}},
'EI': {'inflate': {'val': 0, 'optional': True}},
'NEI': {},
'PI': {'Xi_f': {'val': 0, 'optional': True}},
'PI': {'inflate': {'val': 0, 'optional': True}},
'UCB': {'beta': {'val': 1, 'optional': True}},
'SR': {},
'RS': {},
Expand Down

0 comments on commit 258991c

Please sign in to comment.