mirror of
https://github.com/pjreddie/darknet.git
synced 2023-08-10 21:13:14 +03:00
15 lines
235 B
C
15 lines
235 B
C
#ifndef ACTIVATIONS_H
|
|
#define ACTIVATIONS_H
|
|
|
|
typedef enum{
|
|
SIGMOID, RELU, LINEAR, RAMP, TANH
|
|
}ACTIVATION;
|
|
|
|
ACTIVATION get_activation(char *s);
|
|
|
|
float activate(float x, ACTIVATION a);
|
|
float gradient(float x, ACTIVATION a);
|
|
|
|
#endif
|
|
|