@@ -25,14 +25,14 @@ prepare it for training and train. It takes about 20GB of disk space,
2525and a while to download and prepare (see [ later] ( #lets-run-it ) for details),
2626so you can start and leave it running while reading this tutorial.
2727
28- This tutorial references the following files from ` models/rnn ` .
28+ This tutorial references the following files.
2929
3030File | What's in it?
3131--- | ---
32- ` seq2seq.py ` | Library for building sequence-to-sequence models.
33- ` translate/seq2seq_model.py ` | Neural translation sequence-to-sequence model.
34- ` translate/data_utils.py ` | Helper functions for preparing translation data.
35- ` translate/translate.py ` | Binary that trains and runs the translation model.
32+ ` python/ops/ seq2seq.py` | Library for building sequence-to-sequence models.
33+ ` models/rnn/ translate/seq2seq_model.py` | Neural translation sequence-to-sequence model.
34+ ` models/rnn/ translate/data_utils.py` | Helper functions for preparing translation data.
35+ ` models/rnn/ translate/translate.py` | Binary that trains and runs the translation model.
3636
3737
3838## Sequence-to-Sequence Basics
@@ -74,7 +74,7 @@ attention mechanism in the decoder looks like this.
7474As you can see above, there are many different sequence-to-sequence
7575models. Each of these models can use different RNN cells, but all
7676of them accept encoder inputs and decoder inputs. This motivates
77- the interfaces in the TensorFlow seq2seq library (` models/rnn /seq2seq.py` ).
77+ the interfaces in the TensorFlow seq2seq library (` python/ops /seq2seq.py` ).
7878The basic RNN encoder-decoder sequence-to-sequence model works as follows.
7979
8080``` python
@@ -151,7 +151,7 @@ have similar interfaces, so we will not describe them in detail. We will use
151151## Neural Translation Model
152152
153153While the core of the sequence-to-sequence model is constructed by
154- the functions in ` models/rnn /seq2seq.py` , there are still a few tricks
154+ the functions in ` python/ops /seq2seq.py` , there are still a few tricks
155155that are worth mentioning that are used in our translation model in
156156` models/rnn/translate/seq2seq_model.py ` .
157157
0 commit comments