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