数据处理
hadoove
这个作者很懒,什么都没留下…
展开
-
matplotlib学习(二)
#image图片#image dataa = np.array([0.313660827978, 0.365348418405, 0.423733120134, 0.365348418405, 0.439599930621, 0.525083754405, 0.423733120134, 0.525083754405, 0.65153635原创 2018-01-13 15:23:06 · 412 阅读 · 0 评论 -
基于keras的深度学习——分类
使用keras的深度学习来分类白葡萄酒还是红葡萄酒首先介绍一下数据类型:1.这个数据集包含了1599种红酒,4898种白酒; 2.输入数据特征: 1 - fixed acidity 2 - volatile acidity 3 - citric acid 4 - residual sugar 5 - chlorides 6 - free s原创 2018-01-08 16:57:14 · 9747 阅读 · 3 评论 -
matplotlib库学习(一)
#matplotlib模块学习import matplotlib.pyplot as pltimport numpy as npx = np.linspace(-5,5,50)y1 = 2*x + 1y2 = x**2#画一个直线plt.figure()plt.plot(x,y1)plt.show()#在同一个fig中画两条线plt.figure(num=3,figsize=(8,6原创 2018-01-10 20:25:01 · 439 阅读 · 0 评论