tdeboissiere / DeepLearningImplementations

Implementation of recent Deep Learning papers
MIT License
1.81k stars 652 forks source link

Typo in WGAN-GP #57

Closed shihux closed 6 years ago

shihux commented 6 years ago

Hi, for line 76 in DeepLearningImplementations/WGAN-GP/src/model/train_wgan_GP.py: should it be: X_hat = X_fake + epsilon * (X_real - X_fake)

instead of

X_hat = X_real + epsilon * (X_fake - X_real)?