mirror of
https://github.com/pjreddie/darknet.git
synced 2023-08-10 21:13:14 +03:00
Changes to make routing work better
This commit is contained in:
@ -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];
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user