public class Interaction extends Transformer implements HasInputCols, HasOutputCol, DefaultParamsWritable
For example, given the input feature values Double(2)
and Vector(3, 4)
, the output would be
Vector(6, 8)
if all input features were numeric. If the first feature was instead nominal
with four categories, the output would then be Vector(0, 0, 0, 0, 3, 4, 0, 0)
.
Constructor and Description |
---|
Interaction() |
Interaction(String uid) |
Modifier and Type | Method and Description |
---|---|
Interaction |
copy(ParamMap extra)
Creates a copy of this instance with the same UID and some extra params.
|
StringArrayParam |
inputCols()
Param for input column names.
|
static Interaction |
load(String path) |
Param<String> |
outputCol()
Param for output column name.
|
static MLReader<T> |
read() |
Interaction |
setInputCols(String[] values) |
Interaction |
setOutputCol(String value) |
String |
toString() |
Dataset<Row> |
transform(Dataset<?> dataset)
Transforms the input dataset.
|
StructType |
transformSchema(StructType schema)
Check transform validity and derive the output schema from the input schema.
|
String |
uid()
An immutable unique ID for the object and its derivatives.
|
transform, transform, transform
params
getInputCols
getOutputCol
clear, copyValues, defaultCopy, defaultParamMap, explainParam, explainParams, extractParamMap, extractParamMap, get, getDefault, getOrDefault, getParam, hasDefault, hasParam, isDefined, isSet, onParamChange, paramMap, params, set, set, set, setDefault, setDefault, shouldOwn
write
save
$init$, initializeForcefully, initializeLogIfNecessary, initializeLogIfNecessary, initializeLogIfNecessary$default$2, initLock, isTraceEnabled, log, logDebug, logDebug, logError, logError, logInfo, logInfo, logName, logTrace, logTrace, logWarning, logWarning, org$apache$spark$internal$Logging$$log__$eq, org$apache$spark$internal$Logging$$log_, uninitialize
public static Interaction load(String path)
public static MLReader<T> read()
public final Param<String> outputCol()
HasOutputCol
outputCol
in interface HasOutputCol
public final StringArrayParam inputCols()
HasInputCols
inputCols
in interface HasInputCols
public String uid()
Identifiable
uid
in interface Identifiable
public Interaction setInputCols(String[] values)
public Interaction setOutputCol(String value)
public StructType transformSchema(StructType schema)
PipelineStage
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 Dataset<Row> transform(Dataset<?> dataset)
Transformer
transform
in class Transformer
dataset
- (undocumented)public Interaction copy(ParamMap extra)
Params
defaultCopy()
.copy
in interface Params
copy
in class Transformer
extra
- (undocumented)public String toString()
toString
in interface Identifiable
toString
in class Object