Added Focal Loss to yolo-layer

This commit is contained in:
AlexeyAB
2018-04-05 23:27:02 +03:00
parent be9d971ddb
commit 943f6e874b
5 changed files with 51 additions and 11 deletions

View File

@ -757,7 +757,7 @@ void fuse_conv_batchnorm(network net)
layer *l = &net.layers[j];
if (l->type == CONVOLUTIONAL) {
printf(" Fuse Convolutional layer \t\t l->size = %d \n", l->size);
//printf(" Merges Convolutional-%d and batch_norm \n", j);
if (l->batch_normalize) {
int f;
@ -783,7 +783,7 @@ void fuse_conv_batchnorm(network net)
}
}
else {
printf(" Skip layer: %d \n", l->type);
//printf(" Fusion skip layer type: %d \n", l->type);
}
}
}