ultraopt icon indicating copy to clipboard operation
ultraopt copied to clipboard

where is the list of methods?

Open microprediction opened this issue 4 years ago • 1 comments

Hi, I'm looking for a list of methods I can use. I infer "ETPE" and "Random" are two. Any others? Peter

microprediction avatar Feb 14 '21 03:02 microprediction

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

methods

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

auto-flow avatar Feb 17 '21 03:02 auto-flow