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?
C1and another with all the predictionsC2. Whether you think three points leading to two line-segments is really an ROC curve is up to you; I would say probably not, as I think you should be adjusting discrimination thresholds with a little more sophistication than this – Henry Aug 05 '20 at 14:39actualandpredicted? – A.B Aug 06 '20 at 03:30