Per-Image Predictions
https://api.roboflow.com/:workspace/model-evals/:evalId/image-predictionscurl "https://api.roboflow.com/my-workspace/model-evals/$EVAL_ID/image-predictions?api_key=$ROBOFLOW_API_KEY&split=test&limit=50"Query parameters
Parameter
Type
Description
Response
{
"split": "test",
"confidenceThreshold": 0.2,
"totalImages": 192,
"offset": 0,
"limit": 50,
"images": [
{
"imageId": "1QKLCUsfAzFiCIb6YCJj",
"imageName": "abc.jpg",
"split": "test",
"augmentations": 2,
"cluster": {
"id": 4,
"embedding2D": [7.494518280029297, -5.143994331359863]
},
"stats": {
"truePositives": 2,
"falsePositives": 7,
"falseNegatives": 0,
"precision": 0.222,
"recall": 1.0,
"f1": 0.364
},
"confusion": [
[0, 0, 2],
[2, 0, 7]
]
}
]
}Notes
Last updated
Was this helpful?