Prerequisite knowlegde required for course

To follow the course some prerequisites are required.

Math calculus

Matrix Algebra

Most algorithms in deep learning are based on matrix algebra and GPUs are often used since they are especially fast in performing matrix operations. Therefore basic knowledge of matrix algebra is needed to understand deep learning algorithms. A good overview can be found at http://www.souravsengupta.com/cds2016/lectures/Savov_Notes.pdf you will only need the first two pages - stuff like Eigenvalues and basis expansion are not strictly required for the course (even though they have intriguing properties and a broad range of applications in machine learning and signal processing).

Calculus

You should know the chain rule, since it is the core of the back propagation algorithm. For a refresher check out e.g. Wikipedia or for an alternative approach the following link

Statistics

You should know the basic descriptive statistics (mean, standard deviation, median, z-transformation) and have a solid understanding of probability and e.g.

  • P(A|B) refers to the probability of event A given that event B was observed
  • P(A|B)=P(A) in case of A and B are independent.
  • P(A,B)= P(A|B) P(B).

You might consider the following cheat sheet (tests are not required).

Computer stuff

Python and Jupyter Notebooks

You need a basic knowledge of python, see e.g. datacamp python cheat sheet. We will use jupyter notebooks and make use of numpy, matlibplot and of course the deep learning libraries TensorFlow, and Keras. To get an introduction on how to work with jupyter notebooks, see for example this jupyter intro webpage.

For the hands-on part you can work via colab which does not require any installation - for getting started with colab follow the instructions how to use google colab. If you want to work locally on your PC, you can also install anaconda (details and installation instruction).


This site uses Just the Docs, a documentation theme for Jekyll.