Machine Learning

Autoencoder

A neural network that learns to compress data into a lower-dimensional representation (encoding) and then reconstruct it back (decoding). It learns what features are most important for faithful reconstruction.

Why It Matters

Autoencoders are fundamental to dimensionality reduction, anomaly detection, denoising, and understanding data representations in deep learning.

Example

An autoencoder compressing 784-pixel MNIST digit images into just 32 numbers, then reconstructing recognizable digits from those 32 numbers — learning what matters most.

Think of it like...

Like a sketch artist who captures someone's likeness in a few quick strokes — they learn which features are essential and which details can be omitted.

Related Terms