A simple autoencoder trained on MNIST.
This model is part of the "Introduction to Generative AI" course.
For more details, visit the
GitHub repository.
The AutoEncoder is a neural network designed to compress and reconstruct input data. It consists of an encoder that compresses the input into a latent space and a decoder that reconstructs the input from the latent representation.
For detailed training logs and metrics, visit the
Weights & Biases run.
1from model import AutoEncoder
2import torch
3
4model = AutoEncoder()
5model.load_state_dict(torch.load("model.pth"))
6model.eval()
This project is licensed under the MIT License. See the LICENSE file for details.