Note: This is a wiki post - feel free to edit to add links from the lesson or other useful info.
Resources
Links from lesson
fill me with interesting stuff
Other useful links
15 Likes
rachel
(Rachel Thomas)
April 29, 2020, 1:37am
8
check here if audio is clear
check here if it is not
Edit: Thank you all, it seems the audio is clear for most people
pinaki
April 29, 2020, 1:41am
10
seems like both weight decay
and learning rate
can be used to address overfitting. How do we use them together ? And how do we find the optimal values of both when used in the same equation.
The learning rate doesn’t do any regularization, it’s the size of your updates.
They’re separate hyperparameters so you can specify them together. I don’t know how to find the optimal value for weight decay but learning_rate you can use lr_finder()
1 Like
pinaki
April 29, 2020, 1:43am
14
is LR
only to decrease the number of epochs to achieve optimal results ?
Try re-running the learning rate finder with different wd
parameters (see code ). For example, try anywhere between [1e-5, 1e-4, 1e-3, 1e-2, 1e-1]
.
1 Like
No. If you don’t have a proper value, you won’t train at all. Look again at the past lessons to refresh your mind, this has been covered in chapter 4 and 5.
harish3110
(Harish Vadlamani)
April 29, 2020, 1:45am
17
How do we set the weight decay’s hyper parameter? Can we do something like a random search or grid search approach or is there a better way to set it?
2 Likes
There is no proper way we have found yet. So trying various values is still the best solution.
6 Likes
dcooper01
(Daniel Cooper)
April 29, 2020, 1:45am
19
What’s the advantage of creating our own embedding layer over the stock PyTorch one? I think I missed that
1 Like
chengwliu
(Cheng W Liu)
April 29, 2020, 1:47am
20
What’s the difference between PyTorch’s nn.Module
and fastai2’s Module
?
2 Likes
fastai’s Module
removes the need to call super().__init__()
, which you need to call at each nn.Module
init.
8 Likes
init_27
(Sanyam Bhutani)
April 29, 2020, 1:49am
22
This is wrong Shawshank redemption should be on top!
5 Likes
dcooper01
(Daniel Cooper)
April 29, 2020, 1:50am
23
It’s ALMOST as good as Lawnmower Man 2
1 Like
Ah, E.T. My favorite romance film
4 Likes
zmd
(Darya Zmachynskaya)
April 29, 2020, 1:51am
25
how does sample size of the ratings affect our learned bias ranking?
1 Like
barnacl
(Rekil Prashanth)
April 29, 2020, 1:51am
26
did we cover how n_factors
is selected?
1 Like