Skip to content

Commit

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

# The generator takes noise as input and generated imgs
z = Input(shape=(100,))
z = Input(shape=(self.latent_dim,))
img = self.generator(z)

# For the combined model we will only train the generator
Expand Down

0 comments on commit 16c5a20

Please sign in to comment.