scikit 在 jupyter notebook 上学习 [关闭]

Posted

技术标签:

【中文标题】scikit 在 jupyter notebook 上学习 [关闭]【英文标题】:scikit learn on jupyter notebook [closed] 【发布时间】:2018-11-13 03:46:00 【问题描述】:

我试图在 jupyter notebook 上运行一些东西,但我遇到了这个问题。 有人知道怎么解决吗?

【问题讨论】:

向我们展示定义 load_breast_cancer() 的代码。消息说找不到。 我没有。这是唯一的代码,数据集在 sklearn 文件中应该在的位置。如何定义它? 【参考方案1】:

您尝试在未先导入数据集的情况下加载数据集。 你需要导入sklearn datasets


使用这个:

from sklearn.datasets import load_breast_cancer

data = load_breast_cancer()

这应该可以正常工作。

【讨论】:

以上是关于scikit 在 jupyter notebook 上学习 [关闭]的主要内容,如果未能解决你的问题,请参考以下文章

在 jupyter notebook 中显示 scikit 决策树图

在 ipython/Jupyter notebook 中导入 scikit-learn

无法安装 scikit-learn,但它无法在窗口 8.1 的 jupyter notebook 中的 python 3.10 中安装 [重复]

如何将 .mat 文件导入 Jupyter notebook 以在 scikit-learn 中使用它们进行机器学习? [复制]

Docker: 使用jupyter notebook基础镜像搭建自己的 pytorch 开发环境

Jupyter Notebook 中的旧 sklearn 版本