Closed edgarriba closed 6 years ago
ping @IshmaelBelghazi @vdumoulin
Sorry for the delay; I'll have a short look at get back at you on this.
@edgarriba You are absolutely correct, thank you for pointing this out!
I have a similar problem about the hyper-parameters in Table 5.
The output feature map channel of G_z(x) (i.e. 512) is supposed to be 2 times the size of the latent vector dimension (due to the VAE architecture). But G_x(z) shows that the latent vector size is 512, instead of 256. I'm not sure which one is wrong? Or I misunderstand something? Thanks!
@hubert0527 comparing Table 5 in the paper and the relevant portion of the source code, I believe there is a typo in Table 5: G_x(z) – 512 × 1 × 1 input
should instead read G_x(z) – 256 × 1 × 1 input
.
Thanks for pointing it out, and sorry about the confusion!
In table 5 from the paper you state that the input size for
D(x,z)
is1024x1x1
which I think it's wrong after looking at the previous output sizesD(x)
andD(z)
. I think that should be1536x1x1
.Is that assumption correct?