Skip to content

Instantly share code, notes, and snippets.

@tansey
Created April 18, 2012 02:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tansey/2410545 to your computer and use it in GitHub Desktop.
Save tansey/2410545 to your computer and use it in GitHub Desktop.
Training a NEAT network with backprop in SharpNEAT
double[] inputs = ...
double[] desiredOutputs = ...
// Get the neural network
var network = ((FastCyclicNetwork)blackbox;
// Perform backpropagation through time
network.Train(inputs, desiredOutputs);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment