Is the comment for Down sampling and Up sampling switched in the Generator Class?
inkplay opened this issue · 2 comments
inkplay commented
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?
patrick-han commented
I'm also curious about this, although I think this is how its implemented in the original CycleGAN as well
zhangluustb commented
in and out means channels' numer,not the image size