Files
FLAML/test/nni/flaml_nni_wrap.py
Chi Wang 860cbc233e move searcher and scheduler into tune (#746)
* move into tune

* correct path

* correct path

* import path
2022-10-04 16:03:22 -07:00

8 lines
312 B
Python

from flaml.tune.searcher.blendsearch import BlendSearchTuner as BST
class BlendSearchTuner(BST):
# for best performance pass low cost initial parameters here
def __init__(self, low_cost_partial_config={"hidden_size": 128}):
super.__init__(self, low_cost_partial_config=low_cost_partial_config)