mirror of
https://github.com/microsoft/autogen.git
synced 2025-11-01 02:09:58 +00:00
* v0.2.2 separate the HPO part into the module flaml.tune enhanced implementation of FLOW^2, CFO and BlendSearch support parallel tuning using ray tune add support for sample_weight and generic fit arguments enable mlflow logging Co-authored-by: Chi Wang (MSR) <chiw@microsoft.com> Co-authored-by: qingyun-wu <qw2ky@virginia.edu>
7 lines
273 B
Python
7 lines
273 B
Python
try:
|
|
from ray.tune import (uniform, quniform, choice, randint, qrandint, randn,
|
|
qrandn, loguniform, qloguniform)
|
|
except:
|
|
from .sample import (uniform, quniform, choice, randint, qrandint, randn,
|
|
qrandn, loguniform, qloguniform)
|
|
from .tune import run, report |