stat453-deep-learning-ss21 icon indicating copy to clipboard operation
stat453-deep-learning-ss21 copied to clipboard

STAT 453: Intro to Deep Learning @ UW-Madison (Spring 2021)

Results 4 stat453-deep-learning-ss21 issues
Sort by recently updated
recently updated
newest added

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...

![image](https://user-images.githubusercontent.com/21982975/123427148-18470a00-d579-11eb-8eeb-d11fb5ed962a.png) 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...