From 8c5364f58569eaeb5582a4915b36b24fc5570c76 Mon Sep 17 00:00:00 2001
From: Joseph Redmon <pjreddie@gmail.com>
Date: Mon, 09 Nov 2015 19:31:39 +0000
Subject: [PATCH] New YOLO

---
 src/coco.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/coco.c b/src/coco.c
index e30eeb7..aadf09d 100644
--- a/src/coco.c
+++ b/src/coco.c
@@ -1,7 +1,7 @@
 #include <stdio.h>
 
 #include "network.h"
-#include "region_layer.h"
+#include "detection_layer.h"
 #include "cost_layer.h"
 #include "utils.h"
 #include "parser.h"
@@ -366,7 +366,7 @@
     if(weightfile){
         load_weights(&net, weightfile);
     }
-    region_layer l = net.layers[net.n-1];
+    detection_layer l = net.layers[net.n-1];
     set_batch_network(&net, 1);
     srand(2222222);
     clock_t time;

--
Gitblit v1.10.0