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

This commit is contained in:
dom 2019-09-13 07:22:33 -04:00
Родитель 302caaf86c 5189b7cbda
Коммит 6dc65fcaae
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -150,7 +150,7 @@ class CGAN():
# ---------------------
# Condition on labels
sampled_labels = np.random.randint(0, 10, batch_size).reshape(-1, 1)
sampled_labels = np.random.randint(0, self.num_classes, batch_size).reshape(-1, 1)
# Train the generator
g_loss = self.combined.train_on_batch([noise, sampled_labels], valid)