FeaturesType - Type of input features. E.g., VectorE - Concrete Estimator typeM - Concrete Model typepublic abstract class ProbabilisticClassifier<FeaturesType,E extends ProbabilisticClassifier<FeaturesType,E,M>,M extends ProbabilisticClassificationModel<FeaturesType,M>> extends Classifier<FeaturesType,E,M>
Single-label binary or multiclass classifier which can output class conditional probabilities.
| Constructor and Description |
|---|
ProbabilisticClassifier() |
| Modifier and Type | Method and Description |
|---|---|
E |
setProbabilityCol(String value) |
E |
setThresholds(double[] value) |
StructType |
validateAndTransformSchema(StructType schema,
boolean fitting,
DataType featuresDataType) |
StructType |
validateAndTransformSchema(StructType schema,
boolean fitting,
DataType featuresDataType)
Validates and transforms the input schema with the provided param map.
|
setRawPredictionColcopy, fit, setFeaturesCol, setLabelCol, setPredictionCol, transformSchemaequals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetRawPredictionCol, rawPredictionColclear, copy, copyValues, defaultCopy, defaultParamMap, explainParam, explainParams, extractParamMap, extractParamMap, get, getDefault, getOrDefault, getParam, hasDefault, hasParam, isDefined, isSet, paramMap, params, set, set, set, setDefault, setDefault, shouldOwntoString, uidgetProbabilityCol, probabilityColgetThresholds, thresholdsgetLabelCol, labelColfeaturesCol, getFeaturesColgetPredictionCol, predictionColinitializeLogging, initializeLogIfNecessary, initializeLogIfNecessary, isTraceEnabled, log_, log, logDebug, logDebug, logError, logError, logInfo, logInfo, logName, logTrace, logTrace, logWarning, logWarningpublic E setProbabilityCol(String value)
public E setThresholds(double[] value)
public StructType validateAndTransformSchema(StructType schema, boolean fitting, DataType featuresDataType)
public StructType validateAndTransformSchema(StructType schema, boolean fitting, DataType featuresDataType)
schema - input schemafitting - whether this is in fittingfeaturesDataType - SQL DataType for FeaturesType.
E.g., VectorUDT for vector features.