constantinpape / training-deep-learning-models-for-vison

8 stars 3 forks source link

Exercises Day1 #2

Open constantinpape opened 3 years ago

constantinpape commented 3 years ago

Summary of issues with exercises of day 1:

Ideas for updating the exercises: Exercise 2: Try different learning rates for the LogReg model here (and start from a better learning rate). Don't do filters. Exercise 3: Start with a bit smaller MLP. Check if best LR for LogReg also works well for MLP. Otherwise make tuning the learning rate a task again. First task: larger architecture. Second task: use skimage filters (laplacian + gaussian) as input instead of image. Advanced task: Express the filters as torch.nn.conv2d.

Also, use SGD instead of Adam? Check how much this changes the learning rate issues.

constantinpape commented 3 years ago

Logistic regression is just not very powerful (interestingly 1e-3 is best learning rate). I think it would be best to keep that exercise minimal, maybe just have a couple of questions, and have all the tasks in the MLP exercise.