From ea4511006f38e977e2a6f203425ca12845c9ed53 Mon Sep 17 00:00:00 2001
From: Joseph Redmon <pjreddie@gmail.com>
Date: Mon, 09 Nov 2015 21:12:08 +0000
Subject: [PATCH] changed yolo-small
---
src/softmax_layer.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/softmax_layer.c b/src/softmax_layer.c
index ea22d05..0d19aca 100644
--- a/src/softmax_layer.c
+++ b/src/softmax_layer.c
@@ -58,7 +58,7 @@
{
int i;
for(i = 0; i < l.inputs*l.batch; ++i){
- state.delta[i] = l.delta[i];
+ state.delta[i] += l.delta[i];
}
}
--
Gitblit v1.10.0