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