adversarial-autoencoder icon indicating copy to clipboard operation
adversarial-autoencoder copied to clipboard

Is there any difference on semi-supervised decoders' inputs?

Open YuzhengSun opened this issue 5 years ago • 1 comments

Dim_reduction adds a representation part before decoder compared to normal semi-supervised model. However, the inputs of decoders are all addition between tensors, is there any difference? I think normal semi-supervised model's decoder's input should be addition of dimensions (dim_z + dim_y), but I'm not sure.

YuzhengSun avatar May 07 '19 02:05 YuzhengSun

Do you mean

The input of the normal semi-supervised model should be a concatenation of y and z input = concatenate(z, y) But in dimensionality reduction example, the input of decoders are calculated by adding y and z input = z + y Is there any difference?

?

musyoku avatar May 09 '19 07:05 musyoku