From 880cf187d87c904f5fe574802ecff99118643f2d Mon Sep 17 00:00:00 2001
From: AlexeyAB <alexeyab84@gmail.com>
Date: Fri, 09 Mar 2018 16:44:46 +0000
Subject: [PATCH] Fixed multi-GPU training for Tensor Cores
---
src/data.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/data.c b/src/data.c
index ea6313a..6187b34 100644
--- a/src/data.c
+++ b/src/data.c
@@ -326,7 +326,7 @@
id = boxes[i].id;
// not detect small objects
- if ((w < 0.01 || h < 0.01)) continue;
+ if ((w < 0.001 || h < 0.001)) { printf("small w = %f, h = %f \n", w, h); continue; }
truth[i*5+0] = x;
truth[i*5+1] = y;
--
Gitblit v1.10.0