Backpropagation through time

后端 未结 8 1223
长发绾君心
长发绾君心 2021-02-07 05:53

Does anyone know of a library with a working implementation of backpropagation through time? Any of Java/Python/C#/VB.NET/F# (preferably the last one) will do!

8条回答
  •  情话喂你
    2021-02-07 06:43

    You can use TensorFlow's dynamic_rnn() function (API doc). TensorFlow's tutorial on Recurrent Neural Networks will help.

    Also, this great blog post provides a nice introduction to predicting sequences using TensorFlow. Here's another blog post with some code to predict a time series.

提交回复
热议问题