Uses of Interface
biz.k11i.xgboost.util.FVec
-
Packages that use FVec Package Description biz.k11i.xgboost biz.k11i.xgboost.gbm biz.k11i.xgboost.tree biz.k11i.xgboost.util -
-
Uses of FVec in biz.k11i.xgboost
Methods in biz.k11i.xgboost with parameters of type FVec Modifier and Type Method Description float[]Predictor. predict(FVec feat)Generates predictions for given feature vector.float[]Predictor. predict(FVec feat, boolean output_margin)Generates predictions for given feature vector.float[]Predictor. predict(FVec feat, boolean output_margin, int ntree_limit)Generates predictions for given feature vector.float[]Predictor. predict(FVec feat, float base_margin)Generates predictions for given feature vector.float[]Predictor. predict(FVec feat, float base_margin, int ntree_limit)Generates predictions for given feature vector.int[]Predictor. predictLeaf(FVec feat)Predicts leaf index of each tree.int[]Predictor. predictLeaf(FVec feat, int ntree_limit)Predicts leaf index of each tree.java.lang.String[]Predictor. predictLeafPath(FVec feat)Predicts path to leaf of each tree.java.lang.String[]Predictor. predictLeafPath(FVec feat, int ntree_limit)Predicts path to leaf of each tree.(package private) float[]Predictor. predictRaw(FVec feat, int ntree_limit, float base_score)floatPredictor. predictSingle(FVec feat)Generates a prediction for given feature vector.floatPredictor. predictSingle(FVec feat, boolean output_margin)Generates a prediction for given feature vector.floatPredictor. predictSingle(FVec feat, boolean output_margin, int ntree_limit)Generates a prediction for given feature vector.(package private) floatPredictor. predictSingleRaw(FVec feat, int ntree_limit) -
Uses of FVec in biz.k11i.xgboost.gbm
Methods in biz.k11i.xgboost.gbm with parameters of type FVec Modifier and Type Method Description (package private) floatDart. pred(FVec feat, int bst_group, int root_index, int ntree_limit, float base_score)(package private) floatGBLinear. pred(FVec feat, int gid, float base_score)(package private) floatGBTree. pred(FVec feat, int bst_group, int root_index, int ntree_limit, float base_score)float[]GBLinear. predict(FVec feat, int ntree_limit, float base_score)float[]GBTree. predict(FVec feat, int ntree_limit, float base_score)float[]GradBooster. predict(FVec feat, int ntree_limit, float base_score)Generates predictions for given feature vector.int[]GBLinear. predictLeaf(FVec feat, int ntree_limit)int[]GBTree. predictLeaf(FVec feat, int ntree_limit)int[]GradBooster. predictLeaf(FVec feat, int ntree_limit)Predicts the leaf index of each tree.java.lang.String[]GBLinear. predictLeafPath(FVec feat, int ntree_limit)java.lang.String[]GBTree. predictLeafPath(FVec feat, int ntree_limit)java.lang.String[]GradBooster. predictLeafPath(FVec feat, int ntree_limit)Predicts the path to leaf of each tree.floatGBLinear. predictSingle(FVec feat, int ntree_limit, float base_score)floatGBTree. predictSingle(FVec feat, int ntree_limit, float base_score)floatGradBooster. predictSingle(FVec feat, int ntree_limit, float base_score)Generates a prediction for given feature vector. -
Uses of FVec in biz.k11i.xgboost.tree
Methods in biz.k11i.xgboost.tree with parameters of type FVec Modifier and Type Method Description intRegTree. getLeafIndex(FVec feat)Retrieves nodes from root to leaf and returns leaf index.intRegTreeImpl. getLeafIndex(FVec feat)Retrieves nodes from root to leaf and returns leaf index.voidRegTree. getLeafPath(FVec feat, java.lang.StringBuilder sb)Retrieves nodes from root to leaf and returns path to leaf.voidRegTreeImpl. getLeafPath(FVec feat, java.lang.StringBuilder sb)Retrieves nodes from root to leaf and returns path to leaf.floatRegTree. getLeafValue(FVec feat, int root_id)Retrieves nodes from root to leaf and returns leaf value.floatRegTreeImpl. getLeafValue(FVec feat, int root_id)Retrieves nodes from root to leaf and returns leaf value.intRegTreeImpl.Node. next(FVec feat) -
Uses of FVec in biz.k11i.xgboost.util
Classes in biz.k11i.xgboost.util that implement FVec Modifier and Type Class Description (package private) static classFVecArrayImpl.FVecDoubleArrayImpl(package private) static classFVecArrayImpl.FVecFloatArrayImpl(package private) classFVecMapImplMethods in biz.k11i.xgboost.util that return FVec Modifier and Type Method Description static FVecFVec.Transformer. fromArray(double[] values, boolean treatsZeroAsNA)Builds FVec from dense vector.static FVecFVec.Transformer. fromArray(float[] values, boolean treatsZeroAsNA)Builds FVec from dense vector.static FVecFVec.Transformer. fromMap(java.util.Map<java.lang.Integer,? extends java.lang.Number> map)Builds FVec from map.
-