Software-Engineering


# Features ?

ML-Algorithms prefer numerical inputs instead of text (strings). We use Feature-Engineering to convert these numerical inputs in human-readable text.


# One-Hot-Encoding

Is used when working with categorical variables:

CarColor
BWMBlue
AudiRed
TeslaWhite
When you want to give a model a feature, assign numbers to these categorical variables:
CarBlueRedWhite
BMW100
Audi010
Tesla001