码迷,mamicode.com
首页 > 编程语言 > 详细

Python 中jupyternotebook中%%time使用报错

时间:2020-07-27 13:47:44      阅读:87      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!