Can anyone recommend a solid, written, introduction, covering similar material?
More on the intuition/theory side for NNs, but Michael Nielsen’s book is highly recommended: http://neuralnetworksanddeeplearning.com
For NLP, you can try this extremely slick interactive course on spaCy (highly recommended Swiss Army knife library for NLP) from package author Ines Montani: https://course.spacy.io
The Keras tutorials are solid, here’s one on seq2seq models: https://blog.keras.io/a-ten-minute-introduction-to-sequence-...
For more cutting edge NLP, it looks like the fast.ai course covers the Transformer model (the basis of BERT, GPT-2, et al. This is a great overview of that architecture: http://nlp.seas.harvard.edu/2018/04/03/attention.html
And PyTorch implementations of Transformer models can be found here: https://github.com/huggingface/pytorch-pretrained-BERT/blob/...
LMK if anyone wants more, I have a learning resource hoarding problem.
Deep Learning from Scratch to GPU at https://dragan.rocks
Deep Learning for Programmers (book in progress) at https://aiprobook.com/deep-learning-for-programmers
E.g. for https://course.fast.ai/videos/?lesson=2 there is https://github.com/hiromis/notes/blob/master/Lesson2.md
But in general for the stuff I want to learn I prefer to read a book, which is harder to find for really recent stuff like this.
An Introduction to Statistical Learning https://github.com/tpn/pdfs/blob/master/An%20Introduction%20...
Deep Learning https://books.google.com/books/about/Deep_Learning.html?id=o...
Machine Learning Mastery books https://machinelearningmastery.com/products/
Convolutional Neural Networks from the Ground Up https://towardsdatascience.com/convolutional-neural-networks...
Transformers https://medium.com/inside-machine-learning/what-is-a-transfo...
Christmas in July! :)