Skip to content

Commit c8e66e8

Browse files
authored
Merge pull request #9272 from PaddlePaddle/shanyi15-patch-4
repair image link in rnn.md
2 parents 7bb4ea9 + c55bff7 commit c8e66e8

File tree

1 file changed

+5
-5
lines changed
  • doc/fluid/design/dynamic_rnn

1 file changed

+5
-5
lines changed

doc/fluid/design/dynamic_rnn/rnn.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This document describes the RNN (Recurrent Neural Network) operator and how it i
55
## RNN Algorithm Implementation
66

77
<p align="center">
8-
<img src="./images/rnn.jpg"/>
8+
<img src="./rnn.jpg"/>
99
</p>
1010

1111
The above diagram shows an RNN unrolled into a full network.
@@ -22,7 +22,7 @@ There are several important concepts here:
2222
There could be local variables defined in each step-net. PaddlePaddle runtime realizes these variables in *step-scopes* which are created for each step.
2323

2424
<p align="center">
25-
<img src="./images/rnn.png"/><br/>
25+
<img src="./rnn.png"/><br/>
2626
Figure 2 illustrates the RNN's data flow
2727
</p>
2828

@@ -49,7 +49,7 @@ or copy the memory value of the previous step to the current ex-memory variable.
4949
5050
### Usage in Python
5151
52-
For more information on Block, please refer to the [design doc](https://github.com/PaddlePaddle/Paddle/blob/develop/doc/design/block.md).
52+
For more information on Block, please refer to the [design doc](https://github.com/PaddlePaddle/Paddle/blob/develop/doc/fluid/design/concepts/block.md).
5353
5454
We can define an RNN's step-net using a Block:
5555
@@ -93,7 +93,7 @@ For example, we could have a 2-level RNN, where the top level corresponds to par
9393
The following figure illustrates feeding in text into the lower level, one sentence at a step, and the feeding in step outputs to the top level. The final top level output is about the whole text.
9494
9595
<p align="center">
96-
<img src="./images/2_level_rnn.png"/>
96+
<img src="./2_level_rnn.png"/>
9797
</p>
9898
9999
```python
@@ -149,5 +149,5 @@ If the `output_all_steps` is set to False, it will only output the final time st
149149
150150
151151
<p align="center">
152-
<img src="images/rnn_2level_data.png"/>
152+
<img src="./rnn_2level_data.png"/>
153153
</p>

0 commit comments

Comments
 (0)