Efficient implementation of SSIM #973
Unanswered
ragavvenkatesan
asked this question in
CompVision
Replies: 1 comment 1 reply
-
Hi @ragavvenkatesan, |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there any particular reason for storing the
preds
andtarget
in SSIM and MSSSIM in here, instead of storing computed and total? We could just compute the averages incompute
method and calculate the actual SSIM and MSSSIM on a mini-batch basis on theupdate
method and keep track. The reason why we might want this is because in its current form, SSIM and MSSSIM cannot be tracked during say validation or in any cases, where we do not want to reset them at in the_step_end
methods and instead reset them in the_epoch_end
methods.Thanks, R
Beta Was this translation helpful? Give feedback.
All reactions