Model Selection Reference
philanthropy.model_selection
Fiscal-year–aware cross-validation for donor analytics.
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
|
gap_years
|
int
|
Number of fiscal years to exclude between train and test as a
prophylactic leakage buffer. For example, if |
0
|
drop_repeat_donors
|
bool
|
.. deprecated:: 0.7.0
Leaving Whether to remove from each test fold any donor who already appears in that fold's training rows. Leave this Set it When It is not free. Donors active in both windows leave the test fold, so it
shrinks and the donors remaining are systematically newer to the file.
|
False
|
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, drop_repeat_donors=False)
>>> 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.
What this does not prevent. The grouping unit is the fiscal year, not
the donor. A donor with gifts in several fiscal years therefore appears in
both the training and the test fold of the same split, in different rows.
That is correct and intended for a time-varying target ("did this donor
give in FY22?"), because the training rows precede the test rows. It is
leakage for a static per-donor label such as is_major_donor, where
the same answer is attached to every one of that donor's rows and the model
can memorise it from the training years.
For that case, set drop_repeat_donors=True and pass groups as
(n_samples, 2) with the donor identifier in column 1. Each test fold then
excludes donors already present in its training rows. Aggregating to one row
per donor and using a grouped holdout remains the cleaner option when the
label has no time dimension at all.
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/_temporal_donor_splitter.py
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 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 | |
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, **required**
|
Integer fiscal year labels for each sample, shape
|
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 |
ValueError
|
If |
ValueError
|
If |
Source code in philanthropy/model_selection/_temporal_donor_splitter.py
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 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 | |
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
|