Interface ClassifierParams
- All Superinterfaces:
- HasFeaturesCol,- HasLabelCol,- HasPredictionCol,- HasRawPredictionCol,- Identifiable,- Params,- PredictorParams,- Serializable
- All Known Subinterfaces:
- DecisionTreeClassifierParams,- FMClassifierParams,- GBTClassifierParams,- LinearSVCParams,- LogisticRegressionParams,- MultilayerPerceptronParams,- OneVsRestParams,- ProbabilisticClassifierParams,- RandomForestClassifierParams,- TreeEnsembleClassifierParams
- All Known Implementing Classes:
- ClassificationModel,- Classifier,- DecisionTreeClassificationModel,- DecisionTreeClassifier,- FMClassificationModel,- FMClassifier,- GBTClassificationModel,- GBTClassifier,- LinearSVC,- LinearSVCModel,- LogisticRegression,- LogisticRegressionModel,- MultilayerPerceptronClassificationModel,- MultilayerPerceptronClassifier,- NaiveBayes,- NaiveBayesModel,- OneVsRest,- OneVsRestModel,- ProbabilisticClassificationModel,- ProbabilisticClassifier,- RandomForestClassificationModel,- RandomForestClassifier
(private[spark]) Params for classification.
- 
Method SummaryModifier and TypeMethodDescriptionvalidateAndTransformSchema(StructType schema, boolean fitting, DataType featuresDataType) Validates and transforms the input schema with the provided param map.Methods inherited from interface org.apache.spark.ml.param.shared.HasFeaturesColfeaturesCol, getFeaturesColMethods inherited from interface org.apache.spark.ml.param.shared.HasLabelColgetLabelCol, labelColMethods inherited from interface org.apache.spark.ml.param.shared.HasPredictionColgetPredictionCol, predictionColMethods inherited from interface org.apache.spark.ml.param.shared.HasRawPredictionColgetRawPredictionCol, rawPredictionColMethods inherited from interface org.apache.spark.ml.util.IdentifiabletoString, uidMethods inherited from interface org.apache.spark.ml.param.Paramsclear, copy, copyValues, defaultCopy, defaultParamMap, estimateMatadataSize, explainParam, explainParams, extractParamMap, extractParamMap, get, getDefault, getOrDefault, getParam, hasDefault, hasParam, isDefined, isSet, onParamChange, paramMap, params, set, set, set, setDefault, setDefault, shouldOwn
- 
Method Details- 
validateAndTransformSchemaStructType validateAndTransformSchema(StructType schema, boolean fitting, DataType featuresDataType) Description copied from interface:PredictorParamsValidates and transforms the input schema with the provided param map.- Specified by:
- validateAndTransformSchemain interface- PredictorParams
- Parameters:
- schema- input schema
- fitting- whether this is in fitting
- featuresDataType- SQL DataType for FeaturesType. E.g.,- VectorUDTfor vector features.
- Returns:
- output schema
 
 
-