qibao77 / CFSNet

pytorch code of "CFSNet: Toward a Controllable Feature Space for Image Restoration"(ICCV2019)
62 stars 4 forks source link

Something about network? #3

Closed GuideWsp closed 4 years ago

GuideWsp commented 4 years ago

In the paper, on the first three FC :512 x 256, 256x128, 128x64. but the \alpha_in is a scalar. Do you set as this: tensorIN = torch.ones(N, 512) * \alpha_in?

Hope your answer! Thanks.

qibao77 commented 4 years ago

Thank you for your attention. Yes, we put torch.ones(N, 512) * \alpha_in into the network.

GuideWsp commented 4 years ago

Thanks!