Closed simonxue closed 7 years ago
line 210 in gan_64x64.py:
change
output = ResidualBlock('Generator.Res3', 2*dim, 2*dim, 3, output, resample='up')
to
output = ResidualBlock('Generator.Res3', 4*dim, 2*dim, 3, output, resample='up')
line 358-361 in gan_64x64.py:
change ResidualBlock to BottleneckResidualBlock.
It's runnable now, but is not generating any meaningful pictures. :-(
Any update on this? Which tensorflow version do you have?
I use tensorflow-gpu (1.1.0rc2), it has many incompatabilities:
Traceback (most recent call last):
File "gan_64x64.py", line 485, in
I've moved to try gan_cifar.py, which could generate meaningful pics.
Sorry for this! the bugs in gan_64x64.py should be fixed now.
I've downloaded ImageNet small dataset (train_64x64.tar and valid_64x64.tar) and modified DATA_DIR in gan_64x64.py. I've also fixed a potential bug at line 116 (lib.concat -> tf.concat). But I still got the following error:
It seems that the source code is still envolving. Is git "master" in a runnable state?