-
Hi, I just test pytorch_msssim.ssim and skimage. When I compute ssim value with these two methods on 2d matrix, I got different results, I want to know what the problem is. Maybe I use ssim in a wron…
-
It would be great if there was a flag to make the results identical to the output of compare_ssim from scikit image.
Their implementation uses no padding, but there's still a slight difference in my …
-
Hello,
I tried to clone the repo, but I got the following error.
Downloading models/ms_ssim-2021cc-1/0_model.pt (164 MB)
Error downloading object: models/ms_ssim-2021cc-1/0_model.pt (43f4625): …
-
SSIM would be easy to implement in python [1].
The gradient can be calculated [2] so we should be able to use this as a metric?
[1] http://en.wikipedia.org/wiki/Structural_similarity
[2] Zhou Wang a…
-
Hi,
I am not able to run the example script. Could you please let me know what is missing?
basic usage script :
import pytorch_ssim
import torch
from torch.autograd import Variable
i…
-
Hey,
It's a pretty work. I also conduct some comparison experiments in video frame interpolation. But I have several questions in some details.
I've been trying to run this code and to output resul…
-
Thank you for the great code!
Would you happen to have any pretrained models weights trained with MS-SSIM loss?
-
I use below command.
python test.py --dataroot ./ --model test --dataset_mode single --learn_residual --loadSizeX 1280 --loadSizeY 720 --resize_or_crop test
I try to test on whole GOPRO-test set…
-
Hello! from model.pytorch_SSIM import SSIM,where is the model? Can you tell me?
-
while ssim_value < 0.95:
optimizer.zero_grad()
ssim_out = -ssim_loss(img1, img2)
ssim_value = - ssim_out.item()
print(ssim_value)
ssim_out.backward()
optimizer.step()
…