tdeboissiere / DeepLearningImplementations

Implementation of recent Deep Learning papers
MIT License
1.81k stars 652 forks source link

Explaning discriminator model #93

Closed marlon-shiftone closed 2 years ago

marlon-shiftone commented 2 years ago

Hello,

Sorry for this silly question. But I'm cracking my head up to understand what do you do when you plug the which input from the list of inputs to the PatchGAN model:


x = [PatchGAN(patch)[0] for patch in list_input]
x_mbd = [PatchGAN(patch)[1] for patch in list_input]

It seems you are plugging the items of the list of inputs to the first and second layers of the PatchGAN model. Is it? If so, why?

I apologize for the question again!