Use self.latent_dim for generator's input shape rather than a constant 100.
This commit is contained in:
Ero98 2018-08-02 09:36:12 +08:00 коммит произвёл GitHub
Родитель 2ccd7cd4ec
Коммит b20a4b8461
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -35,7 +35,7 @@ class DCGAN():
self.generator = self.build_generator()
# The generator takes noise as input and generates 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