diff --git a/nmt_without_attention/README.md b/nmt_without_attention/README.md index 9895e0b0d228a4294659ace62a6f1b58edeecbc4..38361bbfbc3e029de872eba967a17453c5e7dac1 100644 --- a/nmt_without_attention/README.md +++ b/nmt_without_attention/README.md @@ -6,7 +6,7 @@ ## 模型概览 基于 RNN 的神经网络机器翻译模型遵循编码器-解码器结构,其中的编码器和解码器均是一个循环神经网络。将构成编码器和解码器的两个 RNN 沿时间步展开,得到如下的模型结构图: -


图 1. 编码器-解码器框架

+


图 1. 编码器-解码器框架

神经机器翻译模型的输入输出可以是字符,也可以是词或者短语。不失一般性,本例以基于词的模型为例说明编码器/解码器的工作机制: diff --git a/nmt_without_attention/images/Encoder-Decoder.png b/nmt_without_attention/images/encoder-decoder.png similarity index 100% rename from nmt_without_attention/images/Encoder-Decoder.png rename to nmt_without_attention/images/encoder-decoder.png