stat453-deep-learning-ss21
stat453-deep-learning-ss21 copied to clipboard
STAT 453: Intro to Deep Learning @ UW-Madison (Spring 2021)
why here is train_dp_list? train_loader = DataLoader(train_dp_list, batch_sampler=BatchSamplerSimilarLength(dataset = train_dp_list, batch_size=BATCH_SIZE), collate_fn=collate_batch) valid_loader = DataLoader(train_dp_list, batch_sampler=BatchSamplerSimilarLength(dataset = valid_dp_list, batch_size=BATCH_SIZE, shuffle=False), collate_fn=collate_batch) test_loader = DataLoader(train_dp_list, batch_sampler=BatchSamplerSimilarLength(dataset = test_dp_list, batch_size=BATCH_SIZE, shuffle=False),
Hello @rasbt, first of all thanks for making all this material available online, as well as your video lectures! A really helpful resource! A small issue and fix: The classic...
More of a FYI... Tried to reproduce L17 4_VAE_celeba-inspect notebook. When loading dataset, got ERROR "Unable to load CelebA dataset. File is not zip file error" with "BadZipFile: File is...
 It should be Model.classifier[0].requires_grad = True because the layer at index 0 is the linear layer. Index 1 is the ReLU layer which does not have trainable parameters. I...