If we dont have access to model and have just actual and predicted labels without probabilities, is it still be possible to plot AUC/ROC curve.
For example can we have the curve from the following information (>1000 values in array in actual)
actual = ["C1","C1","C2","C1","C2"]
predicted = ["C2","C1","C2","C1","C1"]
Or is it necessary to have access to probabilities instead of predicted labels?