the size is wrong
Thank you very much for your code contribution, after I run according to your code,like this:

the test data shape is reds, lr image shape is 3232, hr image shape is 128128, but an error occurred,like this:
I try to modify some parameters,in model/CRFP.py:



but an error occurred,like this:

Excuse me, where did I go wrong
Would it make sense to use the following argument?
--GT_size 128
in order not use the default value of 256:
https://github.com/eugenelet/CRFP/blob/c7d0b82735514ba182c14f188f29fdec390d6a6f/option.py#L88-L89
Would it make sense to use the following argument?
--GT_size 128in order not use the default value of 256:
https://github.com/eugenelet/CRFP/blob/c7d0b82735514ba182c14f188f29fdec390d6a6f/option.py#L88-L89
No, after the parameters are modified:--GT_size 128, an error is still reported

Would it make sense to use the following argument?
--GT_size 128in order not use the default value of 256: https://github.com/eugenelet/CRFP/blob/c7d0b82735514ba182c14f188f29fdec390d6a6f/option.py#L88-L89
No, after the parameters are modified:--GT_size 128, an error is still reported
Hi, could you please check TestSet() class in dataset/reds.py?
Since we source the different preprocessed LR dataset with different scaling factor.
And in test mode we use full size of data and the parameters --GT_size and --LR_size will not be used.
The size could be wrong at the begining when you load those data.
And I also wonder what are the shapes of these tensors in your case? Thank you.