Skip to content

Commit

Permalink
fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
wangjiawen2013 authored Jan 28, 2025
1 parent 1717f71 commit dbf7639
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/modern-lstm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down

0 comments on commit dbf7639

Please sign in to comment.