Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Looking for PYTHON programming help please Problem 2) Threshold-based Classifier. We have a two-class classification problem (i.e., C1 and C2). Each data sample is represented

Looking for PYTHON programming help please

image text in transcribed

Problem 2) Threshold-based Classifier. We have a two-class classification problem (i.e., C1 and C2). Each data sample is represented by two attributes (x,y). The three data samples in class C1 re {(2,3),(3,3),(3,4),(1,4),(4,1),(4,3)} and {(0,0),(0,3),(1,1),(1,2),(2,1),(2,2)} in class C2. Perform the followings in Python: a) Plot the data samples. The data points in classes C1 and C2 must be in two different colors and shapes. Label the axes and add legends as appropriate. b) The code asks the user to enter two thresholds thx and thy. c) The code needs to use appropriate conditions to prevent common errors such as entering characters instead of numbers etc. d) Your code calculates and prints the training accuracy based on the user-entered thresholds. To do so, assume that for any data point (x,y) with x>=thx and y>=thy, the data sample belongs to class C1, and C2 if otherwise. Using this rule and the userentered thresholds, the code calculates the classification accuracy for the six data samples. The classification accuracy is defined as the number of correctly classified data points divided by the total number of data points ( 12 here). e) Plot the data samples, the selected thx, and the thx lines. f) Create a loop to continuously repeat parts (d) to (e) and enter different sets of thresholds each time. g) The program will exit the loop once the user writes ' x ' as an input for either threshold. h) Based on your observation from the results above, what is a suitable set of thresholds that will give the highest accuracy? Report your suggested thresholds and the corresponding classification accuracy. i) Tip: create separate functions for threshold entry, classification, accuracy calculation and plotting. Set the x and y axes ranges between [1,5] in your plots

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

Modern Database Management

Authors: Jeff Hoffer, Ramesh Venkataraman, Heikki Topi

12th edition

133544613, 978-0133544619

More Books

Students also viewed these Databases questions

Question

differentiate the function ( x + 1 ) / ( x ^ 3 + x - 6 )

Answered: 1 week ago