Exemple #1
0
 /// <summary>Feeds the layer forward.</summary>
 /// <param name="learning">Whether the layer is being used in a training session. Unused.</param>
 public override void Feed(bool learning = false)
 {
     Backbone.ApplyBiasedConnectionMatrix(this.Input, this.InputSkip, this.InputSize, this.Output, this.OutputSkip, this.OutputSize, this.Weights, this.biases);
 }