Пример #1
0
 public SoftmaxGradient(ConvNetSharp <T> graph, Softmax <T> softmax) : base(graph)
 {
     this._softmax = softmax;
     this.AddParent(softmax);
 }
 public SoftmaxGradient(Softmax <T> softmax)
 {
     this._softmax = softmax;
     this.AddParent(softmax);
 }