4#include <unordered_map>
11#include "../../thirdparty/tree.hh"
47 template<
typename T,
typename W>
64auto TreeNode::fit(
const Dataset& d)
66 auto F =
dtable_fit.template Get<T>(data.node_type, data.sig_hash);
71auto TreeNode::predict(
const Dataset& d,
const float** weights)
73 auto F =
dtable_predict.template Get<T>(data.node_type, data.sig_hash);
74 return F(d, (*
this), weights);
77template<
typename T,
typename W>
78auto TreeNode::predict(
const Dataset& d,
const W** weights)
80 auto F =
dtable_predict.template Get<T>(data.node_type, data.sig_dual_hash);
81 return F(d, (*
this), weights);
85void to_json(json &j,
const tree<Node> &t);
86void from_json(
const json &j, tree<Node> &t);
holds variable type data.
auto fit(const Dataset &d)
string get_model(bool pretty=false) const
auto predict(const Dataset &d, const float **weights=nullptr)
tree_node_(const Node &val)
string get_tree_model(bool pretty=false, string offset="") const
auto predict(const Dataset &d, const W **weights)
tree_node_< Node > * prev_sibling
tree_node_< Node > * parent
int get_size(bool include_weight=true) const
int get_complexity() const
tree_node_< Node > * last_child
tree_node_< Node > * first_child
tree_node_< Node > * next_sibling
class tree_node_< Node > TreeNode
DispatchTable< false > dtable_predict
void from_json(const json &j, Fitness &f)
void to_json(json &j, const Fitness &f)
DispatchTable< true > dtable_fit
class holding the data for a node in a tree.