Skip to content

Commit

Permalink
fix broken math in k-step-ahead pred
Browse files Browse the repository at this point in the history
  • Loading branch information
astonzhang committed Jan 29, 2021
1 parent 617faaf commit 8f2ce80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chapter_recurrent-neural-networks/sequence.md
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ $$
\ldots
$$

Generally, for an observed sequence up to $x_t$, its predicted output $\hat{x}_{t+k}$ at time step $t+k$ is called the *$k$-step-ahead prediction*. Since we have observed up to $x_{604}$, its $k$-step-ahead prediction is $\hat{x}_{604+k}$.
Generally, for an observed sequence up to $x_t$, its predicted output $\hat{x}_{t+k}$ at time step $t+k$ is called the $k$*-step-ahead prediction*. Since we have observed up to $x_{604}$, its $k$-step-ahead prediction is $\hat{x}_{604+k}$.
In other words, we will have to use our own predictions to make multistep-ahead predictions.
Let us see how well this goes.

Expand Down

0 comments on commit 8f2ce80

Please sign in to comment.