igul222 / improved_wgan_training

Code for reproducing experiments in "Improved Training of Wasserstein GANs"
MIT License
2.35k stars 668 forks source link

train on CelebA (cropped and resized to 64x64) in WGAN-GP mode #61

Closed y601757692l closed 6 years ago

y601757692l commented 6 years ago

hi,now i am also trying to train on CelebA (cropped and resized to 64x64) in WGAN-GP mode . I just modify the DATA_DIR in gan_64x64.py. But there was a mistake like this: IOError: [Errno 2] No such file or directory: '/data-4T-B/yelu/data/dcgan-completion.tensorflow/aligned/img_align_celeba_png/train_64x64/train_64x64/0927649.png' Could you show me your code? thanks so much~~~

dinggd commented 6 years ago

It clearly shows that file path does not lead to a file. Check your DATA_DIR variables, chances are it is not properly set.

y601757692l commented 6 years ago

thank you so much