标签:and 问题 python 修改 boot bootstrap max tst 报错
UsageError: Line magic function `%%time` not found.
%%time
放在代码块的顶行顶格。#n_jobs =3,表示只使用3个内核进行计算
%%time
bagging_clf1 = BaggingClassifier(DecisionTreeClassifier(random_state=666),
n_estimators=500,
max_samples = 100,
random_state=42,
bootstrap = True,
oob_score=True,
n_jobs = 1)
#在训练的时候传入所有数据
bagging_clf1.fit(X, y)
%%time
需要放在代码块的顶行顶格%%time
#n_jobs =3,表示只使用3个内核进行计算
bagging_clf1 = BaggingClassifier(DecisionTreeClassifier(random_state=666),
n_estimators=500,
max_samples = 100,
random_state=42,
bootstrap = True,
oob_score=True,
n_jobs = 1)
#在训练的时候传入所有数据
bagging_clf1.fit(X, y)
Python 中jupyternotebook中%%time使用报错
标签:and 问题 python 修改 boot bootstrap max tst 报错
原文地址:https://www.cnblogs.com/wangxiaowu/p/13384280.html