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 have followed this program since Aug, 2023. (Many thanks to the relevant workers!) Recently, I noticed the program updated a lot. Therefore, I also updated the codes in my computer. However, when I trained the same directory, which is created by running COLMAP with a series of figures, I got a really very different PSNR after same times of training. With the original version, only use the loss function like belows,
I got PSNR is aroud 7 or 8, less a lot. I have examined they have both the same training_report function, which print the PSNR. However, observed with my naked eyes that the difference between the figures was very tiny. High distance in PSNR number, low in figures. I want to know WHY?
Really appreciate!!!
The text was updated successfully, but these errors were encountered:
I have followed this program since Aug, 2023. (Many thanks to the relevant workers!) Recently, I noticed the program updated a lot. Therefore, I also updated the codes in my computer. However, when I trained the same directory, which is created by running COLMAP with a series of figures, I got a really very different PSNR after same times of training. With the original version, only use the loss function like belows,
Ll1 = l1_loss(image, gt_image)
loss = (1.0 - opt.lambda_dssim) * Ll1 + opt.lambda_dssim * (1.0 - ssim(image, gt_image))
the PSNR is aroud 20 or 30. However, with the latest version, loss funtion like,
Ll1 = l1_loss(image, gt_image)
if FUSED_SSIM_AVAILABLE:
ssim_value = fused_ssim(image.unsqueeze(0), gt_image.unsqueeze(0))
else:
ssim_value = ssim(image, gt_image)
loss = (1.0 - opt.lambda_dssim) * Ll1 + opt.lambda_dssim * (1.0 - ssim_value)
I got PSNR is aroud 7 or 8, less a lot. I have examined they have both the same training_report function, which print the PSNR. However, observed with my naked eyes that the difference between the figures was very tiny. High distance in PSNR number, low in figures. I want to know WHY?
Really appreciate!!!
The text was updated successfully, but these errors were encountered: