Dataset split review
Use when reviewing how data is split into train/validation/test sets -- especially with time-series data, repeated entities (users, patients, sessions), or imbalanced targets.From its SKILL.md
npx -y skills add yeaight7/agent-powerups --skill dataset-split-reviewAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 6 stars6 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
2.1 KB, 399 tokens by cl100k_base, as published. Nobody here has run it
Purpose
A random split is often the wrong split. Incorrect splitting causes massive overestimation of model performance; this review verifies the split methodology matches the structure of the data.
When to Use
- Reviewing splitting code before training or sign-off
- Data has a time component, repeated entities, or class imbalance
- Validation metrics look too good for the problem
Inputs
- The splitting code
- The dataset's structure: time column? entity keys (user/patient/session)? target balance?
Workflow
- Time-series data: if the data has a time component, random
train_test_splitis strictly forbidden. Require a chronological split so the model cannot learn from the future. - Group leakage: if the dataset has multiple rows per user/patient/session, a standard split puts rows from the same entity in both train and test. Require GroupKFold or group-based splitting.
- Stratification: for imbalanced targets, verify stratification maintains the target distribution across all splits.
- Verify in code, not in description: read the actual splitting call and its parameters before issuing a verdict.
Output
- An explicit pass/fail verdict on Time, Group, and Stratification safety, citing the splitting code
Verification
- Time safety checked (chronological split whenever a time component exists)
- Group safety checked (no entity appears in both train and test)
- Stratification checked for imbalanced targets
- Verdict cites the actual splitting code, not the author's description of it
Failure Modes
- Trusting the description — authors often believe the split is grouped or chronological when the code says otherwise. Read the code.
- Random split on time data — silently inflates metrics; flag as blocking, not advisory.
- Partial grouping — grouped train/test but a random validation split still leaks. Check every split boundary.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.