AutoEncoder

- Regression by predicting a reconstruction of the data
- Encoder E:X→F
- Decoder F→D
- $$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 F<X
- 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