码迷,mamicode.com
首页 > 其他好文 > 详细

机器学习(一) 效果图实现代码

时间:2018-10-17 14:54:28      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:style   logistic   ict   dict   max   span   pre   red   att   

xmin, xmax = data[:,0].min(), data[:,0].max()
ymin, ymax = data[:,1].min(), data[:,1].max()

x = np.linspace(xmin,xmax, 1000)
y = np.linspace(ymin, ymax, 1000)
X,Y = np.meshgrid(x,y)

X_test = np.c_[X.ravel(), Y.ravel()]

y_logistic = logistic.predict(X_test)

plt.pcolormesh(X,Y,y_logistic.reshape(1000,1000))
plt.scatter(data[:, 0], data[:,1], c=target, cmap=rainbow)

算法模型实现效果图

机器学习(一) 效果图实现代码

标签:style   logistic   ict   dict   max   span   pre   red   att   

原文地址:https://www.cnblogs.com/gugubeng/p/9803439.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!