Generative AI
Collection
5 items
•
Updated
This repository contains a Generative Adversarial Network (GAN) trained on the MNIST dataset to generate realistic handwritten digits. The model was trained as part of the Generative AI course.
To load the trained model, use the following code snippet:
from gan import Generator
import torch
latent_dim = 100
generator = Generator(latent_dim)
generator.load_state_dict(torch.load("./gan_mnist.pth"))
generator.eval()
# Generate samples
z = torch.randn(16, latent_dim)
samples = generator(z)
This project is licensed under the MIT License.