Created
July 28, 2021 19:56
-
-
Save a-agmon/f74073f50d695cdd529475df3a123238 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# decoder model | |
latent_inputs = Input(shape=(latent_dim,), name='z_sampling') | |
x = Dense(intermediate_dim, activation='relu')(latent_inputs) | |
outputs = Dense(original_dim, activation='sigmoid')(x) | |
# Instantiate the decoder model: | |
decoder = Model(latent_inputs, outputs, name='decoder') | |
decoder.summary() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment