欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Python 绘图

程序员文章站 2022-03-29 16:04:52
...
plt.figure(figsize=(12, 7))
x= list(range(1,51))
plt.plot(x,train_loss_all,'b--',label='Train_loss',linewidth=3)
# plt.plot(val_loss_all,'g--',label='val_loss',linewidth=3)
# plt.plot(x, train_loss_all,'b^-', x, val_loss_all, 'g+-')
plt.plot(x, train_loss_all,'b^-')
plt.title('The change of loss ',fontsize=24)
plt.xlabel('train_number',fontsize=18)
plt.ylabel('loss',fontsize=18)
plt.legend(fontsize=14, markerscale=2., scatterpoints=1)
plt.show()
相关标签: python