Example #1
0
 /// <summary>Updates the weights of the layer.</summary>
 /// <param name="rate">The learning rate to be used.</param>
 /// <param name="momentum">The momentum to be used.</param>
 public override void UpdateWeights(float rate, float momentum = 0)
 {
     Backbone.UpdateBiasedConnectionMatrix(Weights, Gradients, Momentum, biases, biasGradients, this.biasMomentum, InputSize, OutputSize, rate, momentum);
 }