赞
踩
包括以下几个步骤:
1. 导入库:
import matplotlib.pyplot as plt
2. 启动动态绘图
plt.ion()
3. 初始化
yy = []
4. 在循环中添加绘图代码
- yy.append(sess.run(accuracy, feed_dict={x: batch_xs,y: batch_ys})) #增加新的点
- plt.clf() #清除旧图
- plt.plot(yy) #绘图
- plt.pause(0.001) #暂停
5. 停止动态绘图
plt.ioff()
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。