1. Preparing ML Training Data
Data ScientistBackground
A dataset contains features like 'Age' (0-100) and 'Annual Salary' (20k-200k). The large difference in scale is causing the machine learning model to bias toward salary.
Problem
The model needs features on a uniform scale to perform accurately.
How to use
Upload the CSV, select 'Age' and 'Salary' columns, and set the output range to 0-1.
targetColumns: Age, Salary; outputRange: 0, 1; handleMissing: fill_meanOutcome
Both features are scaled to a 0-1 range, allowing the model to weigh both variables equally during training.