Generative AI
Collection
5 items
โข
Updated
This is a Deep Convolutional Generative Adversarial Network (DCGAN) trained on the CelebA dataset to generate realistic 64x64 RGB images of human faces. The model was developed as part of the Generative AI course.
The training process was tracked using Weights and Biases. You can view the full training logs and metrics here.
To load the trained model, use the following code snippet:
import torch
from dcgan import Generator
# Load the configuration
config = {
"latent_dim": 100,
"ngf": 64,
"nc": 3
}
# Initialize the generator
generator = Generator(config)
# Load the trained weights
model_path = "./dcgan_celeba.pth"
generator.load_state_dict(torch.load(checkpoint_path, map_location=torch.device('cuda' if torch.cuda.is_available() else 'cpu')))
# Set the model to evaluation mode
generator.eval()
# Example: Generate an image
latent_vector = torch.randn(1, config["latent_dim"], 1, 1) # Batch size of 1
if torch.cuda.is_available():
latent_vector = latent_vector.cuda()
generator = generator.cuda()
generated_image = generator(latent_vector)