|
Brush C++ API
A flexible interpretable machine learning framework
|
#include <tuple>#include <unordered_map>#include "../init.h"#include "../data/data.h"#include "node.h"#include "functions.h"#include "nodetype.h"#include "../../thirdparty/tree.hh"#include "dispatch_table.h"

Go to the source code of this file.
Classes | |
| class | tree_node_< Node > |
| tree node specialization for Node. More... | |
| struct | Node |
| class holding the data for a node in a tree. More... | |
Typedefs | |
| using | TreeNode = class tree_node_<Node> |
Functions | |
| void | to_json (json &j, const tree< Node > &t) |
| void | from_json (const json &j, tree< Node > &t) |
| load a tree from json. uses a stack. | |
| using TreeNode = class tree_node_<Node> |
Definition at line 58 of file tree_node.h.
load a tree from json. uses a stack.
| j | json version of tree. |
| t | tree into which data is loaded. |
Definition at line 81 of file tree_node.cpp.
Definition at line 68 of file tree_node.cpp.