From dbf7639595dc48a8e5da9d2b59a8329a7a868ab0 Mon Sep 17 00:00:00 2001 From: jiawen wang Date: Tue, 28 Jan 2025 16:31:04 +0800 Subject: [PATCH] fix a typo --- examples/modern-lstm/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/modern-lstm/README.md b/examples/modern-lstm/README.md index 5a41f078b1..b71a14a491 100644 --- a/examples/modern-lstm/README.md +++ b/examples/modern-lstm/README.md @@ -4,8 +4,8 @@ A sophisticated implementation of Long Short-Term Memory (LSTM) networks in Burn `LstmNetwork` is the top-level module with bidirectional support and output projection. It can support multiple LSTM variants by setting appropriate `bidirectional` and `num_layers`: * LSTM: `num_layers = 1` and `bidirectional = false` * Stacked LSTM: `num_layers > 1` and `bidirectional = false` -* Birectional LSTM: `num_layers = 1` and `bidirectional = true` -* Birectional Stacked LSTM: `num_layers > 1` and `birectional = true` +* Bidirectional LSTM: `num_layers = 1` and `bidirectional = true` +* Bidirectional Stacked LSTM: `num_layers > 1` and `bidirectional = true` This implementation is complementary to Burn's official LSTM, users can choose either one depends on the project's specific needs.