启用逐步缩减搜索估计器#
启用逐步缩减搜索估计器
这些估计器的API和结果可能会在没有任何弃用周期的情况下发生更改。
动态导入此文件将HalvingRandomSearchCV
和HalvingGridSearchCV
设置为model_selection
模块的属性。
>>> # explicitly require this experimental feature
>>> from sklearn.experimental import enable_halving_search_cv # noqa
>>> # now you can import normally from model_selection
>>> from sklearn.model_selection import HalvingRandomSearchCV
>>> from sklearn.model_selection import HalvingGridSearchCV
可以删除# noqa
注释:它只是告诉像flake8这样的代码检查器忽略导入,该导入看起来未使用。