numpy https://numpy.org/devdocs/user/index.html pandas https://pandas.pydata.org/pandas docs/stable/ sklearn GUIDE https://scikit learn.org/stable/use ...
分类:
Web程序 时间:
2020-01-20 18:45:12
阅读次数:
128
代码: import sys, matplotlib, sklearn, IPython import numpy as np, pandas as pd, scipy as sp modules = {'NumPy': np, 'pandas': pd, 'scikit-learn': sklea ...
分类:
编程语言 时间:
2020-01-11 20:38:30
阅读次数:
137
一、PCA 二、MDS 三、Isomap 四、LocallyLinearEmbedding 五、FA 六、FastICA 七、t-SNE ...
分类:
其他好文 时间:
2020-01-08 00:16:45
阅读次数:
71
python库的安装其实并不难,但是对于小白来说,还是有点困难。今天装这几个库装了一下午都没有装上。 首先,安装顺序不能错。Numpy——matplolib——scipy——sklearn(scikit_learn)依次安装。 使用命令:pip install 库名 但是因为是国外网站的缘故,我尝试 ...
分类:
编程语言 时间:
2019-12-29 22:03:33
阅读次数:
144
1.anaconda与pycharm的关系 1、python python自身缺少numpy、matplotlib、scipy、scikit-learn....等一系列包,需要我们安装pip来导入这些包才能进行相应运算(python3.5自带了get-pip.py,不需额外下载安装),在cmd终端输 ...
分类:
其他好文 时间:
2019-12-27 19:44:55
阅读次数:
84
NearestNeighbors(n_neighbors=5, radius=1.0, algorithm='auto', leaf_size=30, metric='minkowski', p=2, metric_params=None, n_jobs=None) Parameters(参数): ...
分类:
其他好文 时间:
2019-12-26 19:17:16
阅读次数:
332
"计算的本质" by Tom Stuart, 2014 "Hands on Machine Learning with Scikit Learn, Keras, and TensorFlow" 2nd edition, by Aurélien Géron, 2019 "深度学习的数学" by 涌井良 ...
分类:
其他好文 时间:
2019-12-20 12:03:20
阅读次数:
81
pandas是 基于NumPy数组构建的,特别是基于数组的函数和不使用for循环的数据处理 相关联的几个库, 分析库 scikit-learn 和 statsmodels 数值计算工具,NumPy 可视化图库,matplotlib pandas是专门为处理表格和混杂数据设计的.专注于清理数据. 基础 ...
分类:
其他好文 时间:
2019-12-16 17:50:32
阅读次数:
115
6.3 preprocessing data数据预处理 https://scikit learn.org/stable/modules/preprocessing.html standardization or mean removal and variance scaling 归一化、正则化、标准 ...
分类:
其他好文 时间:
2019-12-16 17:46:37
阅读次数:
124
NumPy(Numerical Python)是 Python 中的一个线性代数库。对每一个数据科学或机器学习 Python 包而言,这都是一个非常重要的库, SciPy(Scientific Python)、Mat-plotlib(plotting library)、Scikit-learn 等都 ...
分类:
其他好文 时间:
2019-12-13 00:03:14
阅读次数:
93