Darwin Neuroevolution Framework
ann_activation_functions.h
1 // Copyright 2018 The Darwin Neuroevolution Framework Authors.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #pragma once
16 
17 #include <core/stringify.h>
18 
19 #include <cmath>
20 using namespace std;
21 
22 namespace ann {
23 
28 enum class ActivationFunction {
29  Identity,
30  Logistic,
31  Tanh,
32  ReLU,
33  Neat,
34  ReExp,
35  LogisticEx
36 };
37 
38 inline auto customStringify(core::TypeTag<ActivationFunction>) {
39  static auto stringify = new core::StringifyKnownValues<ActivationFunction>{
40  { ActivationFunction::Identity, "identity" },
41  { ActivationFunction::Logistic, "logistic" },
42  { ActivationFunction::Tanh, "tanh" },
43  { ActivationFunction::ReLU, "relu" },
44  { ActivationFunction::Neat, "neat" },
45  { ActivationFunction::ReExp, "re_exp" },
46  { ActivationFunction::LogisticEx, "logistic_ex" },
47  };
48  return stringify;
49 }
50 
51 using ActivationFunctionPfn = float (*)(float);
52 
53 extern ActivationFunctionPfn g_activation_function;
54 extern ActivationFunctionPfn g_gate_activation_function;
55 
57 void setActivationFunction(ActivationFunction afn);
58 
61 void setGateActivationFunction(ActivationFunction afn);
62 
65 inline float activate(float x) {
66  return (*g_activation_function)(x);
67 }
68 
71 inline float activateGate(float x) {
72  return (*g_gate_activation_function)(x);
73 }
74 
76 inline float afnIdentity(float x) {
77  return x;
78 }
79 
81 inline float afnLogistic(float x) {
82  return 1 / (1 + exp(-x));
83 }
84 
86 inline float afnTanh(float x) {
87  return tanh(x);
88 }
89 
91 inline float afnReLU(float x) {
92  return x > 0 ? x : 0;
93 }
94 
96 inline float afnNeat(float x) {
97  constexpr float kSlope = 4.924273f; // NEAT magic constant
98  return 1 / (1 + exp(-x * kSlope));
99 }
100 
103 inline float afnReExp(float x) {
104  return x > 0 ? (1 - exp(-x)) : 0;
105 }
106 
109 inline float afnLogisticEx(float x) {
110  return 1 / (1 + exp(-2 * (x - 2)));
111 }
112 
113 } // namespace ann
float afnTanh(float x)
tanh
Definition: ann_activation_functions.h:86
ActivationFunction
The types of supported activation functions.
Definition: ann_activation_functions.h:28
STL namespace.
void setActivationFunction(ActivationFunction afn)
Selects the activation function.
Definition: ann_activation_functions.cpp:43
float afnReExp(float x)
Experimental: ReExp.
Definition: ann_activation_functions.h:103
float afnReLU(float x)
ReLU.
Definition: ann_activation_functions.h:91
float afnLogisticEx(float x)
Experimental: Yet another sigmoid function.
Definition: ann_activation_functions.h:109
Hyperbolic tangent (tanh)
void setGateActivationFunction(ActivationFunction afn)
Selects the gate activation function (used with ANNs which include gates, for example LSTM) ...
Definition: ann_activation_functions.cpp:47
Artificial Neural Networks (ANN) building blocks.
Definition: ann_activation_functions.cpp:17
float afnLogistic(float x)
Standard logistic function.
Definition: ann_activation_functions.h:81
float afnNeat(float x)
Classic NEAT activation function.
Definition: ann_activation_functions.h:96
float activateGate(float x)
Applies the selected gate activation function.
Definition: ann_activation_functions.h:71
Handles types with a fixed, known set of values (enumerations for example)
Definition: stringify.h:85
NEAT activation function.
float activate(float x)
Applies the selected activation function.
Definition: ann_activation_functions.h:65
const Stringify< T > * stringify()
Returns the stringifier for type T.
Definition: stringify.h:166
float afnIdentity(float x)
Identity function.
Definition: ann_activation_functions.h:76