|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Object org.apache.spark.ml.PipelineStage org.apache.spark.ml.Transformer org.apache.spark.ml.Model<PipelineModel> org.apache.spark.ml.PipelineModel
public class PipelineModel
:: Experimental :: Represents a fitted pipeline.
Method Summary | |
---|---|
PipelineModel |
copy(ParamMap extra)
Creates a copy of this instance with the same UID and some extra params. |
Transformer[] |
stages()
|
DataFrame |
transform(DataFrame dataset)
Transforms the input dataset. |
StructType |
transformSchema(StructType schema)
:: DeveloperApi :: |
String |
uid()
|
void |
validateParams()
Validates parameter values stored internally. |
Methods inherited from class org.apache.spark.ml.Model |
---|
hasParent, parent, setParent |
Methods inherited from class org.apache.spark.ml.Transformer |
---|
transform, transform, transform |
Methods inherited from class Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface org.apache.spark.Logging |
---|
initializeIfNecessary, initializeLogging, isTraceEnabled, log_, log, logDebug, logDebug, logError, logError, logInfo, logInfo, logName, logTrace, logTrace, logWarning, logWarning |
Methods inherited from interface org.apache.spark.ml.param.Params |
---|
clear, copyValues, defaultCopy, defaultParamMap, explainParam, explainParams, extractParamMap, extractParamMap, get, getDefault, getOrDefault, getParam, hasDefault, hasParam, isDefined, isSet, paramMap, params, set, set, set, setDefault, setDefault, setDefault, shouldOwn |
Method Detail |
---|
public String uid()
public Transformer[] stages()
public void validateParams()
Params
This only needs to check for interactions between parameters.
Parameter value checks which do not depend on other parameters are handled by
Param.validate()
. This method does not handle input/output column parameters;
those are checked during schema validation.
validateParams
in interface Params
public DataFrame transform(DataFrame dataset)
Transformer
transform
in class Transformer
dataset
- (undocumented)
public StructType transformSchema(StructType schema)
PipelineStage
Derives the output schema from the input schema.
transformSchema
in class PipelineStage
schema
- (undocumented)
public PipelineModel copy(ParamMap extra)
Params
copy
in interface Params
copy
in class Model<PipelineModel>
extra
- (undocumented)
defaultCopy()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |