Spiking Neuron Network Simulator  1.0
Simulation and training of spiking neuron networks, primarily theta neurons
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
ITrainingAlgorithm.cs
Go to the documentation of this file.
1 namespace SpikingNeuronNetwork.Lib.Interfaces
2 {
3  using Training;
4 
8  public interface ITrainingAlgorithm
9  {
16  void UpdateWeights(TrainingStats trainingStats, IErrorDerivativeParameters errorDerivativeParameters, IErrorDerivativeParameters previousErrorDerivativeParameters);
17  }
18 }