CycleGAN_Tensorlayer icon indicating copy to clipboard operation
CycleGAN_Tensorlayer copied to clipboard

Re-implement CycleGAN in Tensorlayer

Results 6 CycleGAN_Tensorlayer issues
Sort by recently updated
recently updated
newest added

i run the code,and find the results is very pool

I've tried to train the model on original summer2winter_yosemite dataset. After ~20 epochs all sample images turned completely black, and all all loss parameters turned to nan. However, the model...

Hi! It is a great implementation of Cyclegan, providing excellent results on Hiptensorflow and ROCm. However, I could not use it to generate test images of different from 256x256 sizes....

I noticed in [https://github.com/luoxier/CycleGAN_Tensorlayer/blob/master/main.py#L88](url) you obtain the logit of image sampled from imagepool but do not use it, is that for some reason or just do not intend to implement...

Hi @zsdonghao @luoxier , Is there an error in your main.py: _, errGB2A = sess.run([g_b2a_optim, g_b2a_loss], feed_dict={real_A: batch_imgB, real_B: batch_imgB}) Does it should be: _, errGB2A = sess.run([g_b2a_optim, g_b2a_loss], feed_dict={real_A:...

There are sunflower2daisy and leopard2tiger results shown in readme, but I don't find any clue about where to download them in code. In [https://github.com/luoxier/CycleGAN_Tensorlayer/blob/master/main.py#L32](url) an optional value for `dataset_dir` is...