知行迭代
导航
首页
最近更改
随机页面
常用
分类目录
Linux命令
Mediawiki常用
电脑技巧
工具
链入页面
相关更改
特殊页面
页面信息
登录
查看“Scikit-learn”的源代码
←
Scikit-learn
页面
讨论
阅读
查看源代码
查看历史
因为以下原因,您没有权限编辑本页:
您请求的操作仅限属于该用户组的用户执行:[
[1]
]
您可以查看和复制此页面的源代码。
scikit-learn,简称sklearn,是一个免费开源[[Python]]库,主要用于[[机器学习]]。它是构建在[[scipy]]模块之上,具有各种分类、回归和聚类算法。 ==简介== ===时间轴=== *2007年6月,David Cournapeau 在Google夏日编程大赛中开发,项目名scikits.learn,名字来自“SciKit”(SciPy工具箱)。 *2007年,同年Matthieu Brucher加入项目,并开始将其用作论文工作的一部分。 *2010年,法国计算机科学与自动化研究所(INRIA)的 Fabian Pedregosa、Gael Varoquaux、Alexandre Gramfort 和 Vincent Michel 领导了该项目。 *2010年2月1日,首次公开发布 Scikit-learn v0.1 beta *2018年9月,发布scikit-learn 0.20.0 *2021年1月,发布scikit-learn 0.24 ===安装=== 使用[[pip]]安装scikit-learn: <syntaxhighlight lang="python"> # 安装最新版本 pip install -U scikit-learn # 查看安装的版本,位置等 pip show scikit-learn </syntaxhighlight> {{了解更多 |[https://scikit-learn.org/stable/install.html scikit-learn 文档:安装] }} ==基本== ===结构=== SciPy包含多个子模块,如下: {| class="wikitable" style="width: 100%; ! 子模块 ! 类别 ! 描述 |- | sklearn.base | 基础类和实用功能 | |- | | |- | | |- | | |- | | |- | | |} {{了解更多 |[https://scikit-learn.org/stable/modules/classes.html scikit-learn API:API参考] }} ==模型== ===分类=== {| class="wikitable" style="width: 100%; ! 名称 ! 模块 ! 类 ! 描述 |- |K近邻分类 <br \>KNN |[https://scikit-learn.org/stable/modules/neighbors.html neighbors] |[https://scikit-learn.org/stable/modules/neighbors.html#classification KNeighborsClassifier] |找到输入样本最近的K个样本,将该输入样本分类到K个样本中最多的分类。<br \> 导入:<code>from sklearn.neighbors import KNeighborsClassifier</code> |- | [[决策树]] | tree | DecisionTreeClassifier | |- | 逻辑回归 | | | |- | | | | |} ===回归=== {| class="wikitable" style="width: 100%; ! 名称 ! 模块 ! 类 ! 描述 |- | 线性回归 <br />linear regression | linear_model | LinearRegression | 使用普通最小二乘法。 <br />导入模型:<br /> <code>from sklearn.linear_model import LinearRegression</code> |- | 岭回归<br /> ridge regression | linear_model | Ridge | <br />导入模型:<br /> <code>from sklearn.linear_model import Ridge</code> |- | | |} ===聚类=== ===降维=== ==评估与优化== ===指标和评分=== {{了解更多 |[https://scikit-learn.org/stable/modules/model_evaluation.html scikit-learn 文档:指标和评分 - 量化预测的质量] }} ===交叉验证=== ===网格搜索=== ==数据集== ==资源== ===官网=== *scikit-learn 官网:https://scikit-learn.org *scikit-learn 用户手册:https://scikit-learn.org/stable/user_guide.html *scikit-learn 教程:https://scikit-learn.org/stable/tutorial/index.html *scikit-learn 示例:https://scikit-learn.org/stable/auto_examples/index.html *scikit-learn API:https://scikit-learn.org/stable/modules/classes.html *scikit-learn的Github:https://github.com/scikit-learn/scikit-learn *scikit-learn的历史:https://scikit-learn.org/stable/about.html#history ===相关教程=== *[https://www.qikegu.com/docs/4065 奇客谷:Sklearn 教程] *[https://yulizi123.github.io/tutorials/machine-learning/sklearn/ 莫烦Python:Sklearn] *[https://sklearn.apachecn.org/ apachecn.org:scikit-learn文档翻译] ===相关文章=== *[https://zh.wikipedia.org/wiki/Scikit-learn 维基百科:Scikit-learn] *[https://github.blog/2019-01-24-the-state-of-the-octoverse-machine-learning/ Github Blog:2018年机器学习Octoverse报告] [[分类:统计学]] [[分类:机器学习]] [[分类:数据分析]]
本页使用的模板:
模板:了解更多
(
查看源代码
)
返回至“
Scikit-learn
”。