AutoEncoder

  • Regression by predicting a reconstruction of the data
  • Encoder
  • Decoder
  • $$E_\theta, D_\theta = argmin_{E_\theta, D\theta}||X-D(E(X))||^2$
  • Compressed rep of data Good for Classification or Regression
  • MSE : Unsupervised

Difficulties

  • dim
    • Cannot learn the identity function
  • usages
    • data compression / Dimensionality Reduction
    • encoder to obtain features (use the latent variable as feature)
    • denoising autoencoders
      • input noisy image and try to obtain image without noise
    • sparse auto-encoder
    • contractive autoencoder

Types