Skip to content

Latest commit

 

History

History

vanilla

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Vanilla Autoencoder

A Vanilla Autoencoder is an autoencoder which learns to reproduce the input from a compressed representation of the output of encoder. The encoder's task is to create an efficient representation of the data and extracing useful information from the input. The decoder's task is to recreate the original input from the compressed output(encoding) of the autoencoder.

Used for efficient encoding(compression) of data. The model contains:

  • An encoder function g(.) parameterized by ϕ
  • A decoder function f(.) parameterized by θ
  • The low-dimensional code learned for input x in the bottleneck layer is the output of encoder, let's call it y
  • The reconstructed input is z = gϕ(y)

The parameters (θ,ϕ) are learned together to output a reconstructed data sample same as the original input:

x' = fθ(gϕ(x))

Our target is to get:

x' ≈ x

We have implemented the Vanilla Autoencoder using PyTorch. You need to install these external libraries before running our code:

  • pytorch(for model training)
  • matplotlib(for plotting graphs and images)
  • tqdm(for showing progress bars)
  • numpy(for displaying images)

Our model has already been trained on the MNIST dataset. To run our code, Open Terminal and navigate to this directory and run:

python vanilla.py

You can train a new model from scratch or load our pre-trained model to test.

Hyperparameters used for the Vanilla Autoencoder Training:

Parameters Values
Learning Rate 9 x 10-3
Epochs 20
Minibatch Size 1200
Optimizer Adam
Loss Function BCE Loss

Our Training and Testing Losses were:

Type Value
Training Loss 0.0824
Testing Loss 0.0796

Our Input and Output on the Test set was:

Output Image

Our loss function value graph during training:

Graph Image