2014-10-13 11:29:01 +04:00
|
|
|
#include "cost_layer.h"
|
2014-11-19 00:51:04 +03:00
|
|
|
#include "utils.h"
|
2015-01-23 03:38:24 +03:00
|
|
|
#include "cuda.h"
|
|
|
|
#include "blas.h"
|
2014-10-13 11:29:01 +04:00
|
|
|
#include <math.h>
|
2014-11-28 21:38:26 +03:00
|
|
|
#include <string.h>
|
2014-10-13 11:29:01 +04:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2014-11-28 21:38:26 +03:00
|
|
|
COST_TYPE get_cost_type(char *s)
|
|
|
|
{
|
|
|
|
if (strcmp(s, "sse")==0) return SSE;
|
2015-05-07 00:08:16 +03:00
|
|
|
if (strcmp(s, "masked")==0) return MASKED;
|
2016-01-28 23:30:38 +03:00
|
|
|
if (strcmp(s, "smooth")==0) return SMOOTH;
|
|
|
|
fprintf(stderr, "Couldn't find cost type %s, going with SSE\n", s);
|
2014-11-28 21:38:26 +03:00
|
|
|
return SSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *get_cost_string(COST_TYPE a)
|
|
|
|
{
|
|
|
|
switch(a){
|
|
|
|
case SSE:
|
|
|
|
return "sse";
|
2015-05-07 00:08:16 +03:00
|
|
|
case MASKED:
|
|
|
|
return "masked";
|
2016-01-28 23:30:38 +03:00
|
|
|
case SMOOTH:
|
|
|
|
return "smooth";
|
2014-11-28 21:38:26 +03:00
|
|
|
}
|
|
|
|
return "sse";
|
|
|
|
}
|
|
|
|
|
2015-09-05 03:52:44 +03:00
|
|
|
cost_layer make_cost_layer(int batch, int inputs, COST_TYPE cost_type, float scale)
|
2014-10-13 11:29:01 +04:00
|
|
|
{
|
|
|
|
fprintf(stderr, "Cost Layer: %d inputs\n", inputs);
|
2015-05-11 23:46:49 +03:00
|
|
|
cost_layer l = {0};
|
|
|
|
l.type = COST;
|
|
|
|
|
2015-09-05 03:52:44 +03:00
|
|
|
l.scale = scale;
|
2015-05-11 23:46:49 +03:00
|
|
|
l.batch = batch;
|
|
|
|
l.inputs = inputs;
|
|
|
|
l.outputs = inputs;
|
|
|
|
l.cost_type = cost_type;
|
|
|
|
l.delta = calloc(inputs*batch, sizeof(float));
|
|
|
|
l.output = calloc(1, sizeof(float));
|
2014-10-13 11:29:01 +04:00
|
|
|
#ifdef GPU
|
2015-05-11 23:46:49 +03:00
|
|
|
l.delta_gpu = cuda_make_array(l.delta, inputs*batch);
|
2014-10-13 11:29:01 +04:00
|
|
|
#endif
|
2015-05-11 23:46:49 +03:00
|
|
|
return l;
|
2014-10-13 11:29:01 +04:00
|
|
|
}
|
|
|
|
|
2015-09-24 00:13:43 +03:00
|
|
|
void resize_cost_layer(cost_layer *l, int inputs)
|
|
|
|
{
|
|
|
|
l->inputs = inputs;
|
|
|
|
l->outputs = inputs;
|
|
|
|
l->delta = realloc(l->delta, inputs*l->batch*sizeof(float));
|
|
|
|
#ifdef GPU
|
|
|
|
cuda_free(l->delta_gpu);
|
|
|
|
l->delta_gpu = cuda_make_array(l->delta, inputs*l->batch);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2015-05-11 23:46:49 +03:00
|
|
|
void forward_cost_layer(cost_layer l, network_state state)
|
2014-10-13 11:29:01 +04:00
|
|
|
{
|
2015-03-12 08:20:15 +03:00
|
|
|
if (!state.truth) return;
|
2015-05-11 23:46:49 +03:00
|
|
|
if(l.cost_type == MASKED){
|
2015-05-07 00:08:16 +03:00
|
|
|
int i;
|
2015-05-11 23:46:49 +03:00
|
|
|
for(i = 0; i < l.batch*l.inputs; ++i){
|
2015-07-17 23:18:05 +03:00
|
|
|
if(state.truth[i] == SECRET_NUM) state.input[i] = SECRET_NUM;
|
2015-05-07 00:08:16 +03:00
|
|
|
}
|
|
|
|
}
|
2016-01-28 23:30:38 +03:00
|
|
|
if(l.cost_type == SMOOTH){
|
|
|
|
smooth_l1_cpu(l.batch*l.inputs, state.input, state.truth, l.delta);
|
|
|
|
} else {
|
|
|
|
copy_cpu(l.batch*l.inputs, state.truth, 1, l.delta, 1);
|
|
|
|
axpy_cpu(l.batch*l.inputs, -1, state.input, 1, l.delta, 1);
|
|
|
|
}
|
2015-05-11 23:46:49 +03:00
|
|
|
*(l.output) = dot_cpu(l.batch*l.inputs, l.delta, 1, l.delta, 1);
|
|
|
|
//printf("cost: %f\n", *l.output);
|
2014-10-13 11:29:01 +04:00
|
|
|
}
|
|
|
|
|
2015-05-11 23:46:49 +03:00
|
|
|
void backward_cost_layer(const cost_layer l, network_state state)
|
2014-10-13 11:29:01 +04:00
|
|
|
{
|
2015-09-05 03:52:44 +03:00
|
|
|
axpy_cpu(l.batch*l.inputs, l.scale, l.delta, 1, state.delta, 1);
|
2014-10-13 11:29:01 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef GPU
|
2014-11-28 21:38:26 +03:00
|
|
|
|
2015-05-11 23:46:49 +03:00
|
|
|
void pull_cost_layer(cost_layer l)
|
2015-04-15 11:04:38 +03:00
|
|
|
{
|
2015-05-11 23:46:49 +03:00
|
|
|
cuda_pull_array(l.delta_gpu, l.delta, l.batch*l.inputs);
|
2015-04-15 11:04:38 +03:00
|
|
|
}
|
|
|
|
|
2015-05-11 23:46:49 +03:00
|
|
|
void push_cost_layer(cost_layer l)
|
2015-04-15 11:04:38 +03:00
|
|
|
{
|
2015-05-11 23:46:49 +03:00
|
|
|
cuda_push_array(l.delta_gpu, l.delta, l.batch*l.inputs);
|
2015-04-15 11:04:38 +03:00
|
|
|
}
|
|
|
|
|
2015-05-11 23:46:49 +03:00
|
|
|
void forward_cost_layer_gpu(cost_layer l, network_state state)
|
2014-10-13 11:29:01 +04:00
|
|
|
{
|
2015-03-12 08:20:15 +03:00
|
|
|
if (!state.truth) return;
|
2015-05-11 23:46:49 +03:00
|
|
|
if (l.cost_type == MASKED) {
|
2015-07-17 23:18:05 +03:00
|
|
|
mask_ongpu(l.batch*l.inputs, state.input, SECRET_NUM, state.truth);
|
2015-05-07 00:08:16 +03:00
|
|
|
}
|
2015-09-24 00:13:43 +03:00
|
|
|
|
2016-01-28 23:30:38 +03:00
|
|
|
if(l.cost_type == SMOOTH){
|
|
|
|
smooth_l1_gpu(l.batch*l.inputs, state.input, state.truth, l.delta_gpu);
|
|
|
|
} else {
|
|
|
|
copy_ongpu(l.batch*l.inputs, state.truth, 1, l.delta_gpu, 1);
|
|
|
|
axpy_ongpu(l.batch*l.inputs, -1, state.input, 1, l.delta_gpu, 1);
|
|
|
|
}
|
2014-11-19 00:51:04 +03:00
|
|
|
|
2015-05-11 23:46:49 +03:00
|
|
|
cuda_pull_array(l.delta_gpu, l.delta, l.batch*l.inputs);
|
|
|
|
*(l.output) = dot_cpu(l.batch*l.inputs, l.delta, 1, l.delta, 1);
|
2014-10-13 11:29:01 +04:00
|
|
|
}
|
|
|
|
|
2015-05-11 23:46:49 +03:00
|
|
|
void backward_cost_layer_gpu(const cost_layer l, network_state state)
|
2014-10-13 11:29:01 +04:00
|
|
|
{
|
2015-09-05 03:52:44 +03:00
|
|
|
axpy_ongpu(l.batch*l.inputs, l.scale, l.delta_gpu, 1, state.delta, 1);
|
2014-10-13 11:29:01 +04:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|