Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Building Database Driven Catalogs

Authors: Sherif Danish

1st Edition

0070153078, 978-0070153073

More Books

Students also viewed these Databases questions

Question

Discuss emerging discourse on social class

Answered: 1 week ago