train_on_batch保存一下loss函数变化的图像
作者:互联网
训练的代码没有使用generator用的train_on_batch
尝试先保存一下图像看一下
hey=[]
hello=[]
g_loss = self.combined.train_on_batch([imgs_lr, imgs_hr], [valid, image_features])
hey.append(epoch)
hello.append(g_loss[0])
x=hey
y=hello
plt.plot(x,y)
plt.savefig("hello.png")
标签:loss,hey,batch,train,hello,append 来源: https://blog.csdn.net/qq_42957563/article/details/116912462