Skip to content

sayarghoshroy/Recurrent_NN_Modelling

Repository files navigation

Time Series Prediction using Recurrent Neural Networks

1. Auto Regressive Model Open In Colab

  • X(t) = a1X(t - 1) + a2X(t - 2) + a3X(t - 3) + U(t)
  • where U(t) ~ Uniform(0, 0.1)

2. Moving Average Model Open In Colab

  • 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)

Non-Recurrent Model Open In Colab

  • 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.

Releases

No releases published

Packages

No packages published