Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Problem 3 ( 2 0 pts ) Program: Code up a k - nearest - neighbor classifier. Your codes should include two files. One file
Problem
pts Program: Code up a nearestneighbor classifier. Your codes should include two files. One file is
the classifier function, which has the following four input arguments:
new: input variable for the test data set.
: input variable values for the training data set.
: output labels for the training data set.
: neighborhood size.
The output of the kNN classifier function should be the prediction results of the test data set. The other
code file should be the "main" file, which includes
LoadingReading the training and test data sets.
Calling the kNN classifier function and return the prediction results. Specify three values:
and
Figure : Training Data Set
You should submit:
Three plots of the test data set with the predicted results colored as shown in Figure
Two files of codes. Don't submit the data sets.
The training and test data sets can be downloaded from Blackboard. You can use Python, MATLAB, or R
Python is preferred. Moreover, you can put the two functions in a Jupyter Notebook.
Technical support can be also extended to MATLAB. However R is limited
Reminder: Your final project will be based on Python, please start using Python as early as possible.
In the training data trainingdata.txt the first two columns from left to right are input variables, the
last column is the output label. In the test data testdata.txt all the two columns are input variables.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started