Ejemplo n.º 1
0
 /// <summary>
 /// 神经元描述
 /// </summary>
 public override string ToString()
 {
     return(String.Format("输入:{0} 输出:{1} 输入残差:{2} 权重残差:{3} 偏置残差:{4}",
                          InputCount, OutputCount,
                          CnnHelper.GetMeanAbs(debugResult),
                          CnnHelper.GetMeanAbs(debugDeltaWeight), CnnHelper.GetMeanAbs(debugDeltaOffset)));
 }
Ejemplo n.º 2
0
 /// <summary>
 /// 神经元描述
 /// </summary>
 public override string ToString()
 {
     return(String.Format("卷积核:{0}*{1} 感知区:{2}*{3} 输入残差:{4} 输出残差:{5} 权重残差:{6} 偏置残差:{7}",
                          ConvolutionKernelWidth, ConvolutionKernelHeight,
                          receptiveFieldWidth, receptiveFieldHeight,
                          CnnHelper.GetMeanAbs(debugResult), CnnHelper.GetMeanAbs(debugResidual),
                          CnnHelper.GetMeanAbs(debugDeltaWeight), debugDeltaOffset));
 }