pytorch-image-comp-rnn icon indicating copy to clipboard operation
pytorch-image-comp-rnn copied to clipboard

Possibly a mistake?

Open alex-golts opened this issue 6 years ago • 3 comments

Shouldn't this line https://github.com/1zb/pytorch-image-comp-rnn/blob/980f2ff6733c37ca0f4ecce9685a78fd873b2b3c/train.py#L155

be res = res0 - output, where res0 = patches - 0.5?

Rather than res = res - output ?

The residual at each iteration should be with respect to the original image, no?

alex-golts avatar Apr 10 '18 08:04 alex-golts

I think what you are talking about is one-shot reconstruction which is mentioned in section 2.2 of this paper.

1zb avatar Apr 11 '18 17:04 1zb

@1zb I get it now, thanks!

alex-golts avatar Apr 12 '18 11:04 alex-golts