Yuning Cui
Yuning Cui
When I read your code of Torch version, I found that the densenet used for the encoder is not pretrained on the Imagenet, which is different from the description in...
Hello, thanks for your contributions. Have you trained the model with your own script, or you just copied or wrote the code for that method without training by yourself? If...
Dear author, thanks for you excellent work. You compute ssim for different tasks using various methods, e.g., matlab version for motion deblurring, python version for defocus deblurring. What is the...
Hello, I ran your code and printed a result of 0.9871965646743774...
Hello, your paper says, "For training, we use the RGB input patches of size 48×48 from LR image with the corresponding HR patches." but in your code, you set patch_size...
Paper name: Focal Network for Image Restoration Project Page: https://github.com/c-yn/FocalNet Related areas: Image Restoration Thanks for maintaining this useful repository!!
Dear Author, where did you get the results on Dense-Haze dataset? I did not find the results of other methods in their papers. And the results of other methods on...
` e_x = torch.sum(torch.exp(x),dim=1,keepdim=True)` ` return F.avg_pool2d(x.mul(e_x), kernel_size, stride=stride).mul_(sum(kernel_size)).div_(F.avg_pool2d(e_x, kernel_size, stride=stride).mul_(sum(kernel_size)))` Dear author, thanks for your summary of pooling techniques. I have some confusions about the softpooling in your repo....