Adversarial_Autoencoder icon indicating copy to clipboard operation
Adversarial_Autoencoder copied to clipboard

Trainable variables for the generator optimizer

Open ankur-manikandan opened this issue 7 years ago • 0 comments

Hi Naresh,

Really appreciate you taking the time to make the AAE tutorial. It is a great read!

I have a question regarding the implementation of generator_optimizer in the code. When I print en_var, I get the following list of variables

e_dense_1/weights:0
e_dense_1/bias:0
e_dense_2/weights:0
e_dense_2/bias:0
e_latent_variable/weights:0
e_latent_variable/bias:0
d_dense_1/weights:0
d_dense_1/bias:0
d_dense_2/weights:0
d_dense_2/bias:0

In your post, you mention that:

We’ll backprop only through the encoder weights, which causes the encoder to learn the required distribution and produce output which’ll have that distribution.

Do the decoder weights get updated as well?

ankur-manikandan avatar May 01 '18 17:05 ankur-manikandan