R/autoencoder_contractive.R
autoencoder_contractive.RdA contractive autoencoder adds a penalty term to the loss function of a basic autoencoder which attempts to induce a contraction of data in the latent space.
autoencoder_contractive(network, loss = "mean_squared_error", weight = 2e-04)
| network | Layer construct of class |
|---|---|
| loss | Character string specifying the reconstruction error part of the loss function |
| weight | Weight assigned to the contractive loss |
A construct of class "ruta_autoencoder"
A practical tutorial on autoencoders for nonlinear feature fusion
Other autoencoder variants: autoencoder_denoising,
autoencoder_robust,
autoencoder_sparse,
autoencoder_variational,
autoencoder