From 9d42f49a240136a8cd643cdc1f98230d4f22b05e Mon Sep 17 00:00:00 2001
From: Joseph Redmon <pjreddie@gmail.com>
Date: Tue, 25 Aug 2015 01:27:42 +0000
Subject: [PATCH] changing data loading
---
src/detection_layer.c | 8 +-------
1 files changed, 1 insertions(+), 7 deletions(-)
diff --git a/src/detection_layer.c b/src/detection_layer.c
index e48b8b3..f83e2e4 100644
--- a/src/detection_layer.c
+++ b/src/detection_layer.c
@@ -97,6 +97,7 @@
truth.y = state.truth[j+1]/7;
truth.w = pow(state.truth[j+2], 2);
truth.h = pow(state.truth[j+3], 2);
+
box out;
out.x = l.output[j+0]/7;
out.y = l.output[j+1]/7;
@@ -107,13 +108,6 @@
float iou = box_iou(out, truth);
avg_iou += iou;
++count;
- dbox delta = diou(out, truth);
-
- l.delta[j+0] = 10 * delta.dx/7;
- l.delta[j+1] = 10 * delta.dy/7;
- l.delta[j+2] = 10 * delta.dw * 2 * sqrt(out.w);
- l.delta[j+3] = 10 * delta.dh * 2 * sqrt(out.h);
-
*(l.cost) += pow((1-iou), 2);
l.delta[j+0] = 4 * (state.truth[j+0] - l.output[j+0]);
--
Gitblit v1.10.0