cross_validate¶
yohou.model_selection.validation.cross_validate(forecaster, y, X_actual=None, forecasting_horizon=1, *, X_future=None, X_forecast=None, scoring, cv=5, predict_forecasting_horizon=None, predict_stride=None, n_jobs=None, verbose=0, pre_dispatch='2*n_jobs', return_train_score=False, return_forecaster=False, return_indices=False, error_score=np.nan)
¶
Evaluate a forecaster by cross-validation and return test scores and timings.
Parameters¶
| Name | Type | Description | Default |
|---|---|---|---|
forecaster
|
BaseForecaster
|
The forecaster to evaluate. |
required |
y
|
DataFrame
|
Target time series with a |
required |
X_actual
|
DataFrame or None
|
Actual feature observations with a |
None
|
forecasting_horizon
|
int
|
Number of time steps to forecast. |
1
|
X_future
|
DataFrame or None
|
Known future features with a |
None
|
X_forecast
|
DataFrame or None
|
External forecasts with |
None
|
scoring
|
BaseScorer or dict of str to BaseScorer
|
Scorer (single or multi-metric) used to evaluate predictions. |
required |
cv
|
int, BaseSplitter, or None
|
Cross-validation splitting strategy. |
5
|
predict_forecasting_horizon
|
int or None
|
Override forecasting horizon for |
None
|
predict_stride
|
int or None
|
Override stride for |
None
|
n_jobs
|
int or None
|
Number of parallel jobs ( |
None
|
verbose
|
int
|
Verbosity level. |
0
|
pre_dispatch
|
str or int
|
Controls the number of pre-dispatched jobs for parallel execution. |
"2*n_jobs"
|
return_train_score
|
bool
|
Whether to include training scores. |
False
|
return_forecaster
|
bool
|
Whether to include fitted forecasters. |
False
|
return_indices
|
bool
|
Whether to include train/test indices per fold. |
False
|
error_score
|
float or 'raise'
|
Value to assign if an error occurs during fitting. |
np.nan
|
Returns¶
| Type | Description |
|---|---|
DataFrame or dict
|
When Single scorer: Multi-metric: When |
Source Code¶
Show/Hide source
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 | |
Tutorials¶
The following example notebooks use this component:
-
Cross-Validation for Time Series
Evaluation-Search
Evaluate forecasters with cross_val_score, cross_validate, and cross_val_predict using temporal splitters.