autoencoders¶
Collection of Fully Connected Autoencoders.
Classes
Autoencoder |
Primitive Model for all fully connected autoencoders. |
-
class
ashpy.models.fc.autoencoders.
Autoencoder
(hidden_units, encoding_dimension, output_shape)[source]¶ Bases:
tensorflow.python.keras.engine.training.Model
Primitive Model for all fully connected autoencoders.
Examples
- Direct Usage:
autoencoder = Autoencoder( hidden_units=[256,128,64], encoding_dimension=100, output_shape=55 ) encoding, reconstruction = autoencoder(tf.zeros((1, 55))) print(encoding.shape) print(reconstruction.shape)