public abstract class PredictionModel<FeaturesType,M extends PredictionModel<FeaturesType,M>> extends Model<M>
Constructor and Description |
---|
PredictionModel() |
Modifier and Type | Method and Description |
---|---|
M |
setFeaturesCol(String value) |
M |
setPredictionCol(String value) |
DataFrame |
transform(DataFrame dataset)
Transforms dataset by reading from
featuresCol , calling predict() , and storing
the predictions as a new column predictionCol . |
StructType |
transformSchema(StructType schema)
:: DeveloperApi ::
|
StructType |
validateAndTransformSchema(StructType schema,
boolean fitting,
DataType featuresDataType)
Validates and transforms the input schema with the provided param map.
|
transform, transform, transform
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
clear, copy, copyValues, defaultParamMap, explainParam, explainParams, extractParamMap, extractParamMap, get, getDefault, getOrDefault, getParam, hasDefault, hasParam, isDefined, isSet, paramMap, params, set, set, set, setDefault, setDefault, setDefault, shouldOwn, validateParams
initializeIfNecessary, initializeLogging, isTraceEnabled, log_, log, logDebug, logDebug, logError, logError, logInfo, logInfo, logName, logTrace, logTrace, logWarning, logWarning
public M setFeaturesCol(String value)
public M setPredictionCol(String value)
public StructType transformSchema(StructType schema)
PipelineStage
Derives the output schema from the input schema.
transformSchema
in class PipelineStage
schema
- (undocumented)public DataFrame transform(DataFrame dataset)
featuresCol
, calling predict()
, and storing
the predictions as a new column predictionCol
.
transform
in class Transformer
dataset
- input datasetpredictionCol
of type Double
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.