Exemplo n.º 1
0
 public IActivationFunction Create(INeuralCell cell, double skew)
 {
     return(new ThanFunction
     {
         _cell = cell
     });
 }
Exemplo n.º 2
0
 public NeuronException(INeuralCell neuron, string message) : base(message)
 {
     Neuron = neuron;
 }
Exemplo n.º 3
0
 public void OnDeserialize(INeuralCell cell)
 {
     _cell = cell;
 }
Exemplo n.º 4
0
 public virtual void OnDeserialize(INeuralCell layer)
 {
 }
Exemplo n.º 5
0
 public virtual IActivationFunction Create(INeuralCell cell, double skew) => new SigmoidFunction
 {
     _skew = skew
 };