mirror of
https://github.com/pjreddie/darknet.git
synced 2023-08-10 21:13:14 +03:00
no mean on input binarization
This commit is contained in:
@ -133,9 +133,11 @@ void forward_detection_layer(const detection_layer l, network_state state)
|
||||
best_index = 0;
|
||||
}
|
||||
}
|
||||
/*
|
||||
if(1 && *(state.net.seen) < 100000){
|
||||
best_index = rand()%l.n;
|
||||
}
|
||||
*/
|
||||
|
||||
int box_index = index + locations*(l.classes + l.n) + (i*l.n + best_index) * l.coords;
|
||||
int tbox_index = truth_index + 1 + l.classes;
|
||||
|
Reference in New Issue
Block a user