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 essentially …

  2. Graph Autoencoder with PyTorch-Geometric - Stack Overflow

    I would recommend to check out the graph autoencoder example, but this aims to reconstruct the adjacency matrix. Another point could be to exchange the GAT with models specifically designed for …

  3. using simple autoencoder for feature selection - Data Science Stack ...

    I am using a simple autoencoder to extract the informative features and I have multiple Q: I know that the features extracted will be a linear combination of the original features so I consider th...

  4. Autoencoder for multi-label classification task - Stack Overflow

    Feb 24, 2025 · I'm working on a multi-label classification problem using an autoencoder-based neural network built in PyTorch. The overall idea of my approach is as follows: I load my dataset from a …

  5. 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 …

  6. machine learning - How to reverse max pooling layer in autoencoder …

    Jan 3, 2022 · How to reverse max pooling layer in autoencoder to return the original shape in decoder? Asked 4 years, 3 months ago Modified 4 years, 3 months ago Viewed 5k times

  7. Pytorch MNIST autoencoder to learn 10-digit classification

    Mar 17, 2021 · Autoencoder is technically not used as a classifier in general. They learn how to encode a given image into a short vector and reconstruct the same image from the encoded vector. It is a …

  8. CNN Autoencoder takes a very long time to train - Stack Overflow

    Mar 17, 2025 · I have been training a CNN Autoencoder on binary images (pixels are either 0 or 1) of size 64x64. The model is shown below: import torch import torch.nn as nn import torch.nn.functional …

  9. 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 image was …

  10. machine learning - Why use Variational Autoencoders VAE instead of ...

    Jun 10, 2019 · My work is based on Anomaly Detection for Skin Disease Images Using Variational Autoencoder but i have a very small data set (about 5 pictures) that I am replicating to have about …