forked from dragonfly/dragonfly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
in_code_demo.py
53 lines (45 loc) · 2 KB
/
in_code_demo.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
"""
In code demo for Hartmann6_4
"""
from dragonfly import load_config, maximise_function, maximise_multifidelity_function
# From current directory
from hartmann6_4 import objective
from hartmann6_4_mf import objective as mf_objective
from hartmann6_4_mf import cost as mf_cost
def main():
""" Main function. """
# First Specify all parameters
domain_vars = [{'type': 'int', 'min': 224, 'max': 324, 'dim': 1},
{'type': 'float', 'min': 0, 'max': 10, 'dim': 2},
{'type': 'float', 'min': 0, 'max': 1, 'dim': 1},
{'type': 'int', 'min': 0, 'max': 92, 'dim': 2},
]
fidel_vars = [{'type': 'float', 'min': 1234.9, 'max': 9467.18, 'dim': 2},
{'type': 'discrete', 'items': ['a', 'bc', 'def', 'ghij']},
{'type': 'int', 'min': 123, 'max': 234, 'dim': 1},
]
fidel_to_opt = [[9467.18, 9452.8], "def", [234]]
# Budget of evaluations
max_num_evals = 100 # Optimisation budget (max number of evaluations)
max_mf_capital = max_num_evals * mf_cost(fidel_to_opt) # Multi-fideltiy capital
# First do the MF version
config_params = {'domain': domain_vars, 'fidel_space': fidel_vars,
'fidel_to_opt': fidel_to_opt}
config = load_config(config_params)
# Optimise
mf_opt_pt, mf_opt_val, history = maximise_multifidelity_function(mf_objective,
config.fidel_space, config.domain,
config.fidel_to_opt, mf_cost,
max_mf_capital, config=config)
print(mf_opt_pt, mf_opt_val)
# Non-MF version
config_params = {'domain': domain_vars}
config = load_config(config_params)
max_capital = 100 # Optimisation budget (max number of evaluations)
# Optimise
opt_pt, opt_val, history = maximise_function(objective, config.domain,
max_num_evals, config=config)
print(opt_pt, opt_val)
if __name__ == '__main__':
main()