mirror of
https://github.com/microsoft/autogen.git
synced 2026-04-20 03:02:16 -04:00
* ray version check when importing * display learner_class when starting_points removed * test ray 2
10 lines
318 B
Python
10 lines
318 B
Python
from flaml.searcher import CFO, BlendSearch, FLOW2, BlendSearchTuner, RandomSearch
|
|
from flaml.automl import AutoML, logger_formatter
|
|
from flaml.onlineml.autovw import AutoVW
|
|
from flaml.version import __version__
|
|
import logging
|
|
|
|
# Set the root logger.
|
|
logger = logging.getLogger(__name__)
|
|
logger.setLevel(logging.INFO)
|