From fb9e0fe33681280112e4e33939c5844dba994dca Mon Sep 17 00:00:00 2001
From: Joseph Redmon <pjreddie@gmail.com>
Date: Wed, 04 Mar 2015 22:56:38 +0000
Subject: [PATCH] Big changes to detection
---
src/cost_layer.h | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/src/cost_layer.h b/src/cost_layer.h
index e58aae1..0855405 100644
--- a/src/cost_layer.h
+++ b/src/cost_layer.h
@@ -2,12 +2,14 @@
#define COST_LAYER_H
typedef enum{
- SSE, DETECTION
+ SSE
} COST_TYPE;
typedef struct {
int inputs;
int batch;
+ int coords;
+ int classes;
float *delta;
float *output;
COST_TYPE type;
--
Gitblit v1.10.0