From 33943b793ba276fa8e97eb6c35e4bd5b88b2bd95 Mon Sep 17 00:00:00 2001 From: Divyanshu Gupta Date: Mon, 29 Oct 2018 11:38:56 +0530 Subject: [PATCH] update --- seq2seq-translation/seq2seq-translation-batched.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seq2seq-translation/seq2seq-translation-batched.ipynb b/seq2seq-translation/seq2seq-translation-batched.ipynb index 465ce6f..519f2ed 100644 --- a/seq2seq-translation/seq2seq-translation-batched.ipynb +++ b/seq2seq-translation/seq2seq-translation-batched.ipynb @@ -35,7 +35,7 @@ "This is made possible by the simple but powerful idea of the [sequence to sequence network](http://arxiv.org/abs/1409.3215), in which two recurrent neural networks work together to transform one sequence to another. An encoder network condenses an input sequence into a single vector, and a decoder network unfolds that vector into a new sequence.\n", "\n", "To improve upon this model we'll use an [attention mechanism](https://arxiv.org/abs/1409.0473), which lets the decoder learn to focus over a specific range of the input sequence." - ] + ] }, { "cell_type": "markdown",