-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathActivation.h
More file actions
44 lines (40 loc) · 737 Bytes
/
Copy pathActivation.h
File metadata and controls
44 lines (40 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
//Activation.h
#ifndef ACTIVATION_H
#define ACTIVATION_H
#include "Matrix.h"
/**
* @enum ActivationType
* @brief Indicator of activation function.
*/
enum ActivationType
{
Relu ,
Softmax
};
/**
* Activation object
*/
class Activation
{
public:
/**
* Con for Activation object
* @param actType :ActivationType given
*/
Activation(ActivationType actType) : active(actType)
{};
/**
* Retuns the activation type
* @return get Activation type
*/
ActivationType getActivationType();
/**
* overload () operator
* @param input cur matrix
* @return Matrix after given operation
*/
Matrix operator()(const Matrix & input);
private:
ActivationType active;
};
#endif //ACTIVATION_H