mirror of
https://github.com/microsoft/FLAML.git
synced 2026-02-08 17:59:17 +08:00
* lint * bump ver * bump ver * fixed circular import --------- Co-authored-by: Jirka Borovec <6035284+Borda@users.noreply.github.com>
9 lines
167 B
Python
9 lines
167 B
Python
import warnings
|
|
|
|
from flaml.automl.ml import *
|
|
|
|
warnings.warn(
|
|
"Importing from `flaml.ml` is deprecated. Please use `flaml.automl.ml`.",
|
|
DeprecationWarning,
|
|
)
|