An MNIST autoencoder demo using TensorFlow.js to compress and reconstruct handwritten digit images.
This demo showcases a pre-trained autoencoder neural network that compresses MNIST digit images down to a compact latent representation of just 49 dimensions, before reconstructing them. Here's the process:
This technique is useful for dimensionality reduction, feature learning, and potentially generating new digit images.
The demo will cycle through different test images. Watch how well the autoencoder reconstructs various digits.
Original Image | Reconstructed Image |
---|---|
The autoencoder consists of an encoder network that compresses the input, and a decoder network that reconstructs it.