You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to my understanding of WGAN-GP paper interpolates should be
interpolates = self.fake_data + (alpha * differences)
and differences should be
differences = self.real_data - self.fake_data
is my understanding right? please correct me if I'm wrong.
The text was updated successfully, but these errors were encountered:
In Model/gan.py line #177 and #178 :
differences = self.fake_data - self.real_data
interpolates = self.real_data + (alpha * differences)
According to my understanding of WGAN-GP paper interpolates should be
interpolates = self.fake_data + (alpha * differences)
and differences should be
differences = self.real_data - self.fake_data
is my understanding right? please correct me if I'm wrong.
The text was updated successfully, but these errors were encountered: