Я хотел создать DCGAN после этого урока.
У меня все работает и работает на GCP, с моим собственным набором данных изображений (пытаюсь заставить GAN генерировать спутниковые снимки).
Это учебник, которому я следовал, шаг за шагом.
https://towardsdatascience.com/image-generator-drawing-cartoons-with-generative-adversarial-networks-45e814ca9b6b
<ipython-input-14-db5a32a0c488> in <module>
9
10 with tf.Graph().as_default():
---> 11 train(get_batches(input_images), input_images.shape)
<ipython-input-11-73fe85d9d0bc> in train(get_batches, data_shape, checkpoint_to_load)
1 def train(get_batches, data_shape, checkpoint_to_load=None):
2 input_images, input_z, lr_G, lr_D = model_inputs(data_shape[1:], NOISE_SIZE)
----> 3 d_loss, g_loss = model_loss(input_images, input_z, data_shape[3])
4 d_opt, g_opt = model_optimizers(d_loss, g_loss)
5
IndexError: tuple index out of range```
I don't understand why I'm getting this error message, as I've followed the tutorial and copied the same code...
Any help greatly appreciated, been trying to figure this out for a week now, but relatively new to python.
Thank you !!