Skip to content

Commit

Permalink
Fix (sdv-dev#160)
Browse files Browse the repository at this point in the history
  • Loading branch information
fealho committed Jul 14, 2021
1 parent 99d403a commit 2dbbc18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ctgan/synthesizers/ctgan.py
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ def fit(self, train_data, discrete_columns=tuple(), epochs=None):
real_cat = torch.cat([real, c2], dim=1)
else:
real_cat = real
fake_cat = fake
fake_cat = fakeact

y_fake = discriminator(fake_cat)
y_real = discriminator(real_cat)
Expand Down

0 comments on commit 2dbbc18

Please sign in to comment.