Fits a single model to the input data with provided parameter map.
Fits a single model to the input data with provided parameter map.
input dataset
Parameter map. These values override any specified in this Estimator's embedded ParamMap.
fitted model
:: DeveloperAPI ::
:: DeveloperAPI ::
Derives the output schema from the input schema and parameters. The schema describes the columns and types of the data.
Input schema to this stage
Parameters passed to this stage
Output schema from this stage
Check whether the given schema contains an input column.
Check whether the given schema contains an input column.
Parameter name for the input column.
SQL DataType of the input column.
Returns the documentation of all params.
Returns the documentation of all params.
Fits multiple models to the input data with multiple sets of parameters.
Fits multiple models to the input data with multiple sets of parameters. The default implementation uses a for loop on each parameter map. Subclasses could overwrite this to optimize multi-model training.
input dataset
An array of parameter maps. These values override any specified in this Estimator's embedded ParamMap.
fitted models, matching the input parameter maps
Fits a single model to the input data with optional parameters.
Fits a single model to the input data with optional parameters.
input dataset
Optional list of param pairs. These values override any specified in this Estimator's embedded ParamMap.
fitted model
Gets the value of a parameter in the embedded param map.
Gets the value of a parameter in the embedded param map.
Checks whether a param is explicitly set.
Checks whether a param is explicitly set.
Internal param map.
Internal param map.
Returns all params.
Returns all params.
Sets a parameter in the embedded param map.
Sets a parameter in the embedded param map.
Derives the output schema from the input schema and parameters, optionally with logging.
Derives the output schema from the input schema and parameters, optionally with logging.
Validates parameter values stored internally.
Validates parameter values stored internally. Raise an exception if any parameter value is invalid.
Validates parameter values stored internally plus the input parameter map.
Validates parameter values stored internally plus the input parameter map. Raises an exception if any parameter is invalid.
:: AlphaComponent :: Abstract class for estimators that fit models to data.