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 绘图
最新推荐文章于 2022-02-27 00:02:43 发布
此博客展示了训练损失随训练次数变化的可视化,使用Python Matplotlib绘制了从第1到第50次迭代的蓝色虚线图,重点在于观察训练过程中的Loss变化。没有直接提及验证损失,但关注的是训练阶段的性能指标。
摘要由CSDN通过智能技术生成