You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've spotted some subtle issues that may need to be taken care of.
Evaluate_PSNR_SSIM.m appears to be using ./HR directory for reading HR images in order to compute PSNR and SSIM value. However, according to the Readme, the correct directory actually should be ./benchmark/HR/. Line 34 and Line 41 should add an additional './benchmark' parameter to fullfile() function.
The whole warning suppression module import and usage seems completely unnecessary, just change line 206 of ./ops/OSA.py to grid = torch.stack(torch.meshgrid(pos, pos, indexing="ij")) the warning would go away.
The text was updated successfully, but these errors were encountered:
I've spotted some subtle issues that may need to be taken care of.
Evaluate_PSNR_SSIM.m appears to be using ./HR directory for reading HR images in order to compute PSNR and SSIM value. However, according to the Readme, the correct directory actually should be ./benchmark/HR/.
Line 34 and Line 41 should add an additional './benchmark' parameter to fullfile() function.
The whole warning suppression module import and usage seems completely unnecessary, just change line 206 of ./ops/OSA.py to
grid = torch.stack(torch.meshgrid(pos, pos, indexing="ij")) the warning would go away.
The text was updated successfully, but these errors were encountered: