Fast.ai | Is there a Machine Learning Course here?

First time post-er, long time reader. :smile:

In the lecture videos, Jeremy has mentioned a machine learning course several times as a place to look at for more information. Are these videos currently online? Are these a set of documents somewhere? I can’t seem to find any references on fast.ai to it.

Thanks,

4 Likes
16 Likes

Great! Is there part2 v2 available somewhere too? :slight_smile:

If no, when Jeremy will release it? Is there a some planned date to release the rest?

1 Like

Part 2 v2 is not available yet.

1 Like

If you can, I highly recommend watching the ML1 videos linked by Simoneva above.

There are shorter than the DL1 (about 1h15m each), less intense and cover some key points of the Fastai library you won’t see in DL1 (Jeremy walks through his code in more details with the ML1 students).

7 Likes

That’s great! Random question… If it’s @ March 19th, how does one sign-up for classes to participate?

Is there any way for me to attend those in person @ SF?

Yes you can for sure…
Search their website for the application link…
Or
You can be there as an international fellowship student too…

In lesson 8 of this,
When

optimizer=optim.Adam(net.parameters(), lr=learning_rate)  

is run and the parameters are updated, what exactly has been updated?

net = nn.Sequential(
    nn.Linear(28*28, 100),
    nn.ReLU(),
    nn.Linear(100, 100),
    nn.ReLU(),
    nn.Linear(100, 10),
    nn.LogSoftMax())  

Are the weights part of the ReLU process or are the weights just not seen?