xh-liu/CC-FPSE

the channel number of fc in generator is not correct without vae

wenhuach opened this issue · 1 comments

self.fc = nn.Conv2d(self.opt.semantic_nc, 16nfself.sw*self.sh, 3, padding=1)
=>self.fc = nn.Conv2d(self.opt.semantic_nc, 16 * nf, 3, padding=1)

Thanks for pointing out the typo! I have fixed it.