コード例 #1
0
ファイル: CcSgd.cs プロジェクト: yajiedesign/mxnet.csharp
 public override NdArray create_state(int index, NdArray weight)
 {
     if (Math.Abs(this._momentum) < float.Epsilon)
     {
         return(null);
     }
     return(NdArray.Zeros(weight.GetShape(), weight.GetContext(), weight.GetDtype()));
 }