|
ppforest2 v0.1.0
Projection Pursuit Decision Trees and Random Forests
|
#include <Eigen/Dense>Go to the source code of this file.
Namespaces | |
| namespace | ppforest2 |
| namespace | ppforest2::types |
| Core numeric type aliases for the ppforest2 library. | |
Typedefs | |
| using | ppforest2::types::Feature = float |
| Scalar type for feature values (float or double). | |
| using | ppforest2::types::FeatureMatrix = Eigen::Matrix<Feature, Eigen::Dynamic, Eigen::Dynamic> |
| Dynamic-size matrix of feature values. | |
| using | ppforest2::types::FeatureVector = Eigen::Matrix<Feature, Eigen::Dynamic, 1> |
| Dynamic-size column vector of feature values. | |
| template<typename T> | |
| using | ppforest2::types::Matrix = Eigen::Matrix<T, Eigen::Dynamic, Eigen::Dynamic> |
| Generic dynamic-size matrix. | |
| using | ppforest2::types::Response = int |
| Scalar type for group labels (integer). | |
| using | ppforest2::types::ResponseVector = Eigen::Matrix<Response, Eigen::Dynamic, 1> |
| Dynamic-size column vector of group labels. | |
| template<typename T> | |
| using | ppforest2::types::Vector = Eigen::Matrix<T, Eigen::Dynamic, 1> |
| Generic dynamic-size column vector. | |