- BigDenseMatrix - 位于包 ml.dmlc.xgboost4j.java.util 中的类
-
密集矩阵的堆外实现,矩阵大小仅受可用内存量的限制,且矩阵维度不能超过 Integer.MAX_VALUE(这与 XGBoost API 对响应最大长度的限制一致)。
- BigDenseMatrix(int, int) - 类 ml.dmlc.xgboost4j.java.util.BigDenseMatrix 的构造函数
-
- boost(DMatrix, float[], float[]) - 类 ml.dmlc.xgboost4j.java.Booster 中的方法
-
已弃用。
- boost(DMatrix, int, float[], float[]) - 类 ml.dmlc.xgboost4j.java.Booster 中的方法
-
使用给定的梯度和 Hessian 进行更新
- Booster - 位于包 ml.dmlc.xgboost4j.java 中的类
-
xgboost 的 Booster,这是一个支持交互式构建 XGBoost 模型的模型 API
- Booster.FeatureImportanceType - 位于包 ml.dmlc.xgboost4j.java 中的类
-
支持的特征重要性类型 WEIGHT = 特征用于决定分割的节点数 GAIN = 特征的每次分割的平均信息增益 COVER = 特征的每次分割的平均覆盖度 TOTAL_GAIN = 特征在所有分割上的总信息增益 TOTAL_COVER = 特征在所有分割上的总覆盖度
- Booster.PredictionType - 位于包 ml.dmlc.xgboost4j.java 中的枚举
-
预测类型,用于 inplace_predict。