Keras-SRGAN
Keras-SRGAN copied to clipboard
Model is not working for different dataset
SRGAN model is working fine for given DIV2K_train_hr dataset. But I tried to train the same model for a different dataset. It does not work.
following is the error.
File "init.py", line 83, in
I have trained new GANs using this repo with a folder of images. How is the shape of your data (16,1)? Could you give more info on the experiment you are doing?
norm_hr = self.high_reso_imgs[indx_high] / 127.5 - 1 print(norm_hr.shape)
in gen_pipeline(self, batch_size=16) function the above line prints (16, ). while it should print (16,256,256,3)