Merge branch 'master' of github.com:Unity-Technologies/Keras-GAN

This commit is contained in:
dom 2019-09-13 10:32:32 -04:00
Родитель 67d8406f6e 6dc65fcaae
Коммит d476da95b1
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -175,7 +175,7 @@ class INFOGAN():
# Train Discriminator
# ---------------------
for replay in range(5):
for replay in range(2):
# Select a random half batch of images
idx = np.random.randint(0, X_train.shape[0], batch_size)
imgs = X_train[idx]
@ -197,7 +197,7 @@ class INFOGAN():
# Avg. loss
d_loss = 0.5 * np.add(d_loss_real, d_loss_fake)
if (replay==4):
if (replay==1):
# ---------------------
# Train Generator and Q-network
# ---------------------