A model trained on bad data makes bad predictions with great confidence. That is why data work is most of the job in real ML projects. Think of data as the recipe and the model as the cake: no recipe tweak fixes rotten eggs.
What makes data "good"?
- Accurate — labels actually match reality.
- Representative — it looks like the world the model will meet.
- Balanced — enough examples of every category you care about.
- Clean — duplicates, typos, and mislabeled rows removed.
The next lessons make this personal: you’ll train a real classifier and then watch what happens when the data behind it is skewed.