iaf icon indicating copy to clipboard operation
iaf copied to clipboard

Constant variance for the generating network of autoencoder

Open dugarsumit opened this issue 7 years ago • 0 comments

Why are we using constant variance for the generating network of autoencoder instead of learning it like mean from the network itself. What advantage does it have over the learnable variance? This is done in the models.py file at line numbers 473 and 681.

mean_x = T.clip(output+.5, 0+1/512., 1-1/512.) logsd_x = 0*mean_x + w['logsd_x']

dugarsumit avatar Aug 20 '17 06:08 dugarsumit