For enhancement model
I am trying to implement enhancement model for text based images, please suggest best approach to config this
Why are my GAN implementation not converging?
`class GAN:
def generator_loss(_, y_pred):
# y_pred = D(G(noise))
return tfm.reduce_sum(tfm.log(y_pred)) / y_pred.shape[0]