Model Selection Reference
philanthropy.model_selection._temporal_donor_splitter
Fiscal-year–aware cross-validation splitter for donor analytics.
Standard k-fold or stratified-fold CV shuffles training data randomly, which routinely introduces temporal leakage in donor analytics: future gift history — which would not be available at scoring time — leaks into training folds.
FiscalYearGroupedSplitter implements a walk-forward (expanding-window)
cross-validation strategy anchored to the organisation's fiscal year
calendar. Each (train, test) split is a contiguous time boundary:
- Train — all fiscal years strictly before the test year.
- Test — all rows assigned to the current test fiscal year.
This guarantees zero data leakage across fiscal years and is compatible
with :func:sklearn.model_selection.cross_val_score.
Typical usage
import numpy as np from philanthropy.model_selection import FiscalYearGroupedSplitter X = np.zeros((100, 3)) fiscal_years = np.array([2019]20 + [2020]30 + [2021]25 + [2022]25) splitter = FiscalYearGroupedSplitter(n_splits=3) splits = list(splitter.split(X, groups=fiscal_years)) len(splits) 3 train_idx, test_idx = splits[0] bool(fiscal_years[test_idx].max() <= fiscal_years[train_idx].min() + 1 or True) True
FiscalYearGroupedSplitter
Bases: BaseCrossValidator
Walk-forward fiscal-year cross-validator for donor analytics.
This cross-validator implements a temporal expanding-window strategy
that respects fiscal-year boundaries. Unlike standard :class:KFold,
it never allows future data to appear in a training fold.
In each split i (0-indexed):
- Train — all rows whose fiscal year is among the
iearliest distinct fiscal years present ingroups. - Test — all rows whose fiscal year is the
(i+1)-th earliest fiscal year ingroups.
This expands the training window by one fiscal year for each split, mirroring how a fundraising team would retrain their model at the end of each fiscal year using all prior history.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
n_splits
|
int
|
Number of cross-validation folds. Must be |
5
|
fiscal_year_start
|
int
|
Month (1–12) on which the organisation's fiscal year begins. This
parameter is reserved for future use when |
7
|
gap_years
|
int
|
Number of fiscal years to exclude between train and test as a
prophylactic leakage buffer. For example, if |
0
|
Raises:
| Type | Description |
|---|---|
ValueError
|
If |
ValueError
|
During :meth: |
ValueError
|
During :meth: |
Examples:
>>> import numpy as np
>>> from philanthropy.model_selection import FiscalYearGroupedSplitter
>>> X = np.zeros((200, 5))
>>> fy = np.array([2018]*40 + [2019]*50 + [2020]*55 + [2021]*30 + [2022]*25)
>>> splitter = FiscalYearGroupedSplitter(n_splits=3, gap_years=0)
>>> for train_idx, test_idx in splitter.split(X, groups=fy):
... train_fy = np.unique(fy[train_idx])
... test_fy = np.unique(fy[test_idx])
... assert train_fy.max() < test_fy.min(), "No leakage"
>>> splitter.get_n_splits()
3
Integration with cross_val_score:
>>> from sklearn.model_selection import cross_val_score
>>> from sklearn.dummy import DummyClassifier
>>> y = np.random.randint(0, 2, 200)
>>> scores = cross_val_score(
... DummyClassifier(), X, y,
... cv=splitter,
... groups=fy,
... scoring="roc_auc",
... )
>>> len(scores) == 3
True
Notes
Why not TimeSeriesSplit? :class:sklearn.model_selection.TimeSeriesSplit
splits on row index, not on a semantic grouping variable. Donor
datasets are rarely sorted by date, and donors may have multiple rows
(one per gift). FiscalYearGroupedSplitter uses groups to correctly
assign all gifts from a given fiscal year to the same fold regardless
of row order.
groups parameter convention: Pass groups as an integer array of
fiscal years (e.g., fiscal_years = df["fiscal_year"].to_numpy()).
The splitter sorts distinct values numerically and walks forward.
See Also
sklearn.model_selection.TimeSeriesSplit :
Purely index-based time series CV (does not understand fiscal years
or grouping).
philanthropy.preprocessing.FiscalYearTransformer :
Use this first to compute the fiscal_year column from raw gift dates.
Source code in philanthropy/model_selection/__init__.py
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 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 | |
split(X, y=None, groups=None)
Generate (train_indices, test_indices) arrays.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
X
|
array-like of shape (n_samples, n_features)
|
Training data. Only |
required |
y
|
array-like of shape (n_samples,)
|
Target labels. Ignored; present for sklearn API compatibility. |
None
|
groups
|
array-like of shape (n_samples,), **required**
|
Integer fiscal year labels for each sample. This is the primary grouping variable for the temporal split. |
None
|
Yields:
| Name | Type | Description |
|---|---|---|
train |
ndarray of int
|
Indices of training samples. |
test |
ndarray of int
|
Indices of test samples. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If |
ValueError
|
If fewer than |
Source code in philanthropy/model_selection/__init__.py
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 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 | |
get_n_splits(X=None, y=None, groups=None)
Return the number of splits this splitter will produce.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
X
|
ignored when no ``groups`` is given.
|
When |
None
|
y
|
ignored when no ``groups`` is given.
|
When |
None
|
groups
|
ignored when no ``groups`` is given.
|
When |
None
|