Closed ysig closed 4 years ago
Hi,
For E2GAN, we didn't try the search on 512x512 resolution. To make it work on 512x512 resolution, probably more cells are needed and you will need to modify the discriminator accordingly. In addition, you might need to modify the upsample blocks a bit to match your resolution in the final output.
Regarding this specific error, you will need to change Line 115 "Agent=SAC(131)" to "Agent=SAC(515)" in search/search.py. This number represents the number of channels in the state representation. It has been changed because of the new dataset and new parameters you used in the script.
Good luck on your own dataset. Qin
Thanks a lot for your really immediate answer, I really appreciate it!
I tried to apply your code to a 512x512x3 set of images, in a real world dataset. I made several modifications to the basic code for data-loading and used the cal_fid_stat.py script from AutoGAN to generate stats for my test-set.
I modified the
search.sh
file to the following:I run it and I got the the following error:
I guess the error has to do with downscaling/upscaling convolutions, but I am not sure. I was curious if you had tried a 512px model in the past or if there is a straightforward problem you can observe in the configuration of my script file.
Thanks in advance!