Question 29
Consider following common data:
print("Classification Report:\n", classification_report(y_test, y_pred))Classification Report: precision recall f1-score support
0 1.00 0.33 0.50 3 1 0.97 1.00 0.99 73
accuracy 0.97 76 macro avg 0.99 0.67 0.74 76weighted avg 0.97 0.97 0.97 76Consider the above classification report on a model where y_test contains the original labels and y_pred contains the predicted labels.
Based on the above data, answer the given subquestions.
How many points belong to class 1 in the original dataset?