public abstract class PipelineStage extends Object implements Params, Logging
Estimator or a Transformer.| Constructor and Description |
|---|
PipelineStage() |
| Modifier and Type | Method and Description |
|---|---|
abstract PipelineStage |
copy(ParamMap extra)
Creates a copy of this instance with the same UID and some extra params.
|
abstract StructType |
transformSchema(StructType schema)
:: DeveloperApi ::
|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitclear, copyValues, defaultCopy, defaultParamMap, explainParam, explainParams, extractParamMap, extractParamMap, get, getDefault, getOrDefault, getParam, hasDefault, hasParam, isDefined, isSet, paramMap, params, set, set, set, setDefault, setDefault, shouldOwntoString, uidinitializeLogging, initializeLogIfNecessary, initializeLogIfNecessary, isTraceEnabled, log_, log, logDebug, logDebug, logError, logError, logInfo, logInfo, logName, logTrace, logTrace, logWarning, logWarningpublic abstract StructType transformSchema(StructType schema)
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 by Param.validate().
Typical implementation should first conduct verification on schema change and parameter validity, including complex parameter interaction checks.
schema - (undocumented)public abstract PipelineStage copy(ParamMap extra)
ParamsdefaultCopy().