This question evaluates understanding of binary classification evaluation metrics—precision, recall, precision–recall curves, and related summaries like Average Precision/AUPRC—within the Machine Learning domain and is relevant for Data Scientist roles.
You are given a binary classifier’s outputs on a dataset:
y_true
: array of true labels in
y_score
: array of predicted scores/probabilities (higher means more likely positive)
y_score
.
thresholds
,
precision
,
recall
Optional: Explain how to compute Average Precision / AUPRC and what the baseline means.
Login required