We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
Thank you for your nice work. I want to know how you calculate the metrics for reporting.
Here are some results using your code and your model weights.
python inference.py --checkpoint student-setting1.pth xxx
torchPSNR(pred_image, gt_image) + pytorch_ssim.ssim(pred_image, gt_image);
torchPSNR(rgb2ycbcr(pred_image[0]), rgb2ycbcr(gt_image[0])) + sk_cpt_ssim(rgb2ycbcr(pred_image[0]), rgb2ycbcr(gt_image[0]), data_range=1.0, multichannel=True).
The val data (and numbers) are: SOTS outdoor (500), Rain1400 (1400), CSD (2000).
SOTS outdoor (500), Rain1400 (1400), CSD (2000)
Here are my results compared to the CVPR version:
I think the metrics calculated on the Y channel are close to yours. Can you clarify this? Thanks!
The text was updated successfully, but these errors were encountered:
I get the same value on Rain1400 testset
Sorry, something went wrong.
Do you generate the meta file for training? can you provide the generate code by dataset path?
No branches or pull requests
Hi,
Thank you for your nice work.
I want to know how you calculate the metrics for reporting.
Here are some results using your code and your model weights.
python inference.py --checkpoint student-setting1.pth xxx
and save the restored images.a) RGB:
torchPSNR(pred_image, gt_image) + pytorch_ssim.ssim(pred_image, gt_image);
b) Y:
torchPSNR(rgb2ycbcr(pred_image[0]), rgb2ycbcr(gt_image[0])) + sk_cpt_ssim(rgb2ycbcr(pred_image[0]), rgb2ycbcr(gt_image[0]), data_range=1.0, multichannel=True).
The val data (and numbers) are:
SOTS outdoor (500), Rain1400 (1400), CSD (2000)
.Here are my results compared to the CVPR version:
I think the metrics calculated on the Y channel are close to yours.
Can you clarify this? Thanks!
The text was updated successfully, but these errors were encountered: