Skip to content

Latest commit

 

History

History
26 lines (23 loc) · 1.81 KB

File metadata and controls

26 lines (23 loc) · 1.81 KB

Auto Encoder(AE)

The Autoencoder consists of only one hidden layer. The number of neurons in the hidden layer is less than the number of neurons in the input (or output) layer. This results in producing a bottleneck effect on the flow of information in the network, and therefore we can think of the hidden layer as a bottleneck layer, restricting the information that would be stored. Learning in the autoencoder consists of developing a compact representation of the input signal at the hidden layer so that the output layer can faithfully reproduce the original input

code

python3 sample_keras.py
python3 sample_pytorch.py
python3 sample_scratch.py

Usefull Resources: