About 75 results
Open links in new tab
  1. What is an autoencoder? - Data Science Stack Exchange

    Aug 17, 2020 · The autoencoder then works by storing inputs in terms of where they lie on the linear image of . Observe that absent the non-linear activation functions, an autoencoder …

  2. Why my autoencoder model is not learning? - Stack Overflow

    Apr 15, 2020 · If you want to create an autoencoder you need to understand that you're going to reverse process after encoding. That means that if you have three convolutional layers with …

  3. Image generation using autoencoder vs. variational autoencoder

    Sep 17, 2021 · I think that the autoencoder (AE) generates the same new images every time we run the model because it maps the input image to a single point in the latent space. On the …

  4. Extract encoder and decoder from trained autoencoder

    Sep 11, 2018 · Use this best model (manually selected by filename) and plot original image, the encoded representation made by the encoder of the autoencoder and the prediction using the …

  5. python - LSTM Autoencoder problems - Stack Overflow

    TLDR: Autoencoder underfits timeseries reconstruction and just predicts average value. Question Set-up: Here is a summary of my attempt at a sequence-to-sequence autoencoder. This …

  6. What is the difference between an autoencoder and an encoder …

    Jun 18, 2019 · I want to know if there is a difference between an autoencoder and an encoder-decoder.

  7. keras variational autoencoder loss function - Stack Overflow

    You can use a variational autoencoder (VAE) with continuous variables or with binary variables. You need to make some assumption about the distribution of the data in order to select the …

  8. Does it make sense to train a CNN as an autoencoder?

    So, does anyone know if I could just pretrain a CNN as if it was a "crippled" autoencoder, or would that be pointless? Should I be considering some other architecture, like a deep belief network, …

  9. machine learning - Why is the decoder in an autoencoder uses a …

    Dec 15, 2020 · Why is the decoder in an autoencoder uses a sigmoid on the last layer? Asked 4 years, 11 months ago Modified 3 years, 10 months ago Viewed 7k times

  10. python - LSTM Autoencoder - Stack Overflow

    Jun 20, 2017 · I'm trying to build a LSTM autoencoder with the goal of getting a fixed sized vector from a sequence, which represents the sequence as good as possible. This autoencoder …