Closed YouCaiJun98 closed 2 years ago
@YouCaiJun98 I still see the issue with the code or, you were able to spot it somewhere in the code?
It turns out that the authors reproduce the model to predict AGWN instead of the whole image (see issue#4). You can safely employ the model to reconstruct the whole image with minor adjustments as stated above.
Yes, you are right. He is predicting the residual. I found it after you pointed to the source. Thank you. For reference (for other readers), the line implementing residual noise concept is here.
Hello and thanks for your reproduction! When I went through model.py, I noticed that in the forward method, you returned
out
instead ofx - out
, which is corresponding to residual learning in the author's article, I wonder if it's a mistake or I missed something. Thanks!