Posts

Showing posts with the label K-nearest neighbors quiz

Supervised Learning Quiz

 Supervised Learning Quiz 1. Regression Modeling Quiz Ques 1: Logistic Regression requires that data meet certain Assumptions Answer: FALSE Feedback Linear regression, not logistic regression requires that the data it's used on meet certain assumptions. It assumes a linear relationship between continuous variables. Ques 2:  What is NOT a typical task in Data Cleaning? Answer: predicting outcomes Ques 3:  What sample of data should you use to assess if your Machine Learning Model has been trained properly? Answer: testing set Feedback Spot on! The testing set is used to first measure how well a model learns from the training set and the validation set is used to further tune model hyperparameters. Ques 4:  Logistic Regression models can predict numerical and categorical outcomes. Answer: TRUE You got it! While linear regression can only be used to predict continuous, numerical outcomes, logistic regression can predict both categorical and numerical responses. Ques 5:...