1 namespace SpikingNeuronNetwork.Lib.Training
4 using System.Collections.Generic;
16 public TrainingStatsPerEpoch(
double error, List<int> nonFiringNeuronIndices) : base(error, nonFiringNeuronIndices)
26 return "Error of " + Item1 + ((Item2.Count > 0) ?
" with Neuron(s) " + String.Join(
",", Item2) +
" Not Firing" :
" with All Neurons Firing");
TrainingStatsPerEpoch(double error, List< int > nonFiringNeuronIndices)
Creates a new TrainingStatsPerEpoch instance
override string ToString()
Creates a string representation of the TrainingStatsPerEpoch object
Training Stats Per Epoch Class, inherits from a tuple representing the error and non-firing neuron in...