Open hankook opened 4 years ago
Yes. I got the same error. I found that when setting options.disc_iters>1, the issue occurs, no matter what type of GAN architecture is used.
I tried to debug it but got no workaround so far. Could you pls help for this?
@Marvin182
After debug, I found that we need to add one more setting if training on GPU, instead of TPU.
ModularGAN.experimental_force_graph_unroll=True
options.disc_iters = 2 # if > 1
But as the code suggesting, make sure your GPU has big enough memory.
Welcome to discuss.
@zengsn @hankook hi, I got the same error, have you solve this problem?
My current tensorflow, cuda and cudnn are
1.13.2
,10.0
and7.6.5
, respectively. I also tried other versions (1.14
and1.15
for tensorflow), but I got same error messages. Details are described below.When training SSGAN, I used the following gin configuration, which is slightly modified from
examples/resnet_cifar10.gin
:Then, the below error message was occurred:
When using
examples/resnet_cifar10.gin
, the training code was working successfully. How to fix this issue? Is there any gin configuration examples for SSGAN?