DCGAN-tensorflow icon indicating copy to clipboard operation
DCGAN-tensorflow copied to clipboard

Failed to generate test images more than 100

Open RuikangSun opened this issue 5 years ago • 4 comments

python main.py --dataset dadada --input_height 64 --input_width 64 --output_height 64 --output_width 64 --visualize True --batch_size=1 --option=1 --generate_test_images 1000

RuikangSun avatar Jul 03 '19 09:07 RuikangSun

I followed #216 but it didn't work.

RuikangSun avatar Jul 15 '19 06:07 RuikangSun

No matter how I changed "--generate_test_images",it only generates 100 images.

RuikangSun avatar Jul 17 '19 11:07 RuikangSun

No matter how I changed "--generate_test_images",it only generates 100 images.

Hi, I think I've seen this in other issues, if you want to generate more pic in train process. The command --sample_freq may help. if you don't set sample_freq it will be 200, and it means generate a pic every 200 iterations.

See the code in main.py : flags.DEFINE_integer("sample_freq", 200, "sample every this many iterations")

ALK416 avatar Jul 22 '19 07:07 ALK416

No matter how I changed "--generate_test_images",it only generates 100 images.

Hi, I think I've seen this in other issues, if you want to generate more pic in train process. The command --sample_freq may help. if you don't set sample_freq it will be 200, and it means generate a pic every 200 iterations.

See the code in main.py : flags.DEFINE_integer("sample_freq", 200, "sample every this many iterations")

Thanks for replying! However, I want to generate more images in test process. ; )

RuikangSun avatar Jul 23 '19 06:07 RuikangSun