Changes to make routing work better

This commit is contained in:
Joseph Redmon
2015-07-21 16:09:33 -07:00
parent e56d1eff13
commit d00f0a1ccd
18 changed files with 29 additions and 86 deletions

View File

@ -58,7 +58,7 @@ void backward_softmax_layer(const softmax_layer l, network_state state)
{
int i;
for(i = 0; i < l.inputs*l.batch; ++i){
state.delta[i] = l.delta[i];
state.delta[i] += l.delta[i];
}
}