In main_GAN.py:
line 85 :down_ref = down(ref) #down_ref is not used latter,ref is used to refer
line 92 :SR_tar = G(target) #target is loaded from HR files , so G(target) looks incorrect
Therefore i think codes should be corrected as :
line 85 :down_target = down(target)
line 92 :SR_tar = G(down_target )
did i get wrong with something? Please tell me ,thank you!
And i want to ask : is the code main_GAN.py a survised version?
In main_GAN.py: line 85 :down_ref = down(ref) #down_ref is not used latter,ref is used to refer line 92 :SR_tar = G(target) #target is loaded from HR files , so G(target) looks incorrect Therefore i think codes should be corrected as : line 85 :down_target = down(target) line 92 :SR_tar = G(down_target ) did i get wrong with something? Please tell me ,thank you! And i want to ask : is the code main_GAN.py a survised version?