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
RpropTraining.cs
Go to the documentation of this file.
1 namespace SpikingNeuronNetwork.Lib.Training
2 {
3  using Interfaces;
4  using System;
5 
10  {
11  public void UpdateWeights(TrainingStats trainingStats, IErrorDerivativeParameters errorDerivativeParameters,
12  IErrorDerivativeParameters previousErrorDerivativeParameters)
13  {
14  throw new NotImplementedException();
15  }
16  }
17 }
void UpdateWeights(TrainingStats trainingStats, IErrorDerivativeParameters errorDerivativeParameters, IErrorDerivativeParameters previousErrorDerivativeParameters)
Update the weights in the current network according to the training algorithm
RProp Training Class, inherits from ITrainingAlgorithm
Definition: RpropTraining.cs:9