上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 37 下一页

2017年12月6日

sklearn正规化(Normalization或者scale)

摘要: from sklearn import preprocessing import numpy as np a = np.array([[10,2.7,3.6],[-100,5,-2],[120,20,40]],dtype=np.float64) print(a) print(preprocessing.scale(a)) from sklearn import preprocessin... 阅读全文

posted @ 2017-12-06 21:43 Michael2397 阅读(970) 评论(0) 推荐(0) 编辑

sklearn有关参数

摘要: from sklearn import datasets from sklearn.linear_model import LinearRegression import matplotlib.pyplot as plt #加载数据 loaded_data = datasets.load_boston() data_X = loaded_data.data data_Y = loaded_da... 阅读全文

posted @ 2017-12-06 21:06 Michael2397 阅读(174) 评论(0) 推荐(0) 编辑

sklearn常用数据的使用

摘要: from sklearn import datasets from sklearn.linear_model import LinearRegression #加载数据 loaded_data = datasets.load_boston() data_X = loaded_data.data data_Y = loaded_data.target #是否需要对数据进行拆分 #定义模型 mode... 阅读全文

posted @ 2017-12-06 20:56 Michael2397 阅读(193) 评论(0) 推荐(0) 编辑

sklearn实现聚类

摘要: import numpy as np from sklearn import datasets from sklearn.cross_validation import train_test_split from sklearn.neighbors import KNeighborsClassifier iris = datasets.load_iris() iris_X = iris... 阅读全文

posted @ 2017-12-06 20:29 Michael2397 阅读(718) 评论(0) 推荐(0) 编辑

sklearn

摘要: 基于Anaconda安装:http://blog.csdn.net/tz_zs/article/details/73459800 官方地址:http://scikit-learn.org/stable/tutorial/index.html 中文0.18文档:http://cwiki.apachec 阅读全文

posted @ 2017-12-06 20:28 Michael2397 阅读(116) 评论(0) 推荐(0) 编辑

2017年12月4日

keras安装windows版

摘要: 按照官网成功了。下面没有成功,貌似是 Anacode的问题 http://blog.csdn.net/hweiyi/article/details/70018317 http://blog.csdn.net/lwplwf/article/details/54896088 根据上述两个链接安装好ker 阅读全文

posted @ 2017-12-04 21:32 Michael2397 阅读(158) 评论(0) 推荐(0) 编辑

2017年12月3日

《精通Spring4.X企业应用开发实战》读后感第五章(不同配置方式比较)

摘要: 阅读全文

posted @ 2017-12-03 09:27 Michael2397 阅读(141) 评论(0) 推荐(0) 编辑

《精通Spring4.X企业应用开发实战》读后感第五章(通过编码方式动态添加Bean)

摘要: 阅读全文

posted @ 2017-12-03 09:22 Michael2397 阅读(133) 评论(0) 推荐(0) 编辑

2017年12月2日

《精通Spring4.X企业应用开发实战》读后感第五章(基于Java类的配置)

摘要: 阅读全文

posted @ 2017-12-02 22:25 Michael2397 阅读(129) 评论(0) 推荐(0) 编辑

《精通Spring4.X企业应用开发实战》读后感第五章(基于注解的配置)

摘要: 阅读全文

posted @ 2017-12-02 21:42 Michael2397 阅读(146) 评论(0) 推荐(0) 编辑

上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 37 下一页

导航