ultraopt
ultraopt copied to clipboard
where is the list of methods?
Hi, I'm looking for a list of methods I can use. I infer "ETPE" and "Random" are two. Any others? Peter
Hi, You can use following code to assign other optimization methods:
from ultraopt import fmin
from ultraopt.tests.automl import HDL, evaluator
# using 'Forest' optimizer
fmin(eval_func=evaluator, config_space=HDL, optimizer="Forest", n_iterations=30)
# using 'GBRT' optimizer
fmin(eval_func=evaluator, config_space=HDL, optimizer="GBRT", n_iterations=30)
You can find method list in README

I'm sorry that I'm too busy to finish English Documentation and paper, if you have other question, you can send email to [email protected] .
Qichun Tang