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!

link|improve this question

1  
I was looking for something like this a while back, but my search turned up empty. If you do find something, please post it so that I can use it, too – inspectorG4dget May 13 '11 at 17:39
2  
What exactly do you mean by backpropagation? Without a problem statement or definition, it's hard to offer a solution. – Nicholas Carey May 13 '11 at 18:20
7  
@Nicholas Carey: backpropagation through time is a neural network training strategy – emaster70 May 14 '11 at 7:33
feedback

7 Answers

up vote 2 down vote accepted
+150

What about this one ? Just a Google search to help...

link|improve this answer
feedback

Assuming you're already using some library for BP, it should be (TM) rather straightforward to implement BPTT using BP as a step in the process.

The Wikipedia entry for BPTT [1] includes relevant pseudo code.

My own starting point, about 18 years ago, was "The Truck Backer-Upper: An Example of Self-Learning in Neural Networks" [2].

[1] http://en.wikipedia.org/wiki/Backpropagation_through_time

[2] http://www-isl.stanford.edu/~widrow/papers/c1989thetruck.pdf

link|improve this answer
feedback

I've used NeuronDotNet only for a limited time though. It allows you to create a feed-forward BackPropagation NN. I especially liked their use of intuitively named classes. Good luck!

This is a .net library.

link|improve this answer
Thanks but backprop and BPTT are different – emaster70 May 14 '11 at 7:31
ah, ok mate.. good luck.. – jinsungy May 18 '11 at 19:39
feedback

I'm from a Java background but Encog has a .net implementation as well (and is a seriously good framework for NNets, with good time series support)

Can't help with an F# framework, but what domain are you coding for? If it's finance I'll reassert the "take a look at Encog"

link|improve this answer
feedback

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)."""
link|improve this answer
feedback

I've had good experiences with Weka - In my view one of the best and almost certainly the most comprehensive general purpose machine learning libraries around.

You could certainly do BPTT with Weka - you may find a ready made classifier that does what you need but even if not you can just chain a few normal backpropagation units together as per the very good wikipedia article on BPTT

link|improve this answer
feedback

I made backpropagation algorithm in Java quite time ago. I uploaded it into GitHub, maybe you can find it useful: https://github.com/bernii/NeuralNetwokPerceptronKohonen

Let me now if it was helpful :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.