mlpack_det(1) | User Commands | mlpack_det(1) |
mlpack_det - density estimation with density estimation trees
mlpack_det [-f int] [-m unknown] [-L int] [-l int] [-p string] [-s bool] [-T string] [-t string] [-V bool] [-M unknown] [-c string] [-g string] [-E string] [-e string] [-i string] [-h -v]
This program performs a number of functions related to Density Estimation Trees. The optimal Density Estimation Tree (DET) can be trained on a set of data (specified by '--training_file (-t)') using cross-validation (with number of folds specified with the '--folds (-f)' parameter). This trained density estimation tree may then be saved with the '--output_model_file (-M)' output parameter.
The variable importances (that is, the feature importance values for each dimension) may be saved with the '--vi_file (-i)' output parameter, and the density estimates for each training point may be saved with the ’--training_set_estimates_file (-e)' output parameter.
Enabling path printing for each node outputs the path from the root node to a leaf for each entry in the test set, or training set (if a test set is not provided). Strings like 'LRLRLR' (indicating that traversal went to the left child, then the right child, then the left child, and so forth) will be output. If 'lr-id' or 'id-lr' are given as the '--path_format (-p)' parameter, then the ID (tag) of every node along the path will be printed after or before the L or R character indicating the direction of traversal, respectively.
This program also can provide density estimates for a set of test points, specified in the '--test_file (-T)' parameter. The density estimation tree used for this task will be the tree that was trained on the given training points, or a tree given as the parameter '--input_model_file (-m)'. The density estimates for the test points may be saved using the ’--test_set_estimates_file (-E)' output parameter.
For further information, including relevant papers, citations, and theory, consult the documentation found at http://www.mlpack.org or included with your distribution of mlpack.
12 December 2020 | mlpack-3.4.2 |