Uses of Class
ml.dmlc.xgboost4j.java.DMatrix.SparseType
-
-
Uses of DMatrix.SparseType in ml.dmlc.xgboost4j.java
Methods in ml.dmlc.xgboost4j.java that return DMatrix.SparseType Modifier and Type Method Description static DMatrix.SparseType
DMatrix.SparseType. valueOf(String name)
Returns the enum constant of this type with the specified name.static DMatrix.SparseType[]
DMatrix.SparseType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Constructors in ml.dmlc.xgboost4j.java with parameters of type DMatrix.SparseType Constructor Description DMatrix(long[] headers, int[] indices, float[] data, DMatrix.SparseType st)
Deprecated.DMatrix(long[] headers, int[] indices, float[] data, DMatrix.SparseType st, int shapeParam)
Create DMatrix from Sparse matrix in CSR/CSC format.
-