Feat C++ API
A feature engineering automation tool
n_relu.h
Go to the documentation of this file.
1 /* FEAT
2 copyright 2017 William La Cava
3 license: GNU/GPL v3
4 */
5 #ifndef NODE_RELU
6 #define NODE_RELU
7 
8 #include "../n_Dx.h"
9 
10 namespace FT{
11 
12  namespace Pop{
13  namespace Op{
14  class NodeRelu : public NodeDx
15  {
16  public:
17 
18  NodeRelu(vector<float> W0 = vector<float>());
19 
21  void evaluate(const Data& data, State& state);
22 
24  void eval_eqn(State& state);
25 
26  ArrayXf getDerivative(Trace& state, int loc);
27 
28  protected:
29  NodeRelu* clone_impl() const override;
30 
31  NodeRelu* rnd_clone_impl() const override;
32  };
33  }
34  }
35 }
36 
37 #endif
data holding X, y, and Z data
Definition: data.h:42
ArrayXf getDerivative(Trace &state, int loc)
Definition: n_relu.cc:51
void eval_eqn(State &state)
Evaluates the node symbolically.
Definition: n_relu.cc:46
NodeRelu * clone_impl() const override
Definition: n_relu.cc:65
void evaluate(const Data &data, State &state)
Evaluates the node and updates the state states.
Definition: n_relu.cc:31
NodeRelu(vector< float > W0=vector< float >())
Definition: n_relu.cc:11
NodeRelu * rnd_clone_impl() const override
Definition: n_relu.cc:67
main Feat namespace
Definition: data.cc:13
contains various types of State actually used by feat
Definition: state.h:102
used for tracing stack outputs for backprop algorithm.
Definition: state.h:232