Skip to content

Commit b184a91

Browse files
authored
README file for Course 5
1 parent 9ff8ae2 commit b184a91

File tree

1 file changed

+84
-0
lines changed

1 file changed

+84
-0
lines changed

Course 5/README.md

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
# Course 5 - Sequence Models
2+
3+
**Info:** This course will teach you how to build models for natural language, audio, and other sequence data. Thanks to deep learning, sequence algorithms are working far better than just two years ago, and this is enabling numerous exciting applications in speech recognition, music synthesis, chatbots, machine translation, natural language understanding, and many others.
4+
5+
You will:
6+
- Understand how to build and train Recurrent Neural Networks (RNNs), and commonly-used variants such as GRUs and LSTMs.
7+
- Be able to apply sequence models to natural language problems, including text synthesis.
8+
- Be able to apply sequence models to audio applications, including speech recognition and music synthesis.
9+
10+
This is the fifth and final course of the Deep Learning Specialization.
11+
12+
deeplearning.ai is also partnering with the NVIDIA Deep Learning Institute (DLI) in Course 5, Sequence Models, to provide a programming assignment on Machine Translation with deep learning. You will have the opportunity to build a deep learning project with cutting-edge, industry-relevant content.
13+
14+
This is the fifth course of the Deep Learning Specialization.
15+
16+
## Week 1 - Recurrent Neural Networks
17+
18+
Learn about recurrent neural networks. This type of model has been proven to perform extremely well on temporal data. It has several variants including LSTMs, GRUs and Bidirectional RNNs, which you are going to learn about in this section.
19+
20+
- Video: Why sequence models
21+
- Video: Notation
22+
- Video: Recurrent Neural Network Model
23+
- Video: Backpropagation through time
24+
- Video: Different types of RNNs
25+
- Video: Language model and sequence generation
26+
- Video: Sampling novel sequences
27+
- Video: Vanishing gradients with RNNs
28+
- Video: Gated Recurrent Unit (GRU)
29+
- Video: Long Short Term Memory (LSTM)
30+
- Video: Bidirectional RNN
31+
- Video: Deep RNNs
32+
- Read: Building a recurrent neural network - step by step
33+
- Read: Dinosaur Island - Character-Level Language Modeling
34+
- Read: Jazz improvisation with LSTM
35+
36+
- Grading: Recurrent Neural Networks
37+
- Grading: Building a recurrent neural network - step by step
38+
- Grading: Dinosaur Island - Character-Level Language Modeling
39+
- Grading: Jazz improvisation with LSTM
40+
41+
42+
## Week 2 - Natural Language Processing & Word Embeddings
43+
44+
45+
Natural language processing with deep learning is an important combination. Using word vector representations and embedding layers you can train recurrent neural networks with outstanding performances in a wide variety of industries. Examples of applications are sentiment analysis, named entity recognition and machine translation.
46+
47+
- Video: Word Representation
48+
- Video: Using word embeddings
49+
- Video: Properties of word embeddings
50+
- Video: Embedding matrix
51+
- Video: Learning word embeddings
52+
- Video: Word2Vec
53+
- Video: Negative Sampling
54+
- Video: GloVe word vectors
55+
- Video: Sentiment Classification
56+
- Video: Debiasing word embeddings
57+
- Read: Operations on word vectors - Debiasing
58+
- Read: Emojify
59+
60+
- Grading: Natural Language Processing & Word Embeddings
61+
- Grading: Operations on word vectors - Debiasing
62+
- Grading: Emojify
63+
64+
## Week 3 - Sequence models & Attention mechanism
65+
66+
Sequence models can be augmented using an attention mechanism. This algorithm will help your model understand where it should focus its attention given a sequence of inputs. This week, you will also learn about speech recognition and how to deal with audio data.
67+
68+
- Video: Basic Models
69+
- Video: Picking the most likely sentence
70+
- Video: Beam Search
71+
- Video: Refinements to Beam Search
72+
- Video: Error analysis in beam search
73+
- Video: Bleu Score (optional)
74+
- Video: Attention Model Intuition
75+
- Video: Attention Model
76+
- Video: Speech recognition
77+
- Video: Trigger Word Detection
78+
- Video: Conclusion and thank you
79+
- Read: Neural Machine Translation with Attention
80+
- Read: Trigger word detection
81+
82+
- Grading: Sequence models & Attention mechanism
83+
- Grading: Neural Machine Translation with Attention
84+
- Grading: Trigger word detection

0 commit comments

Comments
 (0)