Hyperparameters
No hyperparameter search space
No search will be performed: Either none of the selected algorithms' parameters has more than one permitted value, or the search space is limited to a single combination.

The settings define how the search for the best model hyperparameters is done.
During the hyperparameters optimization phase, each set of hyperparameters (defined in the Algorithms page) will be evaluated with the metric defined in the Metrics page.

Search Strategy

Search parameters

The search will conclude when either the time or search space limit is reached.

Maximum number of hyperparameter combinations to explore. Set to 0 to unconstrain.
In minutes. Set to 0 to unconstrain.

Cross-validation

{{ mlTaskDesign.modeling.gridSearchParams.mode === 'TIME_SERIES_KFOLD' ? 'Each validation fold' : 'The validation set' }} contains {{ prettyTimeSteps(mlTaskDesign.evaluationParams.testSize * mlTaskDesign.timestepParams.numberOfTimeunits, mlTaskDesign.timestepParams.timeunit) }} ({{ uiState.numberOfHorizonsInTest }} forecast {{ 'horizon' | plurify: uiState.numberOfHorizonsInTest }} of {{ prettyTimeSteps(mlTaskDesign.predictionLength * mlTaskDesign.timestepParams.numberOfTimeunits, mlTaskDesign.timestepParams.timeunit) }}). {{ uiState.numberOfHorizonsInTest > 1 ? 'For each' : 'In the' }} forecast horizon, the models are evaluated on the last {{ prettyTimeSteps((mlTaskDesign.predictionLength - mlTaskDesign.evaluationParams.gapSize) * mlTaskDesign.timestepParams.numberOfTimeunits, mlTaskDesign.timestepParams.timeunit) }} (the first {{ prettyTimeSteps(mlTaskDesign.evaluationParams.gapSize * mlTaskDesign.timestepParams.numberOfTimeunits, mlTaskDesign.timestepParams.timeunit) }} (gap) {{ 'is' | plurify: mlTaskDesign.evaluationParams.gapSize * mlTaskDesign.timestepParams.numberOfTimeunits : 'are' }} skipped).

{{ prettyTimeSteps(uiState.numberOfHorizonsInTest * uiState.predictionLength * uiState.timestepParams.numberOfTimeunits, uiState.timestepParams.timeunit) }}
Since time-based ordering is enabled, cross-validation strategies take the time variable into account
Rows with same group column value are assigned to same fold. See .
Column containing the k-fold groups
The code must define a variable named cv that follows the scikit-learn crossvalidation object protocol