Skip to content

Commit 67598e0

Browse files
Update rnn.md
1 parent c32a9d5 commit 67598e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rnn.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ RNN will show different behaviors in terms of how its state evolves as it receiv
5959
We are also interested in producing an output based on the RNN state, so we can produce these output vectors on top of the RNN (as depicted in Figure 2.
6060

6161
If we unroll an RNN model (Right of Figure 2), then there are inputs (e.g. video frame) at different timesteps shown as $$x_1, x_2, x_3$$ ... $$x_t$$.
62-
RNN at each timestep takes in two inputs -- an input frame ($$x_i$$) and previous representation of what it seems so far (i.e. history) -- to generate an output $$y_i$$ and update its history, which will get forward propagated over time. All the RNN blocks in Figure 2 (Right) are the same block that share the same parameter, but have different inputs and history at each timestep.
62+
RNN at each timestep takes in two inputs -- an input frame ($$x_i$$) and previous representation of what it seems so far (i.e. history) -- to generate an output $$y_i$$ and update its history, which will get forward propagated over time. All the RNN blocks in Figure 2 (Right) are the same block that share the same parameter, but takes in different input and history at each timestep.
6363

6464
<div class="fig figcenter fighighlight">
6565
<img src="/assets/rnn/rnn_blackbox.png" width="16%" >

0 commit comments

Comments
 (0)