Update lsgan.py
This commit is contained in:
Родитель
0106928605
Коммит
16c5a20f28
|
@ -34,7 +34,7 @@ class LSGAN():
|
|||
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
|
||||
|
|
Загрузка…
Ссылка в новой задаче