Open ymtupup opened 3 years ago
I am also getting same error. :( this PR https://github.com/sanghyun-son/EDSR-PyTorch/pull/291 seems to fix above error but then I get following error -
Update: I can fix this error by removing HR from below - since at test time we don't have corresponding HR (high res) image its size is empty resulting in error when we try to permute.
So the SR saves the super resolution output, though it looks more like a feature map -
Major update - working now. I had missed adding --n_resblocks 32 and --res_scale 0. now its working as expected. thank you!
now new error comes....
I am also getting same error. :( this PR #291 seems to fix above error but then I get following error -
Update: I can fix this error by removing HR from below - since at test time we don't have corresponding HR (high res) image its size is empty resulting in error when we try to permute.
So the SR saves the super resolution output, though it looks more like a feature map -
why I have another error?? please help me
I am also getting same error. :( this PR #291 seems to fix above error but then I get following error - Update: I can fix this error by removing HR from below - since at test time we don't have corresponding HR (high res) image its size is empty resulting in error when we try to permute. So the SR saves the super resolution output, though it looks more like a feature map -
why I have another error?? please help me
I am also getting same error. :( this PR #291 seems to fix above error but then I get following error -
Update: I can fix this error by removing HR from below - since at test time we don't have corresponding HR (high res) image its size is empty resulting in error when we try to permute.
So the SR saves the super resolution output, though it looks more like a feature map -
Is it convenient to leave an email, I want to ask some questions about image superresolution.
I use EDSR_x4.pt to test the model, and have outputs like above, looks more like a feature map. Later I see issue #187, and I change the command like: python3 main.py --data_test Demo --scale 4 --n_resblocks 32 --n_feats 256 --res_scale 0.1 --pre_train ../experiment/model/EDSR_x4.pt --test_only --save_results and it works.