|
| using | ppforest2::types::Feature = float |
| | Scalar type for feature values.
|
| |
| 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.
|
| |
| using | ppforest2::types::GroupId = int |
| | Scalar type for internal group labels (integer). Used as map keys, set elements, and partition indices.
|
| |
| using | ppforest2::types::GroupIdVector = Eigen::Matrix<GroupId, Eigen::Dynamic, 1> |
| | Dynamic-size column vector of internal group labels.
|
| |
| template<typename T> |
| using | ppforest2::types::Matrix = Eigen::Matrix<T, Eigen::Dynamic, Eigen::Dynamic> |
| | Generic dynamic-size matrix.
|
| |
| using | ppforest2::types::Names = std::vector<std::string> |
| | Vector of name strings — used uniformly for class labels (group_names[i] is the label for GroupId == i) and feature names (feature_names[j] is the column name at index j).
|
| |
| using | ppforest2::types::Outcome = Feature |
| | Scalar type for predictions (float for both classification and regression).
|
| |
| using | ppforest2::types::OutcomeVector = Eigen::Matrix<Outcome, Eigen::Dynamic, 1> |
| | Dynamic-size column vector of predictions.
|
| |
| template<typename T> |
| using | ppforest2::types::Vector = Eigen::Matrix<T, Eigen::Dynamic, 1> |
| | Generic dynamic-size column vector.
|
| |