Mô tả

In this course we are going to look at NLP (natural language processing) with deep learning.

Previously, you learned about some of the basics, like how many NLP problems are just regular machine learning and data science problems in disguise, and simple, practical methods like bag-of-words and term-document matrices.

These allowed us to do some pretty cool things, like detect spam emails, write poetry, spin articles, and group together similar words.

In this course I’m going to show you how to do even more awesome things. We’ll learn not just 1, but 4 new architectures in this course.

First up is word2vec.

In this course, I’m going to show you exactly how word2vec works, from theory to implementation, and you’ll see that it’s merely the application of skills you already know.

Word2vec is interesting because it magically maps words to a vector space where you can find analogies, like:

  • king - man = queen - woman

  • France - Paris = England - London

  • December - Novemeber = July - June

For those beginners who find algorithms tough and just want to use a library, we will demonstrate the use of the Gensim library to obtain pre-trained word vectors, compute similarities and analogies, and apply those word vectors to build text classifiers.


We are also going to look at the GloVe method, which also finds word vectors, but uses a technique called matrix factorization, which is a popular algorithm for recommender systems.

Amazingly, the word vectors produced by GLoVe are just as good as the ones produced by word2vec, and it’s way easier to train.

We will also look at some classical NLP problems, like parts-of-speech tagging and named entity recognition, and use recurrent neural networks to solve them. You’ll see that just about any problem can be solved using neural networks, but you’ll also learn the dangers of having too much complexity.

Lastly, you’ll learn about recursive neural networks, which finally help us solve the problem of negation in sentiment analysis. Recursive neural networks exploit the fact that sentences have a tree structure, and we can finally get away from naively using bag-of-words.

All of the materials required for this course can be downloaded and installed for FREE. We will do most of our work in Numpy, Matplotlib, and Theano. I am always available to answer your questions and help you along your data science journey.

This course focuses on "how to build and understand", not just "how to use". Anyone can learn to use an API in 15 minutes after reading some documentation. It's not about "remembering facts", it's about "seeing for yourself" via experimentation. It will teach you how to visualize what's happening in the model internally. If you want more than just a superficial look at machine learning models, this course is for you.

See you in class!


"If you can't implement it, you don't understand it"

  • Or as the great physicist Richard Feynman said: "What I cannot create, I do not understand".

  • My courses are the ONLY courses where you will learn how to implement machine learning algorithms from scratch

  • Other courses will teach you how to plug in your data into a library, but do you really need help with 3 lines of code?

  • After doing the same thing with 10 datasets, you realize you didn't learn 10 things. You learned 1 thing, and just repeated the same 3 lines of code 10 times...


Suggested Prerequisites:

  • calculus (taking derivatives)

  • matrix addition, multiplication

  • probability (conditional and joint distributions)

  • Python coding: if/else, loops, lists, dicts, sets

  • Numpy coding: matrix and vector operations, loading a CSV file

  • neural networks and backpropagation, be able to derive and code gradient descent algorithms on your own

  • Can write a feedforward neural network in Theano or TensorFlow

  • Can write a recurrent neural network / LSTM / GRU in Theano or TensorFlow from basic primitives, especially the scan function

  • Helpful to have experience with tree algorithms


WHAT ORDER SHOULD I TAKE YOUR COURSES IN?:

  • Check out the lecture "Machine Learning and AI Prerequisite Roadmap" (available in the FAQ of any of my courses, including the free Numpy course)


UNIQUE FEATURES

  • Every line of code explained in detail - email me any time if you disagree

  • No wasted time "typing" on the keyboard like other courses - let's be honest, nobody can really write code worth learning about in just 20 minutes from scratch

  • Not afraid of university-level math - get important details about algorithms that other courses leave out

Bạn sẽ học được gì

Understand and implement word2vec

Understand the CBOW method in word2vec

Understand the skip-gram method in word2vec

Understand the negative sampling optimization in word2vec

Understand and implement GloVe using gradient descent and alternating least squares

Use recurrent neural networks for parts-of-speech tagging

Use recurrent neural networks for named entity recognition

Understand and implement recursive neural networks for sentiment analysis

Understand and implement recursive neural tensor networks for sentiment analysis

Use Gensim to obtain pretrained word vectors and compute similarities and analogies

Yêu cầu

  • Install Numpy, Matplotlib, Sci-Kit Learn, and Theano or TensorFlow (should be extremely easy by now)
  • Understand backpropagation and gradient descent, be able to derive and code the equations on your own
  • Code a recurrent neural network from basic primitives in Theano (or Tensorflow), especially the scan function
  • Code a feedforward neural network in Theano (or Tensorflow)
  • Helpful to have experience with tree algorithms

Nội dung khoá học

13 sections

Outline, Review, and Logistical Things

5 lectures
Introduction, Outline, and Review
05:35
How to Succeed in this Course
03:04
Where to get the code / data for this course
09:17
Preprocessed Wikipedia Data
03:03
How to Open Files for Windows Users
02:18

Beginner's Corner: Working with Word Vectors

9 lectures
What are vectors?
07:56
What is a word analogy?
07:58
Trying to find and assess word vectors using TF-IDF and t-SNE
07:42
Pretrained word vectors from GloVe
11:05
Pretrained word vectors from word2vec
06:31
Text Classification with word vectors
04:24
Text Classification in Code
06:14
Using pretrained vectors later in the course
03:32
Suggestion Box
03:10

