|
|
|
|
|
by talles
507 days ago
|
|
For deep learning: 1. Linear algebra. Be comfortable with vector transformations in the vector space. This is the framework to understand how data is represented and what is going on inside the model. 2. Calculus. Specifically derivatives, up to partial derivatives and the chain rule. This is needed to later understand backpropagation, the learning. It's fine to skip integrals. 3. Vanilla neural network. Study how a simple feed forward and fully connected neural network works, in detail. Every single bit about it. I wouldn't worry or plan anything ahead until having those. After number 3 you'll have different branches to follow and will be better equipped to pick a path. |
|