Uses of Enum Class
org.tribuo.common.xgboost.XGBoostTrainer.TreeMethod
Package
Description
Provides an interface to XGBoost for classification problems.
Provides abstract classes for interfacing with XGBoost abstracting away all the
Output
dependent parts.Provides an interface to XGBoost for regression problems.
-
Uses of XGBoostTrainer.TreeMethod in org.tribuo.classification.xgboost
ModifierConstructorDescriptionXGBoostClassificationTrainer
(XGBoostTrainer.BoosterType boosterType, XGBoostTrainer.TreeMethod treeMethod, int numTrees, double eta, double gamma, int maxDepth, double minChildWeight, double subsample, double featureSubsample, double lambda, double alpha, int nThread, XGBoostTrainer.LoggingVerbosity verbosity, long seed) Create an XGBoost trainer. -
Uses of XGBoostTrainer.TreeMethod in org.tribuo.common.xgboost
Modifier and TypeMethodDescriptionstatic XGBoostTrainer.TreeMethod
Returns the enum constant of this class with the specified name.static XGBoostTrainer.TreeMethod[]
XGBoostTrainer.TreeMethod.values()
Returns an array containing the constants of this enum class, in the order they are declared.ModifierConstructorDescriptionprotected
XGBoostTrainer
(XGBoostTrainer.BoosterType boosterType, XGBoostTrainer.TreeMethod treeMethod, int numTrees, double eta, double gamma, int maxDepth, double minChildWeight, double subsample, double featureSubsample, double lambda, double alpha, int nThread, XGBoostTrainer.LoggingVerbosity verbosity, long seed) Create an XGBoost trainer. -
Uses of XGBoostTrainer.TreeMethod in org.tribuo.regression.xgboost
ModifierConstructorDescriptionXGBoostRegressionTrainer
(XGBoostTrainer.BoosterType boosterType, XGBoostTrainer.TreeMethod treeMethod, XGBoostRegressionTrainer.RegressionType rType, int numTrees, double eta, double gamma, int maxDepth, double minChildWeight, double subsample, double featureSubsample, double lambda, double alpha, int nThread, XGBoostTrainer.LoggingVerbosity verbosity, long seed) Create an XGBoost trainer.