Commit 6fb9ad1b by xiaotong

fix a bug

parent baad6629
......@@ -55,7 +55,7 @@ void XNetClearAll()
XNet::XNet()
{
nodes.Clear();
isGradEfficient = false;
isGradEfficient = true;
}
/* de-constructor */
......@@ -163,14 +163,13 @@ void XNet::Backward(XList &roots, XList &golds, LOSS_FUNCTION_NAME loss)
BackwardNode(node, isGradEfficient);
if(isGradEfficient){
if(!XNoder::IsLeaf(node)){
XLink & outgo = node->outgo;
for(int i = 0; i < outgo.tailNum; i++){
XTensor * parent = outgo.tails[i];
ClearGrad(parent);
}
}
else
if(XNoder::IsLeaf(node))
ClearGrad(node);
}
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论