- X(t) = a1X(t - 1) + a2X(t - 2) + a3X(t - 3) + U(t)
- where U(t) ~ Uniform(0, 0.1)
- X(t) = U(t) + a1U(t - 1) + a2U(t - 2) + a3U(t - 3) + a4U(t - 4) + a5U(t - 5)
- where U(t) ~ Norm(0, 1)
- Modeling sequence as a function that maps term index to the term value.
- The model observes a set of 2500 terms from the sequence and predicts the next 500.
- A simple one-layer perceptron with
d
hidden layers is used as the model.