Example #1
0
 /// <summary>Feeds the layer forward.</summary>
 /// <param name="learning">Whether the layer is being used in a training session.</param>
 public virtual void Feed(bool learning = false)
 {
     Backbone.ApplyNeuronsString(this.input, this.inputSkip, this.output, this.outputSkip, this.length, this.Activation);
 }