01-120 pointsl- Consider a machine learning algorithm that predicts whether someone is overweight of based on that perso
Posted: Sat May 14, 2022 6:40 pm
01-120 pointsl- Consider a machine learning algorithm that predicts whether someone is overweight of based on that person's weight and height. Assume that we are applying the Perceptron algorithm and using the following training data: Weight Height Overweight? 50 1.6 No 60 1.7 No 70 1.9 No 70 1.5 Yes 80 1.7 Yes 90 1.6 Yes Consider the following perceptrons: hi(x) = 0.3 * weight - 10 * height + 1 h2(x) = 0.2 * weight - 10 * height + 3 h3(x) = weight - 50 h4(x) = height – 1.8 Which perceptron is a better classifier for the training data? Why?