This is the online course on Udacity.
Instructor: Dr. Vincent Vanhoucke from Google Brain.
Notice: The original assignments can be found at this link.
- Reading:
- C. Olah, Conv Nets: A Modular Perspective.
- C. Olah, Understanding Convolutions.
- C. Olah, Calculus on Computational Graphs: Backpropagation.
- V. Dumoulin and F. Visin, A guide to convolution arithmetic for deep learning. (arXiv, March 2016).
- Implemented a convolutional neural network.
- Reading:
- T. Mikolov et al., Efficient Estimation of Word Representations in Vector Space. (arXiv, Sep 2013).
- T. Mikolov et al., Distributed Representations of Words and Phrases and their Compositionality. (arXiv, Oct 2013).
Subsampling
andNegative sampling
in Word2Vec.
- Implemented a Word2Vec with the skip-gram model and CBOW model in different datasets of Wikipedia text as follows:
- With text8.zip dataset.
- With enwik8.zip dataset.
- Reading:
- LSTM: Long Short-Term Memory
- Note: Backprop for RNNs example can be found at these links [1] and [2].
- char-LSTM implementation with numpy
- Deep Learning with Python, Nov 2017 by François Chollet