Skip to content

The code for this article is available here as a Jupyter notebook

Notifications You must be signed in to change notification settings

enockkays/Autoencoders

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

Autoencoders

An autoencoder is a type of feedforward neural network that attempts to copy its input to its output. Internally, it has a hidden layer, h, that describes a code, used to represent the input. The network consists of two parts:

  • An encoder function: h=f(x).
  • A decoder function, that produces a reconstruction: r=g(h).

The figure below shows the autoencoder architecture. First, the input passes through the encoder, which is a fully-connected neural network, in order to produce the code. The decoder, which has the similar neural network structure, then produces the output by using the code only. The aim is to get an output identical to the input.

image

In order to build an autoencoder, three things are needed: an encoding method, a decoding method, and a loss function to compare the output with the target.

References

  1. https://ml-cheatsheet.readthedocs.io/en/latest/architectures.html
  2. https://towardsdatascience.com/applied-deep-learning-part-3-autoencoders-1c083af4d798

About

The code for this article is available here as a Jupyter notebook

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published