case class CategoricalParams(minDataPerGroup: Option[Int], maxCatThreshold: Option[Int], catl2: Option[Double], catSmooth: Option[Double], maxCatToOneHot: Option[Int]) extends ParamGroup with Product with Serializable
Defines parameters related to categorical features for lightgbm.
- minDataPerGroup
minimal number of data per categorical group.
- maxCatThreshold
limit number of split points considered for categorical features
- catl2
L2 regularization in categorical split.
- catSmooth
this can reduce the effect of noises in categorical features, especially for categories with few data.
- maxCatToOneHot
when number of categories of one feature smaller than or equal to this, one-vs-other split algorithm will be used.
- Alphabetic
- By Inheritance
- CategoricalParams
- Product
- Equals
- ParamGroup
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
-
new
CategoricalParams(minDataPerGroup: Option[Int], maxCatThreshold: Option[Int], catl2: Option[Double], catSmooth: Option[Double], maxCatToOneHot: Option[Int])
- minDataPerGroup
minimal number of data per categorical group.
- maxCatThreshold
limit number of split points considered for categorical features
- catl2
L2 regularization in categorical split.
- catSmooth
this can reduce the effect of noises in categorical features, especially for categories with few data.
- maxCatToOneHot
when number of categories of one feature smaller than or equal to this, one-vs-other split algorithm will be used.
Value Members
-
def
appendParams(sb: ParamsStringBuilder): ParamsStringBuilder
- Definition Classes
- CategoricalParams → ParamGroup
- val catSmooth: Option[Double]
- val catl2: Option[Double]
- val maxCatThreshold: Option[Int]
- val maxCatToOneHot: Option[Int]
- val minDataPerGroup: Option[Int]
-
def
toString(): String
- Definition Classes
- ParamGroup → AnyRef → Any