Skip to content

Commit 70a74b5

Browse files
committed
Changed to tick boxes
1 parent ab448ff commit 70a74b5

File tree

1 file changed

+26
-25
lines changed

1 file changed

+26
-25
lines changed

README.md

Lines changed: 26 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -8,42 +8,43 @@ This is the curriculum for [this](https://youtu.be/_qjNH1rDLm0) video on Youtube
88

99
## Week 1 - Feedforward Neural Networks and Backpropagation
1010

11-
- Read Part I of the Deep Learning Book found [here](http://www.deeplearningbook.org/)
12-
- Use this cheat sheet to help understand any math notation, found [here](https://www.flickr.com/photos/95869671@N08/40544016221)
13-
- Watch [Build a Neural Net in 4 Minutes](https://www.youtube.com/watch?v=h3l4qz76JhQ)
14-
- Read [Neural Net in 11 lines](https://iamtrask.github.io/2015/07/12/basic-python-network/)
15-
- Type out the neural network code yourself in a text editor, compile, and run it locally (using no ML libraries)
16-
- Watch [Backpropagation in 5 minutes](https://www.youtube.com/watch?v=q555kfIFUCM)
11+
- [ ] Read Part I of the Deep Learning Book found [here](http://www.deeplearningbook.org/)
12+
- [ ] Use this cheat sheet to help understand any math notation, found [here]
13+
- [ ] (https://www.flickr.com/photos/95869671@N08/40544016221)
14+
- [ ] Watch [Build a Neural Net in 4 Minutes](https://www.youtube.com/watch?v=h3l4qz76JhQ)
15+
- [ ] Read [Neural Net in 11 lines](https://iamtrask.github.io/2015/07/12/basic-python-network/)
16+
- [ ] Type out the neural network code yourself in a text editor, compile, and run it locally (using no ML libraries)
17+
- [ ] Watch [Backpropagation in 5 minutes](https://www.youtube.com/watch?v=q555kfIFUCM)
1718

1819
## Week 2 - Convolutional Networks
1920

20-
- Watch the Convolutional Networks Specialization on Coursera, found [here](https://www.coursera.org/learn/convolutional-neural-networks).
21-
- Read all 3 lecture notes under Module 2 for Karpathy CNN course found [here](http://cs231n.github.io/)
22-
- Watch my video on CNNs [here](https://www.youtube.com/watch?v=FTr3n7uBIuE&t=1782s) and [here](https://www.youtube.com/watch?v=cAICT4Al5Ow&t=4s)
23-
- Write out a simple CNN yourself (using no ML libraries)
21+
- [ ] Watch the Convolutional Networks Specialization on Coursera, found [here](https://www.coursera.org/learn/convolutional-neural-networks).
22+
- [ ] Read all 3 lecture notes under Module 2 for Karpathy CNN course found [here](http://cs231n.github.io/)
23+
- [ ] Watch my video on CNNs [here](https://www.youtube.com/watch?v=FTr3n7uBIuE&t=1782s) and [here](https://www.youtube.com/watch?v=cAICT4Al5Ow&t=4s)
24+
- [ ] Write out a simple CNN yourself (using no ML libraries)
2425

2526
## Week 3 - Recurrent Networks
2627

27-
- Watch the Sequence Models Specialization on Coursera, found [here](https://www.coursera.org/learn/nlp-sequence-models)
28-
- Watch my videos on recurrent networks, [here](https://www.youtube.com/watch?v=BwmddtPFWtA&t=4s), [here](https://www.youtube.com/watch?v=cdLUzrjnlr4), and [here](https://www.youtube.com/watch?v=9zhrxE5PQgY&t=25s)
29-
- Read Trask's blogpost on LSTM RNNs found [here](https://iamtrask.github.io/2015/11/15/anyone-can-code-lstm/)
30-
- Write out a simple RNN yourself (using no ML libraries)
28+
- [ ] Watch the Sequence Models Specialization on Coursera, found [here](https://www.coursera.org/learn/nlp-sequence-models)
29+
- [ ] Watch my videos on recurrent networks, [here](https://www.youtube.com/watch?v=BwmddtPFWtA&t=4s), [here](https://www.youtube.com/watch?v=cdLUzrjnlr4), and [here](https://www.youtube.com/watch?v=9zhrxE5PQgY&t=25s)
30+
- [ ] Read Trask's blogpost on LSTM RNNs found [here](https://iamtrask.github.io/2015/11/15/anyone-can-code-lstm/)
31+
- [ ] Write out a simple RNN yourself (using no ML libraries)
3132

3233
## Week 4 - Tooling
3334

34-
- Watch CS20 (Tensorflow for DL research). Slides are [here](http://web.stanford.edu/class/cs20si/syllabus.html). Playlist is [here](https://www.youtube.com/watch?v=g-EvyKpZjmQ&list=PLDuNt91tg0urwwTQNKyUbncSDvMEl74ww)
35-
- Watch my intro to tensorflow playlist [here](https://www.youtube.com/watch?v=2FmcHiLCwTU&list=PL2-dafEMk2A7EEME489DsI468AB0wQsMV)
36-
- Read Keras Example code to quickly understand its structure [here](https://keras.io/getting-started/sequential-model-guide/)
37-
- Learn which GPU provider is best for you [here](https://medium.com/@rupak.thakur/aws-vs-paperspace-vs-floydhub-choosing-your-cloud-gpu-partner-350150606b39)
38-
- Write out a simple image classifier using Tensorflow
35+
- [ ] Watch CS20 (Tensorflow for DL research). Slides are [here](http://web.stanford.edu/class/cs20si/syllabus.html). Playlist is [here](https://www.youtube.com/watch?v=g-EvyKpZjmQ&list=PLDuNt91tg0urwwTQNKyUbncSDvMEl74ww)
36+
- [ ] Watch my intro to tensorflow playlist [here](https://www.youtube.com/watch?v=2FmcHiLCwTU&list=PL2-dafEMk2A7EEME489DsI468AB0wQsMV)
37+
- [ ] Read Keras Example code to quickly understand its structure [here](https://keras.io/getting-started/sequential-model-guide/)
38+
- [ ] Learn which GPU provider is best for you [here](https://medium.com/@rupak.thakur/aws-vs-paperspace-vs-floydhub-choosing-your-cloud-gpu-partner-350150606b39)
39+
- [ ] Write out a simple image classifier using Tensorflow
3940

4041
## Week 5 - Generative Adversarial Network
41-
- Watch the first 7 videos you see [here](https://www.youtube.com/results?search_query=generative+adversarial+network)
42-
- Build a GAN using no ML libraries
43-
- Build a GAN using tensorflow
44-
- Read this to understand the math of GANs, but don't worry if you dont understand it all. This is the bleeding edge [here](https://lilianweng.github.io/lil-log/2017/08/20/from-GAN-to-WGAN.html)
42+
- [ ] Watch the first 7 videos you see [here](https://www.youtube.com/results?search_query=generative+adversarial+network)
43+
- [ ] Build a GAN using no ML libraries
44+
- [ ] Build a GAN using tensorflow
45+
- [ ] Read this to understand the math of GANs, but don't worry if you dont understand it all. This is the bleeding edge [here](https://lilianweng.github.io/lil-log/2017/08/20/from-GAN-to-WGAN.html)
4546

4647
## Week 6 - Deep Reinforcement Learning
47-
- Watch CS 294 [here](http://rail.eecs.berkeley.edu/deeprlcourse/)
48-
- Build a Deep Q Network using Tensorflow
48+
- [ ] Watch CS 294 [here](http://rail.eecs.berkeley.edu/deeprlcourse/)
49+
- [ ] Build a Deep Q Network using Tensorflow
4950

0 commit comments

Comments
 (0)