Skip to content

Commit 87453d9

Browse files
authored
add seq2seq-attention (bahdanau)
1 parent 069c546 commit 87453d9

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,12 @@ A collection of various deep learning architectures, models, & their impleme
8484

8585
#### Many-to-Many / Sequence-to-Sequence: Text Generation
8686

87-
|Title | Dataset | Notebooks |
88-
| --- | --- | --- |
89-
| Character-level RNN (GRU) | [Tiny Shakespeare](https://github.com/karpathy/char-rnn/blob/master/data/tinyshakespeare/input.txt) | [![PyTorch](https://img.shields.io/badge/Py-Torch-red)](pytorch/rnn/rnn-char-gru-tinyshakespeare.ipynb) |
90-
| Character-level RNN (GRU) | [Wikitext](https://huggingface.co/datasets/Salesforce/wikitext) | [![PyTorch](https://img.shields.io/badge/Py-Torch-red)](pytorch/rnn/rnn-char-gru-wikitext.ipynb) |
87+
|Title | Dataset | Description | Notebooks |
88+
| --- | --- | --- | --- |
89+
| Character-level RNN (GRU) | [Tiny Shakespeare](https://github.com/karpathy/char-rnn/blob/master/data/tinyshakespeare/input.txt) | - | [![PyTorch](https://img.shields.io/badge/Py-Torch-red)](pytorch/rnn/rnn-char-gru-tinyshakespeare.ipynb) |
90+
| Character-level RNN (GRU) | [Wikitext](https://huggingface.co/datasets/Salesforce/wikitext) | - | [![PyTorch](https://img.shields.io/badge/Py-Torch-red)](pytorch/rnn/rnn-char-gru-wikitext.ipynb) |
91+
| RNN Encoder-Decoder ([Seq2Seq](https://arxiv.org/pdf/1409.3215)) | [Multi30k (en-de)](https://huggingface.co/datasets/bentrevett/multi30k) | Implementation of [Learning Phrase Representations using RNN Encoder–Decoder for Statistical Machine Translation](https://arxiv.org/pdf/1406.1078) (2014) | [![PyTorch](https://img.shields.io/badge/Py-Torch-red)](pytorch/rnn/seq2seq.ipynb) |
92+
| Encoder-Decoder with [Bahdanau Attention](https://arxiv.org/pdf/1409.0473) | [Multi30k (en-de)](https://huggingface.co/datasets/bentrevett/multi30k) | Implementation of [Neural Machine Translation by Jointly Learning to Align and Translate](https://arxiv.org/pdf/1409.0473) (2016) | [![PyTorch](https://img.shields.io/badge/Py-Torch-red)](pytorch/rnn/seq2seq.ipynb) |
9193

9294
<br><br>
9395

0 commit comments

Comments
 (0)