Skip to content

Commit

Permalink
Update cgan.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Ero98 authored Aug 2, 2018
1 parent bdd3c40 commit ebbd008
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cgan/cgan.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def __init__(self):

# The generator takes noise and the target label as input
# and generates the corresponding digit of that label
noise = Input(shape=(100,))
noise = Input(shape=(self.latent_dim,))
label = Input(shape=(1,))
img = self.generator([noise, label])

Expand Down

0 comments on commit ebbd008

Please sign in to comment.