Python 中jupyternotebook中%%time使用报错
Posted 新人王小五
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 中jupyternotebook中%%time使用报错相关的知识,希望对你有一定的参考价值。
- 错误提示
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使用报错的主要内容,如果未能解决你的问题,请参考以下文章
[Python]PyCharm中%matplotlib inline报错
JupyterNotebook设置Python环境的方法步骤
:开发环境搭建Anaconda+VsCode+JupyterNotebook(零基础启动)