public class CrossValidator extends Estimator<CrossValidatorModel> implements CrossValidatorParams, HasParallelism, HasCollectSubModels, MLWritable, Logging
Constructor and Description |
---|
CrossValidator() |
CrossValidator(String uid) |
Modifier and Type | Method and Description |
---|---|
CrossValidator |
copy(ParamMap extra)
Creates a copy of this instance with the same UID and some extra params.
|
CrossValidatorModel |
fit(Dataset<?> dataset)
Fits a model to the input data.
|
static CrossValidator |
load(String path) |
static MLReader<CrossValidator> |
read() |
CrossValidator |
setCollectSubModels(boolean value)
Whether to collect submodels when fitting.
|
CrossValidator |
setEstimator(Estimator<?> value) |
CrossValidator |
setEstimatorParamMaps(ParamMap[] value) |
CrossValidator |
setEvaluator(Evaluator value) |
CrossValidator |
setNumFolds(int value) |
CrossValidator |
setParallelism(int value)
Set the maximum level of parallelism to evaluate models in parallel.
|
CrossValidator |
setSeed(long value) |
StructType |
transformSchema(StructType schema)
:: DeveloperApi ::
|
String |
uid()
An immutable unique ID for the object and its derivatives.
|
MLWriter |
write()
Returns an
MLWriter instance for this ML instance. |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getNumFolds, numFolds
estimator, estimatorParamMaps, evaluator, getEstimator, getEstimatorParamMaps, getEvaluator, logTuningParams, transformSchemaImpl
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
getExecutionContext, getParallelism, parallelism
collectSubModels, getCollectSubModels
save
initializeLogging, initializeLogIfNecessary, initializeLogIfNecessary, isTraceEnabled, log_, log, logDebug, logDebug, logError, logError, logInfo, logInfo, logName, logTrace, logTrace, logWarning, logWarning
public CrossValidator(String uid)
public CrossValidator()
public static MLReader<CrossValidator> read()
public static CrossValidator load(String path)
public String uid()
Identifiable
uid
in interface Identifiable
public CrossValidator setEstimator(Estimator<?> value)
public CrossValidator setEstimatorParamMaps(ParamMap[] value)
public CrossValidator setEvaluator(Evaluator value)
public CrossValidator setNumFolds(int value)
public CrossValidator setSeed(long value)
public CrossValidator setParallelism(int value)
value
- (undocumented)public CrossValidator setCollectSubModels(boolean value)
Note: If set this param, when you save the returned model, you can set an option
"persistSubModels" to be "true" before saving, in order to save these submodels.
You can check documents of
CrossValidatorModel.CrossValidatorModelWriter
for more information.
value
- (undocumented)public CrossValidatorModel fit(Dataset<?> dataset)
Estimator
fit
in class Estimator<CrossValidatorModel>
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 CrossValidator copy(ParamMap extra)
Params
defaultCopy()
.copy
in interface Params
copy
in class Estimator<CrossValidatorModel>
extra
- (undocumented)public MLWriter write()
MLWritable
MLWriter
instance for this ML instance.write
in interface MLWritable