case class ICENumericFeature(name: String, numSplits: Option[Int] = None, rangeMin: Option[Double] = None, rangeMax: Option[Double] = None, outputColName: Option[String] = None) extends ICEFeature with Product with Serializable
Represents a single numeric feature to be explained by ICE explainer.
- name
The name of the numeric feature.
- numSplits
The number of splits for the value range for the numeric feature. Default: 10.0
- rangeMin
Specifies the min value of the range for the numeric feature. If not specified, it will be computed from the background dataset.
- rangeMax
Specifies the max value of the range for the numeric feature. If not specified, it will be computed from the background dataset.
- outputColName
The name for output column with explanations for the feature. Default: input name of the feature + "_dependence"
- Alphabetic
- By Inheritance
- ICENumericFeature
- Serializable
- Serializable
- Product
- Equals
- ICEFeature
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
-
new
ICENumericFeature(name: String, numSplits: Option[Int] = None, rangeMin: Option[Double] = None, rangeMax: Option[Double] = None, outputColName: Option[String] = None)
- name
The name of the numeric feature.
- numSplits
The number of splits for the value range for the numeric feature. Default: 10.0
- rangeMin
Specifies the min value of the range for the numeric feature. If not specified, it will be computed from the background dataset.
- rangeMax
Specifies the max value of the range for the numeric feature. If not specified, it will be computed from the background dataset.
- outputColName
The name for output column with explanations for the feature. Default: input name of the feature + "_dependence"
Value Members
-
def
getName: String
- Definition Classes
- ICEFeature
- def getNumSplits: Int
-
def
getOutputColName: String
- Definition Classes
- ICEFeature
- val name: String
- val numSplits: Option[Int]
- val outputColName: Option[String]
- val rangeMax: Option[Double]
- val rangeMin: Option[Double]
-
def
validate: Boolean
- Definition Classes
- ICENumericFeature → ICEFeature