EECS658 Assignment 2 Solved

30.00 $

Category:
Click Category Button to View Your Next Assignment | Homework

You'll get a download link with a: zip solution files instantly, after Payment

Securely Powered by: Secure Checkout

Description

Rate this product

Deliverables:

  1. Copy of Rubric2.docx with your name and ID filled out (do not submit a PDF)
  2. Python source code for CompareMLModels
  3. Screen print showing the successful execution of CompareMLModels 4. Answers to the following questions:
    1. Based on accuracy which model is the best one?
    2. For each of the 6 other models, explain why you think it does not perform as well as the best one.

 

Assignment:

  • For this assignment, we are going to compare how well different ML classifiers classify the iris dataset.
  • Write a Python program called CompareMLModels that does the following:

o Uses 2-fold cross-validation to produce a test set of 150 samples of the iris data set with the following ML models:

  • Linear regression (LinearRegression)
  • Polynomial of degree 2 regression (LinearRegression)
  • Polynomial of degree 3 regression (LinearRegression)
  • Naïve Baysian (GaussianNB)
  • kNN (KNeighborsClassifier)
  • LDA (LinearDiscriminantAnalysis)
  • QDA (QuadraticDiscriminantAnalysis)
  • Remember 2-fold cross-validation involves:
  • Dividing the data set into 2 folds
  • Training the model with fold 1 Testing the model with fold 2
  • Training the model with fold 2
  • Testing the model with fold 1
  • Concatenating the test results from the 2 folds to get a test set of 150 samples.
  • For each of the 7 models the program should display (with a label before each model’s display indicating which model the results are for):
    • Confusion matrix
    • Accuracy metric o If the values in your confusion matrices do not add up to 150, then you did something wrong.
  • Remember: You need to convert the class from strings to integers for training the regression models. Use preprocessing.LabelEncoder() method

or do it in the code brute force. Also, remember, the results of regression need to be converted back to integers before creating the confusion matrix. There are some slides on how to do that, if you don’t remember. You also need to convert the output of the regression from float to integer.

 

Remember:

  • Your Programming Assignments are individual-effort.
  • You can brainstorm with other students and help them work through problems in their programs, but everyone should have their own unique assignment programs.
  • 2-c8zfzd.zip