Package org.apache.spark.ml
Class PredictionModel<FeaturesType,M extends PredictionModel<FeaturesType,M>>
Object
org.apache.spark.ml.PipelineStage
org.apache.spark.ml.Transformer
org.apache.spark.ml.Model<M>
org.apache.spark.ml.PredictionModel<FeaturesType,M>
- Type Parameters:
FeaturesType
- Type of features. E.g.,VectorUDT
for vector features.M
- Specialization ofPredictionModel
. If you subclass this type, use this type parameter to specify the concrete type for the corresponding model.
- All Implemented Interfaces:
Serializable
,org.apache.spark.internal.Logging
,Params
,HasFeaturesCol
,HasLabelCol
,HasPredictionCol
,PredictorParams
,Identifiable
- Direct Known Subclasses:
ClassificationModel
,RegressionModel
public abstract class PredictionModel<FeaturesType,M extends PredictionModel<FeaturesType,M>>
extends Model<M>
implements PredictorParams
Abstraction for a model for prediction tasks (regression and classification).
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.apache.spark.internal.Logging
org.apache.spark.internal.Logging.LogStringContext, org.apache.spark.internal.Logging.SparkShellLoggingFilter
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionParam for features column name.labelCol()
Param for label column name.int
Returns the number of features the model was trained on.abstract double
predict
(FeaturesType features) Predict label for the given features.Param for prediction column name.setFeaturesCol
(String value) setPredictionCol
(String value) Transforms dataset by reading fromfeaturesCol()
, callingpredict
, and storing the predictions as a new columnpredictionCol()
.transformSchema
(StructType schema) Check transform validity and derive the output schema from the input schema.Methods inherited from class org.apache.spark.ml.Transformer
transform, transform, transform
Methods inherited from class org.apache.spark.ml.PipelineStage
params
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.apache.spark.ml.param.shared.HasFeaturesCol
getFeaturesCol
Methods inherited from interface org.apache.spark.ml.param.shared.HasLabelCol
getLabelCol
Methods inherited from interface org.apache.spark.ml.param.shared.HasPredictionCol
getPredictionCol
Methods inherited from interface org.apache.spark.ml.util.Identifiable
toString, uid
Methods inherited from interface org.apache.spark.internal.Logging
initializeForcefully, initializeLogIfNecessary, initializeLogIfNecessary, initializeLogIfNecessary$default$2, isTraceEnabled, log, logDebug, logDebug, logDebug, logDebug, logError, logError, logError, logError, logInfo, logInfo, logInfo, logInfo, logName, LogStringContext, logTrace, logTrace, logTrace, logTrace, logWarning, logWarning, logWarning, logWarning, org$apache$spark$internal$Logging$$log_, org$apache$spark$internal$Logging$$log__$eq, withLogContext
Methods inherited from interface org.apache.spark.ml.param.Params
clear, copy, copyValues, defaultCopy, defaultParamMap, explainParam, explainParams, extractParamMap, extractParamMap, get, getDefault, getOrDefault, getParam, hasDefault, hasParam, isDefined, isSet, onParamChange, paramMap, params, set, set, set, setDefault, setDefault, shouldOwn
Methods inherited from interface org.apache.spark.ml.PredictorParams
validateAndTransformSchema
-
Constructor Details
-
PredictionModel
public PredictionModel()
-
-
Method Details
-
featuresCol
Description copied from interface:HasFeaturesCol
Param for features column name.- Specified by:
featuresCol
in interfaceHasFeaturesCol
- Returns:
- (undocumented)
-
labelCol
Description copied from interface:HasLabelCol
Param for label column name.- Specified by:
labelCol
in interfaceHasLabelCol
- Returns:
- (undocumented)
-
numFeatures
public int numFeatures()Returns the number of features the model was trained on. If unknown, returns -1 -
predict
Predict label for the given features. This method is used to implementtransform()
and outputpredictionCol()
.- Parameters:
features
- (undocumented)- Returns:
- (undocumented)
-
predictionCol
Description copied from interface:HasPredictionCol
Param for prediction column name.- Specified by:
predictionCol
in interfaceHasPredictionCol
- Returns:
- (undocumented)
-
setFeaturesCol
-
setPredictionCol
-
transform
Transforms dataset by reading fromfeaturesCol()
, callingpredict
, and storing the predictions as a new columnpredictionCol()
.- Specified by:
transform
in classTransformer
- Parameters:
dataset
- input dataset- Returns:
- transformed dataset with
predictionCol()
of typeDouble
-
transformSchema
Description copied from class:PipelineStage
Check transform validity and derive the output schema from the input schema.We check validity for interactions between parameters during
transformSchema
and raise an exception if any parameter value is invalid. Parameter value checks which do not depend on other parameters are handled byParam.validate()
.Typical implementation should first conduct verification on schema change and parameter validity, including complex parameter interaction checks.
- Specified by:
transformSchema
in classPipelineStage
- Parameters:
schema
- (undocumented)- Returns:
- (undocumented)
-