Review of Language Modeling and Neural Networks

10 lectures
Review Section Intro
03:13
Bigrams and Language Models
14:47
Bigrams in Code
14:19
Neural Bigram Model
07:56
Neural Bigram Model in Code
06:48
Neural Network Bigram Model
09:13
Neural Network Bigram Model in Code
03:31
Improving Efficiency
14:35
Improving Efficiency in Code
04:52
Review Section Summary
03:26

Word Embeddings and Word2Vec

14 lectures
Return of the Bigram
03:07
CBOW
07:39
Skip-Gram
04:00
Hierarchical Softmax
08:22
Negative Sampling
14:11
Negative Sampling - Important Details
05:09
Why do I have 2 word embedding matrices and what do I do with them?
02:16
Word2Vec implementation tricks
04:49
Word2Vec implementation outline
04:09
Word2Vec in Code with Numpy
10:47
Tensorflow or Theano - Your Choice!
04:09
Word2Vec Tensorflow Implementation Details
03:58
Word2Vec Tensorflow in Code
04:06
Alternative to Wikipedia Data: Brown Corpus
06:03

Word Embeddings using GloVe

13 lectures
GloVe Section Introduction
02:19
Matrix Factorization for Recommender Systems - Basic Concepts
21:08
Matrix Factorization Training
08:11
Expanding the Matrix Factorization Model
09:23
Regularization for Matrix Factorization
06:18
GloVe - Global Vectors for Word Representation
04:12
Recap of ways to train GloVe
02:31
GloVe in Code - Numpy Gradient Descent
16:48
GloVe in Code - Alternating Least Squares
04:42
GloVe in Tensorflow with Gradient Descent
07:03
Visualizing country analogies with t-SNE
04:24
Hyperparameter Challenge
02:19
Training GloVe with SVD (Singular Value Decomposition)
10:38

Unifying Word2Vec and GloVe

2 lectures
Pointwise Mutual Information - Word2Vec as Matrix Factorization
12:06
PMI in Code
07:21

Using Neural Networks to Solve NLP Problems

13 lectures
Parts-of-Speech (POS) Tagging
05:00
How can neural networks be used to solve POS tagging?
04:08
Parts-of-Speech Tagging Baseline
15:18
Parts-of-Speech Tagging Recurrent Neural Network in Theano
13:05
Parts-of-Speech Tagging Recurrent Neural Network in Tensorflow
12:17
How does an HMM solve POS tagging?
07:57
Parts-of-Speech Tagging Hidden Markov Model (HMM)
05:58
Named Entity Recognition (NER)
03:01
Comparing NER and POS tagging
02:01
Named Entity Recognition Baseline
05:54
Named Entity Recognition RNN in Theano
02:19
Named Entity Recognition RNN in Tensorflow
02:13
Hyperparameter Challenge II
02:13

Recursive Neural Networks (Tree Neural Networks)

10 lectures
Recursive Neural Networks Section Introduction
07:14
Sentences as Trees
05:29
Data Description for Recursive Neural Networks
06:52
What are Recursive Neural Networks / Tree Neural Networks (TNNs)?
05:41
Building a TNN with Recursion
04:47
Trees to Sequences
06:38
Recursive Neural Tensor Networks
06:22
RNTN in Tensorflow (Tips)
12:19
RNTN in Tensorflow (Code)
11:19
Recursive Neural Network in TensorFlow with Recursion
04:12

Theano and Tensorflow Basics Review

4 lectures
(Review) Theano Basics
07:47
(Review) Theano Neural Network in Code
09:17
(Review) Tensorflow Basics
07:27
(Review) Tensorflow Neural Network in Code
09:43

Setting Up Your Environment (FAQ by Student Request)

3 lectures
Pre-Installation Check
04:12
Anaconda Environment Setup
20:20
How to install Numpy, Scipy, Matplotlib, Pandas, IPython, Theano, and TensorFlow
17:32

Extra Help With Python Coding for Beginners (FAQ by Student Request)

7 lectures
How to install wp2txt or WikiExtractor.py
02:21
How to Uncompress a .tar.gz file
03:18
How to Code by Yourself (part 1)
15:54
How to Code by Yourself (part 2)
09:23
Proof that using Jupyter Notebook is the same as not using it
12:29
Python 2 vs Python 3
04:38
Is Theano Dead?
10:03

Effective Learning Strategies for Machine Learning (FAQ by Student Request)

4 lectures
How to Succeed in this Course (Long Version)
10:24
Is this for Beginners or Experts? Academic or Practical? Fast or slow-paced?
22:04
Machine Learning and AI Prerequisite Roadmap (pt 1)
11:18
Machine Learning and AI Prerequisite Roadmap (pt 2)
16:07

Appendix / FAQ Finale

2 lectures
What is the Appendix?
02:48
BONUS
05:31

Đánh giá của học viên

Chưa có đánh giá
Course Rating
5
0%
4
0%
3
0%
2
0%
1
0%

Bình luận khách hàng

Viết Bình Luận

Bạn đánh giá khoá học này thế nào?

image

Đăng ký get khoá học Udemy - Unica - Gitiho giá chỉ 50k!

Get khoá học giá rẻ ngay trước khi bị fix.