darknet/src/activations.c

151 lines
3.7 KiB
C
Raw Permalink Normal View History

2017-06-02 06:31:13 +03:00
#include "activations.h"
#include <math.h>
#include <stdio.h>
2014-05-10 02:14:52 +04:00
#include <stdlib.h>
#include <string.h>
2014-02-14 22:26:31 +04:00
char *get_activation_string(ACTIVATION a)
{
switch(a){
2015-03-08 21:31:12 +03:00
case LOGISTIC:
return "logistic";
2016-02-01 02:52:03 +03:00
case LOGGY:
return "loggy";
2014-02-14 22:26:31 +04:00
case RELU:
return "relu";
2015-11-26 22:48:01 +03:00
case ELU:
return "elu";
2018-09-05 03:25:05 +03:00
case SELU:
return "selu";
2015-04-11 11:24:07 +03:00
case RELIE:
return "relie";
2014-02-14 22:26:31 +04:00
case RAMP:
return "ramp";
case LINEAR:
return "linear";
case TANH:
return "tanh";
2015-03-21 22:25:14 +03:00
case PLSE:
return "plse";
2015-07-08 10:36:43 +03:00
case LEAKY:
return "leaky";
2016-05-07 02:25:16 +03:00
case STAIR:
return "stair";
2016-06-10 03:20:31 +03:00
case HARDTAN:
return "hardtan";
2016-06-20 23:18:59 +03:00
case LHTAN:
return "lhtan";
2014-02-14 22:26:31 +04:00
default:
break;
}
return "relu";
}
ACTIVATION get_activation(char *s)
{
2015-03-08 21:31:12 +03:00
if (strcmp(s, "logistic")==0) return LOGISTIC;
2016-02-01 02:52:03 +03:00
if (strcmp(s, "loggy")==0) return LOGGY;
if (strcmp(s, "relu")==0) return RELU;
2015-11-26 22:48:01 +03:00
if (strcmp(s, "elu")==0) return ELU;
2018-09-05 03:25:05 +03:00
if (strcmp(s, "selu")==0) return SELU;
2015-04-11 11:24:07 +03:00
if (strcmp(s, "relie")==0) return RELIE;
2015-03-21 22:25:14 +03:00
if (strcmp(s, "plse")==0) return PLSE;
2016-06-10 03:20:31 +03:00
if (strcmp(s, "hardtan")==0) return HARDTAN;
2016-06-20 23:18:59 +03:00
if (strcmp(s, "lhtan")==0) return LHTAN;
2013-12-06 01:17:16 +04:00
if (strcmp(s, "linear")==0) return LINEAR;
2013-12-03 04:41:40 +04:00
if (strcmp(s, "ramp")==0) return RAMP;
2015-07-08 10:36:43 +03:00
if (strcmp(s, "leaky")==0) return LEAKY;
2013-12-06 01:17:16 +04:00
if (strcmp(s, "tanh")==0) return TANH;
2016-05-07 02:25:16 +03:00
if (strcmp(s, "stair")==0) return STAIR;
fprintf(stderr, "Couldn't find activation function %s, going with ReLU\n", s);
return RELU;
}
2014-08-08 23:04:15 +04:00
float activate(float x, ACTIVATION a)
2014-05-10 02:14:52 +04:00
{
2013-12-03 04:41:40 +04:00
switch(a){
2013-12-06 01:17:16 +04:00
case LINEAR:
2014-08-08 23:04:15 +04:00
return linear_activate(x);
2015-03-08 21:31:12 +03:00
case LOGISTIC:
return logistic_activate(x);
2016-02-01 02:52:03 +03:00
case LOGGY:
return loggy_activate(x);
2013-12-03 04:41:40 +04:00
case RELU:
2014-08-08 23:04:15 +04:00
return relu_activate(x);
2015-11-26 22:48:01 +03:00
case ELU:
return elu_activate(x);
2018-09-05 03:25:05 +03:00
case SELU:
return selu_activate(x);
2015-04-11 11:24:07 +03:00
case RELIE:
return relie_activate(x);
2013-12-03 04:41:40 +04:00
case RAMP:
2014-08-08 23:04:15 +04:00
return ramp_activate(x);
2015-07-08 10:36:43 +03:00
case LEAKY:
return leaky_activate(x);
2013-12-06 01:17:16 +04:00
case TANH:
2014-08-08 23:04:15 +04:00
return tanh_activate(x);
2015-03-21 22:25:14 +03:00
case PLSE:
return plse_activate(x);
2016-05-07 02:25:16 +03:00
case STAIR:
return stair_activate(x);
2016-06-10 03:20:31 +03:00
case HARDTAN:
return hardtan_activate(x);
2016-06-20 23:18:59 +03:00
case LHTAN:
return lhtan_activate(x);
2013-12-03 04:41:40 +04:00
}
return 0;
}
2014-05-01 03:17:40 +04:00
2014-08-08 23:04:15 +04:00
void activate_array(float *x, const int n, const ACTIVATION a)
2014-05-01 03:17:40 +04:00
{
int i;
for(i = 0; i < n; ++i){
2014-08-08 23:04:15 +04:00
x[i] = activate(x[i], a);
2014-05-01 03:17:40 +04:00
}
}
2014-08-28 06:11:46 +04:00
float gradient(float x, ACTIVATION a)
{
2013-12-03 04:41:40 +04:00
switch(a){
2013-12-06 01:17:16 +04:00
case LINEAR:
2014-08-28 06:11:46 +04:00
return linear_gradient(x);
2015-03-08 21:31:12 +03:00
case LOGISTIC:
return logistic_gradient(x);
2016-02-01 02:52:03 +03:00
case LOGGY:
return loggy_gradient(x);
2013-12-03 04:41:40 +04:00
case RELU:
2014-08-28 06:11:46 +04:00
return relu_gradient(x);
2015-11-26 22:48:01 +03:00
case ELU:
return elu_gradient(x);
2018-09-05 03:25:05 +03:00
case SELU:
return selu_gradient(x);
2015-04-11 11:24:07 +03:00
case RELIE:
return relie_gradient(x);
2013-12-03 04:41:40 +04:00
case RAMP:
2014-08-28 06:11:46 +04:00
return ramp_gradient(x);
2015-07-08 10:36:43 +03:00
case LEAKY:
return leaky_gradient(x);
2013-12-06 01:17:16 +04:00
case TANH:
2014-08-28 06:11:46 +04:00
return tanh_gradient(x);
2015-03-21 22:25:14 +03:00
case PLSE:
return plse_gradient(x);
2016-05-07 02:25:16 +03:00
case STAIR:
return stair_gradient(x);
2016-06-10 03:20:31 +03:00
case HARDTAN:
return hardtan_gradient(x);
2016-06-20 23:18:59 +03:00
case LHTAN:
return lhtan_gradient(x);
2013-12-03 04:41:40 +04:00
}
return 0;
}
2014-05-01 03:17:40 +04:00
void gradient_array(const float *x, const int n, const ACTIVATION a, float *delta)
{
int i;
for(i = 0; i < n; ++i){
delta[i] *= gradient(x[i], a);
}
}