4string TreeNode::get_model(
bool pretty)
const
6 if (data.get_arg_count()==0)
7 return data.get_name();
9 vector<string> child_outputs;
10 auto sib = first_child;
11 for(
int i = 0; i < data.get_arg_count(); ++i)
13 child_outputs.push_back(sib->get_model(pretty));
14 sib = sib->next_sibling;
16 return data.get_model(child_outputs);
20string TreeNode::get_tree_model(
bool pretty,
string offset)
const
22 if (data.get_arg_count()==0)
23 return data.get_name();
25 string new_offset =
" ";
26 string child_outputs =
"\n";
28 auto sib = first_child;
29 for(
int i = 0; i < data.get_arg_count(); ++i)
31 child_outputs +=
offset +
"|-";
32 string s = sib->get_tree_model(pretty, offset+new_offset);
33 sib = sib->next_sibling;
38 child_outputs +=
"\n";
41 return data.get_name() + child_outputs;
49 for (
const auto &el : t)
60 vector<tree<Node>> stack;
61 for (
int i = j.size(); i --> 0; )
63 auto node = j.at(i).get<
Node>();
65 auto root = subtree.insert(subtree.begin(), node);
66 for (
auto at : node.arg_types)
68 auto spot = subtree.append_child(root);
69 auto arg = stack.back();
70 subtree.move_ontop(spot, arg.begin());
73 stack.push_back(subtree);
91 {NodeType::Floor , 4},
94 {NodeType::Logabs , 12},
95 {NodeType::Log1p , 8},
97 {NodeType::Sqrtabs , 4},
98 {NodeType::Square , 3},
99 {NodeType::Logistic, 3},
100 {NodeType::OffsetSum, 2},
103 {NodeType::Before, 3},
104 {NodeType::After , 3},
105 {NodeType::During, 3},
110 {NodeType::Mean , 3},
111 {NodeType::Median , 3},
113 {NodeType::Prod , 3},
116 {NodeType::Softmax, 4},
126 {NodeType::SplitBest, 4},
127 {NodeType::SplitOn , 4},
135 {NodeType::MeanLabel, 1},
136 {NodeType::Constant , 1},
137 {NodeType::Terminal , 2},
138 {NodeType::ArgMax , 5},
139 {NodeType::Count , 3},
142 {NodeType::CustomUnaryOp , 5},
143 {NodeType::CustomBinaryOp, 5},
144 {NodeType::CustomSplit , 5}
147int TreeNode::get_complexity()
const
150 int children_complexity_sum = 0;
152 auto child = first_child;
153 for(
int i = 0; i < data.get_arg_count(); ++i)
155 children_complexity_sum += child->get_complexity();
156 child = child->next_sibling;
160 children_complexity_sum = max(children_complexity_sum, 1);
163 if (data.get_is_weighted()
170 node_complexity*(children_complexity_sum)
173 return node_complexity*(children_complexity_sum);
176int TreeNode::get_size(
bool include_weight)
const
190 if ( (include_weight && data.get_is_weighted()==
true)
196 auto child = first_child;
197 for(
int i = 0; i < data.get_arg_count(); ++i)
199 acc += child->get_size(include_weight);
200 child = child->next_sibling;
void ReplaceStringInPlace(std::string &subject, const std::string &search, const std::string &replace)
string find and replace in place
auto Isnt(DataType dt) -> bool
void from_json(const json &j, Fitness &f)
auto Is(NodeType nt) -> bool
void to_json(json &j, const Fitness &f)
class holding the data for a node in a tree.
unordered_map< NodeType, int > operator_complexities