Building an RNN Text Model
Wire it up in PyTorch or Keras.
From Theory to Code
Time to wire up a real model. Both PyTorch and Keras give you ready RNN layers, so you focus on shape, not raw math.
Start With Embeddings
Your first layer is usually an embedding layer. It maps each integer word id to a learnable dense vector.
All lessons in this course
- Why Order Matters in Language
- How an RNN Reads a Sequence
- Building an RNN Text Model
- The Vanishing Gradient Problem