from sklearn.utils._testing import all_estimators
estimators = all_estimators(type_filter='classifier')
报错:name 'train_test_split' is not defined
版本升级后,无法导入.
解决方法:
import sklearn estimators = sklearn.utils.all_estimators(type_filter=None)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)