public class VectorAssembler extends Transformer implements HasInputCols, HasOutputCol, HasHandleInvalid, DefaultParamsWritable
This requires one pass over the entire dataset. In case we need to infer column lengths from the data we require an additional call to the 'first' Dataset method, see 'handleInvalid' parameter.
Constructor and Description |
---|
VectorAssembler() |
VectorAssembler(String uid) |
Modifier and Type | Method and Description |
---|---|
VectorAssembler |
copy(ParamMap extra)
Creates a copy of this instance with the same UID and some extra params.
|
Param<String> |
handleInvalid()
Param for how to handle invalid data (NULL values).
|
static VectorAssembler |
load(String path) |
static MLReader<T> |
read() |
VectorAssembler |
setHandleInvalid(String value) |
VectorAssembler |
setInputCols(String[] value) |
VectorAssembler |
setOutputCol(String value) |
Dataset<Row> |
transform(Dataset<?> dataset)
Transforms the input dataset.
|
StructType |
transformSchema(StructType schema)
:: DeveloperApi ::
|
String |
uid()
An immutable unique ID for the object and its derivatives.
|
transform, transform, transform
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getInputCols, inputCols
getOutputCol, outputCol
getHandleInvalid
clear, copyValues, defaultCopy, defaultParamMap, explainParam, explainParams, extractParamMap, extractParamMap, get, getDefault, getOrDefault, getParam, hasDefault, hasParam, isDefined, isSet, paramMap, params, set, set, set, setDefault, setDefault, shouldOwn
toString
write
save
initializeLogging, initializeLogIfNecessary, initializeLogIfNecessary, isTraceEnabled, log_, log, logDebug, logDebug, logError, logError, logInfo, logInfo, logName, logTrace, logTrace, logWarning, logWarning
public VectorAssembler(String uid)
public VectorAssembler()
public static VectorAssembler load(String path)
public static MLReader<T> read()
public String uid()
Identifiable
uid
in interface Identifiable
public VectorAssembler setInputCols(String[] value)
public VectorAssembler setOutputCol(String value)
public VectorAssembler setHandleInvalid(String value)
public Param<String> handleInvalid()
VectorSizeHint
in a pipeline before VectorAssembler
. Column lengths can also be inferred
from first rows of the data since it is safe to do so but only in case of 'error' or 'skip'.
Default: "error"handleInvalid
in interface HasHandleInvalid
public Dataset<Row> transform(Dataset<?> dataset)
Transformer
transform
in class Transformer
dataset
- (undocumented)public StructType transformSchema(StructType schema)
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 by Param.validate()
.
Typical implementation should first conduct verification on schema change and parameter validity, including complex parameter interaction checks.
transformSchema
in class PipelineStage
schema
- (undocumented)public VectorAssembler copy(ParamMap extra)
Params
defaultCopy()
.copy
in interface Params
copy
in class Transformer
extra
- (undocumented)