This commit is contained in:
Ero98 2018-08-02 17:43:07 +08:00 коммит произвёл GitHub
Родитель 5b635efa95
Коммит bdd3c40bb4
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -36,7 +36,7 @@ class BGAN():
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