public class SequentialSearchCriteriaV99 extends HyperSpaceSearchCriteriaV99
| Modifier and Type | Field and Description |
|---|---|
boolean |
earlyStopping
Use early stopping
|
int |
maxModels
Maximum number of models to build (optional).
|
double |
maxRuntimeSecs
Maximum time to spend building models (optional).
|
ScoreKeeperStoppingMetric |
stoppingMetric
Metric to use for early stopping (AUTO: logloss for classification, deviance for regression)
|
int |
stoppingRounds
Early stopping based on convergence of stopping_metric.
|
double |
stoppingTolerance
Relative tolerance for metric-based stopping criterion (stop if relative improvement is not at least this much)
|
strategy| Constructor and Description |
|---|
SequentialSearchCriteriaV99()
Public constructor
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString()
Return the contents of this object as a JSON String.
|
@SerializedName(value="max_models") public int maxModels
@SerializedName(value="max_runtime_secs") public double maxRuntimeSecs
@SerializedName(value="stopping_rounds") public int stoppingRounds
@SerializedName(value="stopping_metric") public ScoreKeeperStoppingMetric stoppingMetric
@SerializedName(value="stopping_tolerance") public double stoppingTolerance
@SerializedName(value="early_stopping") public boolean earlyStopping
public SequentialSearchCriteriaV99()
public java.lang.String toString()
toString in class HyperSpaceSearchCriteriaV99