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/cost_layer.h |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/src/cost_layer.h b/src/cost_layer.h
index 0732323..aa4af2f 100644
--- a/src/cost_layer.h
+++ b/src/cost_layer.h
@@ -7,9 +7,10 @@
 
 COST_TYPE get_cost_type(char *s);
 char *get_cost_string(COST_TYPE a);
-cost_layer make_cost_layer(int batch, int inputs, COST_TYPE type);
+cost_layer make_cost_layer(int batch, int inputs, COST_TYPE type, float scale);
 void forward_cost_layer(const cost_layer l, network_state state);
 void backward_cost_layer(const cost_layer l, network_state state);
+void resize_cost_layer(cost_layer *l, int inputs);
 
 #ifdef GPU
 void forward_cost_layer_gpu(cost_layer l, network_state state);

--
Gitblit v1.10.0