c
com.microsoft.azure.synapse.ml.explainers
ICECategoricalFeature
Companion object ICECategoricalFeature
case class ICECategoricalFeature(name: String, numTopValues: Option[Int] = None, outputColName: Option[String] = None) extends ICEFeature with Product with Serializable
Represents a single categorical feature to be explained by ICE explainer.
- name
The name of the categorical feature.
- numTopValues
The max number of top-occurring values to be included in the categorical feature. Default: 100.
- outputColName
The name for output column with explanations for the feature. Default: input name of the feature + _dependence.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- ICECategoricalFeature
- Serializable
- Serializable
- Product
- Equals
- ICEFeature
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
-
new
ICECategoricalFeature(name: String, numTopValues: Option[Int] = None, outputColName: Option[String] = None)
- name
The name of the categorical feature.
- numTopValues
The max number of top-occurring values to be included in the categorical feature. Default: 100.
- 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 getNumTopValue: Int
-
def
getOutputColName: String
- Definition Classes
- ICEFeature
- val name: String
- val numTopValues: Option[Int]
- val outputColName: Option[String]
-
def
validate: Boolean
- Definition Classes
- ICECategoricalFeature → ICEFeature