Question: Question: Exercise 2.4 Predict samples Make prediction on some unseen data. Use your model to predict the species of the following two random observations. Note:
Question: Exercise 2.4 Predict samples
Make prediction on some unseen data. Use your model to predict the species of the following two random observations.
Note: 0:'setosa',1:'versicolor',2:'virginica'
Code:
x_new = [[3,4,5,2],[5,4,2,2]]
species_dict = {0:'setosa',1:'versicolor',2:'virginica'} knn.predict(x_new)
Output: array([1, 0])
The code is not complete. I need help with trying to finish the coding.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
