Feat C++ API
A feature engineering automation tool
n_train.h
Go to the documentation of this file.
1 #ifndef NODE_TRAIN_H
2 #define NODE_TRAIN_H
3 
4 #include "node.h"
5 // This is a subclass node type for nodes that are trained. Adds a train boolean that can be toggled
6 // to switch between training and validation.
7 namespace FT{
8 namespace Pop{
9 namespace Op{
10 
11 class NodeTrain : public Node
12 {
13  public:
14  bool train;
15 
16  bool isNodeTrain(){ return true; };
17 };
18 // serialization
20  visits, train)
21 }
22 }
23 }
24 
25 #endif
Represents nodes in a program.
Definition: node.h:54
NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE(NodeFuzzyFixedSplit< float >, name, otype, arity, complexity, visits, train, threshold, threshold_set) NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE(NodeFuzzyFixedSplit< int >
main Feat namespace
Definition: data.cc:13