Skill · Shaping inputs that models loveLive
Feature Engineering
The work that moves the needle more than the model: encoding, scaling, binning, interactions, and leak-free pipelines.
- Task 1Encode categoriesEasyTurn ordered text labels into numbers a model can use.→
- Task 2One-hot encodingEasyFor unordered categories, give each its own 0/1 column.→
- Task 3Scale numeric featuresEasySqueeze numbers into a fixed [0, 1] range.→
- Task 4Impute missing valuesMediumFill gaps with a robust statistic so models don't choke.→
- Task 5Bin continuous valuesMediumTurn a number into meaningful buckets.→
- Task 6Interaction & polynomialMediumManufacture squared and interaction terms automatically.→
- Task 7Date featuresMediumCrack a timestamp open into useful parts.→
- Task 8Text to featuresHardTurn raw sentences into a numeric word-count matrix.→
- Task 9Select the best featuresHardKeep only the columns that actually carry signal.→
- Task 10A leak-free pipelineHardApply different transforms to different columns, leak-free.→