From 54d761cf9efa6c77e96855ea80156b0fcd81195d Mon Sep 17 00:00:00 2001
From: Joseph Redmon <pjreddie@gmail.com>
Date: Tue, 22 Sep 2015 22:40:15 +0000
Subject: [PATCH] resize image width 1 ><
---
src/cost_layer.c | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/src/cost_layer.c b/src/cost_layer.c
index d1ae6e5..4ec0ac4 100644
--- a/src/cost_layer.c
+++ b/src/cost_layer.c
@@ -26,12 +26,13 @@
return "sse";
}
-cost_layer make_cost_layer(int batch, int inputs, COST_TYPE cost_type)
+cost_layer make_cost_layer(int batch, int inputs, COST_TYPE cost_type, float scale)
{
fprintf(stderr, "Cost Layer: %d inputs\n", inputs);
cost_layer l = {0};
l.type = COST;
+ l.scale = scale;
l.batch = batch;
l.inputs = inputs;
l.outputs = inputs;
@@ -61,7 +62,7 @@
void backward_cost_layer(const cost_layer l, network_state state)
{
- axpy_cpu(l.batch*l.inputs, 1, l.delta, 1, state.delta, 1);
+ axpy_cpu(l.batch*l.inputs, l.scale, l.delta, 1, state.delta, 1);
}
#ifdef GPU
@@ -92,7 +93,7 @@
void backward_cost_layer_gpu(const cost_layer l, network_state state)
{
- axpy_ongpu(l.batch*l.inputs, 1, l.delta_gpu, 1, state.delta, 1);
+ axpy_ongpu(l.batch*l.inputs, l.scale, l.delta_gpu, 1, state.delta, 1);
}
#endif
--
Gitblit v1.10.0