From 37d7c1e79f65a75caf87e29a562d30c51cd654e5 Mon Sep 17 00:00:00 2001
From: Joe Redmon <pjreddie@gmail.com>
Date: Thu, 26 Nov 2015 21:52:56 +0000
Subject: [PATCH] fixed label linking
---
src/layer.h | 14 ++++++--------
1 files changed, 6 insertions(+), 8 deletions(-)
diff --git a/src/layer.h b/src/layer.h
index 2b136a0..b3ab627 100644
--- a/src/layer.h
+++ b/src/layer.h
@@ -15,8 +15,8 @@
ROUTE,
COST,
NORMALIZATION,
- REGION,
- AVGPOOL
+ AVGPOOL,
+ LOCAL
} LAYER_TYPE;
typedef enum{
@@ -30,9 +30,6 @@
int batch_normalize;
int batch;
int forced;
- int object_logistic;
- int class_logistic;
- int coord_logistic;
int inputs;
int outputs;
int truths;
@@ -133,11 +130,12 @@
float * x_gpu;
float * x_norm_gpu;
float * weights_gpu;
- float * biases_gpu;
- float * scales_gpu;
-
float * weight_updates_gpu;
+
+ float * biases_gpu;
float * bias_updates_gpu;
+
+ float * scales_gpu;
float * scale_updates_gpu;
float * output_gpu;
--
Gitblit v1.10.0