public class ModelParametersSchema extends Schema
| Modifier and Type | Field and Description |
|---|---|
ModelKeyV3 |
checkpoint
Model checkpoint to resume training with
|
ModelParametersFoldAssignmentScheme |
fold_assignment
Cross-validation fold assignment scheme, if fold_column is not specified
|
ColSpecifierV3 |
fold_column
Column with cross-validation fold index assignment per observation
|
boolean |
ignore_const_cols
Ignore constant columns
|
java.lang.String[] |
ignored_columns
Ignored columns
|
boolean |
keep_cross_validation_fold_assignment
Keep cross-validation fold assignment
|
boolean |
keep_cross_validation_predictions
Keep cross-validation model predictions
|
double |
max_runtime_secs
Maximum allowed runtime in seconds for model training.
|
ModelKeyV3 |
model_id
Destination id for this model; auto-generated if not specified
|
int |
nfolds
Number of folds for N-fold cross-validation
|
ColSpecifierV3 |
offset_column
Offset column
|
boolean |
parallelize_cross_validation
Allow parallel training of cross-validation models
|
ColSpecifierV3 |
response_column
Response column
|
boolean |
score_each_iteration
Whether to score during each iteration of model training
|
ScoreKeeperStoppingMetric |
stopping_metric
Metric to use for early stopping (AUTO: logloss for classification, deviance for regression)
|
int |
stopping_rounds
Early stopping based on convergence of stopping_metric.
|
double |
stopping_tolerance
Relative tolerance for metric-based stopping criterion (stop if relative improvement is not at least this much)
|
FrameKeyV3 |
training_frame
Training frame
|
FrameKeyV3 |
validation_frame
Validation frame
|
ColSpecifierV3 |
weights_column
Column with observation weights
|
| Constructor and Description |
|---|
ModelParametersSchema() |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString()
Return the contents of this object as a JSON String.
|
public ModelKeyV3 model_id
public FrameKeyV3 training_frame
public FrameKeyV3 validation_frame
public int nfolds
public boolean keep_cross_validation_predictions
public boolean keep_cross_validation_fold_assignment
public boolean parallelize_cross_validation
public ColSpecifierV3 response_column
public ColSpecifierV3 weights_column
public ColSpecifierV3 offset_column
public ColSpecifierV3 fold_column
public ModelParametersFoldAssignmentScheme fold_assignment
public java.lang.String[] ignored_columns
public boolean ignore_const_cols
public boolean score_each_iteration
public ModelKeyV3 checkpoint
public int stopping_rounds
public double max_runtime_secs
public ScoreKeeperStoppingMetric stopping_metric
public double stopping_tolerance