训练的代码没有使用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")