Backpropagation through time

后端 未结 8 1211
长发绾君心
长发绾君心 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:34

    Perhaps pybrain would do? The docstring for its BackpropTrainer class suggests that it does backpropagation through time:

    class BackpropTrainer(Trainer):
        """Trainer that trains the parameters of a module according to a
        supervised dataset (potentially sequential) by backpropagating the errors
        (through time)."""
    

提交回复
热议问题