Solved

Which of the Following Statements Is False

Question 46

Multiple Choice

Which of the following statements is false?


A) Another way to check a classification estimator's accuracy is via a confusion matrix, which shows only the incorrect predicted values (also known as the misses) for a given class.
B) To create a confusion matrix imply call the function confusion_matrix from the sklearn.metrics module, passing the expected classes and the predicted classes as arguments, as in: from sklearn.metrics import confusion_matrix
Confusion = confusion_matrix(y_true=expected, y_pred=predicted)
C) The y_true keyword argument in Part (b) specifies the test samples' actual classes.
D) The y_pred keyword argument in Part (b) specifies the predicted classes for the test samples.

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions