CycleGAN icon indicating copy to clipboard operation
CycleGAN copied to clipboard

Tensorflow implementation of CycleGAN

Results 15 CycleGAN issues
Sort by recently updated
recently updated
newest added

Hello, I don't see any use of the files under testA or testB in your code, are you testing the model on training data? thanks!

I think there are some problems in your function input_read() in main.py. Shouldn't we add code such like "while not coord.should_stop():" to make that the variable image_file_A always get images...

I'm confused about a question, Does the size of **pool_size** matter? If I set it bigger, will it learn better?

**fake_pool[random_id] = fake** --- what does use for in dis code? coz it return temp def fake_image_pool(self, num_fakes, fake, fake_pool): ''' dis function saves teh generated image to corresponding pool...

I run this code on tensorflow 1.13.1. i found the error of image_tensor.size() and i change size() into size.

Hello, i am having tensorflow version 1.11.0 i had issue on initialize varaible but solved that issue by modifing to this (tf.global_variables_initializer(), tf.local_variables_initializer()), earlier it had only global initializer. After...

I’m puzzled since your already use a 70X70 patch discriminator in gen_discriminator but you still use random crop to build another “patch discriminator ”. I guess 70X70 is the size...

1. changed size into size(); 2. add initialization of local variables. 3. change code style.

I'm using TensorFlow of version 1.10.0. I need to do the following change in file `main.py` to run this code: 1. Change `size()` into `size` on line 99 & 104;...