mirror of
https://github.com/pjreddie/darknet.git
synced 2023-08-10 21:13:14 +03:00
It takes into account the Difficult for calculating mAP for PascalVOC
This commit is contained in:
@ -59,7 +59,7 @@ void forward_detection_layer(const detection_layer l, network_state state)
|
||||
for (i = 0; i < locations; ++i) {
|
||||
int offset = i*l.classes;
|
||||
softmax(l.output + index + offset, l.classes, 1,
|
||||
l.output + index + offset);
|
||||
l.output + index + offset, 1);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user