aitorzip/PyTorch-CycleGAN

Is the comment for Down sampling and Up sampling switched in the Generator Class?

inkplay opened this issue · 2 comments

In = 64
out = in*2 <-- so its 128
We will loop this twice and reassign "out" to "in" so..

in = out <-- in = 128
`out=in * 2'< -- out = 256
The output is consistently getting bigger and bigger why is this labeled #DownSampling?

I'm also curious about this, although I think this is how its implemented in the original CycleGAN as well

in and out means channels' numer,not the image size