Quiz 2
Registry Synced

🔄 RNN Variants: GRU, Bidirectional, Deep RNNs

103 words
1 min read

Reading compass

Now · 1. 🎯 Learning Objectives

🔄 RNN Variants: GRU, Bidirectional, Deep RNNs

1. 🎯 Learning Objectives

  • Explain GRU: reset gate, update gate
  • Describe bidirectional RNN for full context
  • Stack RNN layers for deeper representations

2. 📖 Core Content

3.1 GRU

z_t = σ(W_z·[h_{t-1}, x_t]) (update gate) r_t = σ(W_r·[h_{t-1}, x_t]) (reset gate) h̃_t = tanh(W·[r_t⊙h_{t-1}, x_t]) h_t = (1-z_t)⊙h_{t-1} + z_t⊙h̃_t

3.2 Bidirectional RNN

Forward: h→_t, Backward: h←_t. Output: h_t = [h→_t; h←_t]

3.3 Deep (Stacked) RNN

Multiple RNN layers on top of each other. Each layer processes the previous layer's hidden states. Join Discord PreviousResNetNextLSTM & GRU Details
Document outline

Keep your place and jump directly to a heading.

Table of Contents
System Normal // Awaiting Context

Intelligence Hub

Navigate the knowledge graph to generate context. The Hub adapts dynamically to surface backlinks, related notes, and metadata insights.