赞
踩
- import matplotlib.pyplot as plt
-
- epochs = [0,1,2,3]
- acc = [4,8,6,5]
- loss = [3,2,1,4]
-
- plt.plot(epochs,acc,color='r',label='acc') # r表示红色
- plt.plot(epochs,loss,color=(0,0,0),label='loss') #也可以用RGB值表示颜色
-
- #####非必须内容#########
- plt.xlabel('epochs') #x轴表示
- plt.ylabel('y label') #y轴表示
- plt.title("chart") #图标标题表示
- plt.legend() #每条折线的label显示
- #######################
- plt.savefig('test.jpg') #保存图片,路径名为test.jpg
- plt.show() #显示图片
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。