DL-IT / generative_zoo

54 stars 3 forks source link

VAEGAN training failing #1

Open vishwakftw opened 7 years ago

vishwakftw commented 7 years ago

The VAEGAN training fails after about 30 iterations.

vishwakftw commented 7 years ago

The training is stabilized. The Lth layer loss is decreasing, but very slowly. The images are incomprehensible.

vishwakftw commented 7 years ago

I think the issue has been fixed. The problem was with the loss function specified in the paper. L{gan} is supposed to be of the opposite sign since we are minimizing it for the discriminator, as specified in the algorithm. The code was written verbatim from the text, hence the problem.

vishwakftw commented 7 years ago

However, after proposing the above fix, the image that are learned are incomprehensible. Below is the graph of the variation of all losses with the iterations.

vaegan_train

Optimizer used is Adam with learning rate: 0.0005 and (beta1, beta2) = (0.5, 0.9)

Any help would be appreciated.