After completing the assignment (passing with grade 100%), I wanted to test out the performance of the model. Below is the code that I am using to check the generated images:
input_dim = 3 # Number of input channels
real_dim = 3 # Number of output channels
target_shape = 256 # Target shape for the image
gen = UNet(input_dim, real_dim).to(device)
loaded_state = torch.load(“pix2pix_15000.pth”)
gen.load_state_dict(loaded_state[“gen”]) # Adjust the path to your saved model
gen.eval() # Set the model to evaluation mode
transform = transforms.Compose([
transforms.ToTensor(),
])
dataset = torchvision.datasets.ImageFolder(“maps”, transform=transform)
dataloader = DataLoader(dataset, batch_size=4, shuffle=True)
for image, _ in tqdm(dataloader):
image_width = image.shape[3]
condition = image[:, :, :, :image_width // 2]
condition = nn.functional.interpolate(condition, size=target_shape)
condition = condition.to(device)
with torch.no_grad():
fake = gen(condition)
show_tensor_images(fake, size=(real_dim, target_shape, target_shape))
However, I can only see blank/White images as output. I am using the pretrained model (pix2pix_15000.pth) provided in the notebook. During the training however, I could see the Maps images being generated.
Kindly provide a suggestion to as how can i evaluate the GAN!
Lab ID: nmlncolxssuo