From baf3fcb491ee1a5e083fbdfdf2c28aaf36488e92 Mon Sep 17 00:00:00 2001
From: AlexeyAB <alexeyab84@gmail.com>
Date: Fri, 16 Feb 2018 23:26:08 +0000
Subject: [PATCH] Calculation TP, FP, FN, avg_IoU for default threshold during mAP calculation
---
src/avgpool_layer.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/avgpool_layer.c b/src/avgpool_layer.c
index c6db477..b6932fe 100644
--- a/src/avgpool_layer.c
+++ b/src/avgpool_layer.c
@@ -4,7 +4,7 @@
avgpool_layer make_avgpool_layer(int batch, int w, int h, int c)
{
- fprintf(stderr, "Avgpool Layer: %d x %d x %d image\n", w,h,c);
+ fprintf(stderr, "avg %4d x%4d x%4d -> %4d\n", w, h, c, c);
avgpool_layer l = {0};
l.type = AVGPOOL;
l.batch = batch;
--
Gitblit v1.10.0