package booster
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
- trait Booster[D] extends Model
- case class BoosterDataset(original: Dataset, data: Array[Double], labels: Array[Double], groups: Array[Int], rows: Int, cols: Int, featureNames: Array[String]) extends Product with Serializable
- case class LightGBMBooster(model: LGBMBooster, datasets: Map[LGBMDataset, Int] = mutable.Map.empty) extends Booster[LGBMDataset] with Product with Serializable
- case class LightGBMOptions(trees: Int = 100, learningRate: Double = 0.1, ndcgCutoff: Int = 10, maxDepth: Int = 8, randomSeed: Int = Random.nextInt(), numLeaves: Int = 16) extends BoosterOptions with Product with Serializable
- case class XGBoostBooster(model: ml.dmlc.xgboost4j.java.Booster) extends Booster[DMatrix] with Product with Serializable
- case class XGBoostOptions(trees: Int = 100, learningRate: Double = 0.1, ndcgCutoff: Int = 10, maxDepth: Int = 8, randomSeed: Int = Random.nextInt()) extends BoosterOptions with Product with Serializable
Value Members
- object Booster
- object LightGBMBooster extends BoosterFactory[LGBMDataset, LightGBMBooster, LightGBMOptions] with Serializable
- object XGBoostBooster extends BoosterFactory[DMatrix, XGBoostBooster, XGBoostOptions] with Serializable