Added spatial Yolo v3 yolov3-spp.cfg

This commit is contained in:
AlexeyAB
2018-08-03 14:35:03 +03:00
parent 6682f0b989
commit b8e6e80c6d
6 changed files with 1658 additions and 14 deletions

View File

@ -40,13 +40,13 @@ void average(int argc, char *argv[])
network net = parse_network_cfg(cfgfile);
network sum = parse_network_cfg(cfgfile);
char *weightfile = argv[4];
char *weightfile = argv[4];
load_weights(&sum, weightfile);
int i, j;
int n = argc - 5;
for(i = 0; i < n; ++i){
weightfile = argv[i+5];
weightfile = argv[i+5];
load_weights(&net, weightfile);
for(j = 0; j < net.n; ++j){
layer l = net.layers[j];