Snapshotmain · cedc9d8
How estimator contracts compose preprocessing, fitting, cross-validation, scoring, and model selection.
Click a building or route
System map7 components · 7 connections
130%
Connections
BuildingsEntryServiceComputeStorageRuntimeToolingExternal
Terms, in plain English
EstimatorAn object whose constructor parameters describe configuration and whose fit method learns state.
How to study this repo
- 1Inspect the estimator protocol
Read base.py, then find how Pipeline exposes and clones nested step parameters.
- 2Follow one CV fold
Trace indices from KFold through _fit_and_score, Pipeline.fit, prediction, and the scorer.