Question: Deep Learning please help write in Python Problem 2) Threshold-based Classifier. We have a two-class classification problem (i.e., Cl and 22). Each data sample is

Deep Learning
please help write in Python  Deep Learning please help write in Python Problem 2) Threshold-based Classifier.

Problem 2) Threshold-based Classifier. We have a two-class classification problem (i.e., Cl and 22). Each data sample is represented by two attributes (x,y). The three data samples in class Cl Ire {(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 lass 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 thy 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>=ty, 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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!