Time Series Prediction via Neural Networks

后端 未结 3 1469
闹比i
闹比i 2020-12-13 02:54

I have been working on Neural Networks for various purposes lately. I have had great success in digit recognition, XOR, and various other easy/hello world\'ish applications.

3条回答
  •  鱼传尺愫
    2020-12-13 03:29

    There is a kind of neural networks named recurrent neural networks (RNNs. One advantage of using these models is you do not have to define an sliding window for the input examples. A variant of RNNs known as Long-Short Term Memory (LSTM) can potentially take into account many instances in the previous time stamps and a "forget gate" is used to allow or disallow remembering the previous results from the previous time stamps.

提交回复
热议问题