Brush C++ API
A flexible interpretable machine learning framework
Loading...
Searching...
No Matches
nodetype.cpp
Go to the documentation of this file.
1
#include "
nodetype.h
"
2
3
namespace
Brush
{
4
5
std::map<std::string, NodeType>
NodeNameType
= {
6
//arithmetic
7
{
"Add"
,
NodeType::Add
},
8
{
"Sub"
,
NodeType::Sub
},
9
{
"Mul"
,
NodeType::Mul
},
10
{
"Div"
,
NodeType::Div
},
11
/* {"Aq", NodeType::Aq}, */
12
{
"Abs"
,
NodeType::Abs
},
13
{
"Acos"
,
NodeType::Acos
},
14
{
"Asin"
,
NodeType::Asin
},
15
{
"Atan"
,
NodeType::Atan
},
16
{
"Cos"
,
NodeType::Cos
},
17
{
"Cosh"
,
NodeType::Cosh
},
18
{
"Sin"
,
NodeType::Sin
},
19
{
"Sinh"
,
NodeType::Sinh
},
20
{
"Tan"
,
NodeType::Tan
},
21
{
"Tanh"
,
NodeType::Tanh
},
22
{
"Ceil"
,
NodeType::Ceil
},
23
{
"Floor"
,
NodeType::Floor
},
24
{
"Exp"
,
NodeType::Exp
},
25
{
"Log"
,
NodeType::Log
},
26
{
"Logabs"
,
NodeType::Logabs
},
27
{
"Log1p"
,
NodeType::Log1p
},
28
{
"Sqrt"
,
NodeType::Sqrt
},
29
{
"Sqrtabs"
,
NodeType::Sqrtabs
},
30
{
"Square"
,
NodeType::Square
},
31
{
"Pow"
,
NodeType::Pow
},
32
{
"Logistic"
,
NodeType::Logistic
},
33
34
// logic
35
{
"And"
,
NodeType::And
},
36
{
"Or"
,
NodeType::Or
},
37
{
"Not"
,
NodeType::Not
},
38
// {"Xor", NodeType::Xor},
39
40
// decision (same)
41
/* {"Equals", NodeType::Equals}, */
42
/* {"LessThan", NodeType::LessThan}, */
43
/* {"GreaterThan", NodeType::GreaterThan}, */
44
/* {"Leq", NodeType::Leq}, */
45
/* {"Geq", NodeType::Geq}, */
46
47
// reductions
48
{
"Min"
,
NodeType::Min
},
49
{
"Max"
,
NodeType::Max
},
50
{
"Mean"
,
NodeType::Mean
},
51
{
"Median"
,
NodeType::Median
},
52
{
"Count"
,
NodeType::Count
},
53
{
"Sum"
,
NodeType::Sum
},
54
{
"OffsetSum"
,
NodeType::OffsetSum
},
55
{
"Prod"
,
NodeType::Prod
},
56
{
"ArgMax"
,
NodeType::ArgMax
},
57
58
// transforms
59
{
"Softmax"
,
NodeType::Softmax
},
60
61
// timing masks
62
{
"Before"
,
NodeType::Before
},
63
{
"After"
,
NodeType::After
},
64
{
"During"
,
NodeType::During
},
65
66
//split
67
{
"SplitBest"
,
NodeType::SplitBest
},
68
{
"SplitOn"
,
NodeType::SplitOn
},
69
70
// leaves
71
{
"MeanLabel"
,
NodeType::MeanLabel
},
72
{
"Constant"
,
NodeType::Constant
},
73
{
"Terminal"
,
NodeType::Terminal
},
74
75
// custom
76
{
"CustomUnaryOp"
,
NodeType::CustomUnaryOp
},
77
{
"CustomBinaryOp"
,
NodeType::CustomBinaryOp
},
78
{
"CustomSplit"
,
NodeType::CustomSplit
}
79
};
80
81
std::map<NodeType,std::string>
NodeTypeName
=
Util::reverse_map
(
NodeNameType
);
82
}
// Brush
Brush::Util::reverse_map
static map< V, K > reverse_map(const map< K, V > &m)
Given a map from keys to values, creates a new map from values to keys.
Definition
utils.h:738
Brush
< nsga2 selection operator for getting the front
Definition
data.cpp:12
Brush::NodeType::Log1p
@ Log1p
Definition
nodetype.h:49
Brush::NodeType::Sin
@ Sin
Definition
nodetype.h:40
Brush::NodeType::Tan
@ Tan
Definition
nodetype.h:42
Brush::NodeType::SplitOn
@ SplitOn
Definition
nodetype.h:81
Brush::NodeType::Abs
@ Abs
Definition
nodetype.h:34
Brush::NodeType::MeanLabel
@ MeanLabel
Definition
nodetype.h:97
Brush::NodeType::Softmax
@ Softmax
Definition
nodetype.h:70
Brush::NodeType::Prod
@ Prod
Definition
nodetype.h:65
Brush::NodeType::Or
@ Or
Definition
nodetype.h:92
Brush::NodeType::Mean
@ Mean
Definition
nodetype.h:63
Brush::NodeType::Cosh
@ Cosh
Definition
nodetype.h:39
Brush::NodeType::Div
@ Div
Definition
nodetype.h:76
Brush::NodeType::ArgMax
@ ArgMax
Definition
nodetype.h:102
Brush::NodeType::OffsetSum
@ OffsetSum
Definition
nodetype.h:67
Brush::NodeType::Terminal
@ Terminal
Definition
nodetype.h:99
Brush::NodeType::CustomUnaryOp
@ CustomUnaryOp
Definition
nodetype.h:106
Brush::NodeType::Mul
@ Mul
Definition
nodetype.h:75
Brush::NodeType::Median
@ Median
Definition
nodetype.h:64
Brush::NodeType::Max
@ Max
Definition
nodetype.h:62
Brush::NodeType::During
@ During
Definition
nodetype.h:58
Brush::NodeType::Asin
@ Asin
Definition
nodetype.h:36
Brush::NodeType::Min
@ Min
Definition
nodetype.h:61
Brush::NodeType::After
@ After
Definition
nodetype.h:57
Brush::NodeType::Sqrtabs
@ Sqrtabs
Definition
nodetype.h:51
Brush::NodeType::Pow
@ Pow
Definition
nodetype.h:77
Brush::NodeType::Before
@ Before
Definition
nodetype.h:56
Brush::NodeType::Logabs
@ Logabs
Definition
nodetype.h:48
Brush::NodeType::Sinh
@ Sinh
Definition
nodetype.h:41
Brush::NodeType::Logistic
@ Logistic
Definition
nodetype.h:53
Brush::NodeType::Sum
@ Sum
Definition
nodetype.h:66
Brush::NodeType::Not
@ Not
Definition
nodetype.h:93
Brush::NodeType::Sqrt
@ Sqrt
Definition
nodetype.h:50
Brush::NodeType::CustomBinaryOp
@ CustomBinaryOp
Definition
nodetype.h:107
Brush::NodeType::Ceil
@ Ceil
Definition
nodetype.h:44
Brush::NodeType::And
@ And
Definition
nodetype.h:91
Brush::NodeType::Atan
@ Atan
Definition
nodetype.h:37
Brush::NodeType::Exp
@ Exp
Definition
nodetype.h:46
Brush::NodeType::Constant
@ Constant
Definition
nodetype.h:98
Brush::NodeType::Tanh
@ Tanh
Definition
nodetype.h:43
Brush::NodeType::Log
@ Log
Definition
nodetype.h:47
Brush::NodeType::Square
@ Square
Definition
nodetype.h:52
Brush::NodeType::CustomSplit
@ CustomSplit
Definition
nodetype.h:108
Brush::NodeType::Sub
@ Sub
Definition
nodetype.h:74
Brush::NodeType::Count
@ Count
Definition
nodetype.h:103
Brush::NodeType::Add
@ Add
Definition
nodetype.h:73
Brush::NodeType::Acos
@ Acos
Definition
nodetype.h:35
Brush::NodeType::Floor
@ Floor
Definition
nodetype.h:45
Brush::NodeType::SplitBest
@ SplitBest
Definition
nodetype.h:80
Brush::NodeType::Cos
@ Cos
Definition
nodetype.h:38
Brush::NodeNameType
std::map< std::string, NodeType > NodeNameType
Definition
nodetype.cpp:5
Brush::NodeTypeName
std::map< NodeType, std::string > NodeTypeName
Definition
nodetype.cpp:81
nodetype.h
src
program
nodetype.cpp
Generated by
1.13.2