Slide 24
Slide 24 text
Say Hello to Machine Learning:
Definition and Its Derivatives
Input:
Height = [145,154,177,150,170]
Static Program: IF Logic
IF Height < 150 then Short
IF Height >= 150 or Height <= 175
then Average
IF Height > 175 then Tall
Output:
[Short, Average, Tall, Average,
Average]
Input:
Height = [145,154,177,150,170]
Classification_Label = [Short,
Average, Tall, Average, Average]
Machine Learning Algorithm:
Train the Model using Height and
Classification_Label
Prediction using Trained ML Model:
New Height = 190
New Classification Label = Tall
Traditional Programming Machine Learning Programming