Vector Analysis
https://api.roboflow.com/:workspace/model-evals/:evalId/vector-analysiscurl "https://api.roboflow.com/my-workspace/model-evals/$EVAL_ID/vector-analysis?api_key=$ROBOFLOW_API_KEY"Query parameters
Parameter
Type
Description
Response
{
"clustering": {
"method": "hdbscan",
"nClusters": 54,
"metrics": {
"noiseRatio": 0.078125,
"silhouetteScore": 0.48925095796585083
},
"parameters": {
"min_cluster_size": 2,
"min_samples": 1,
"cluster_selection_method": "eom",
"metric": "euclidean"
},
"processingTimeSeconds": 8.36
},
"preprocessing": {
"method": "umap",
"originalDimensions": 768,
"targetDimensions": 10,
"nNeighbors": 30,
"minDistance": 0.05
},
"clusters": [
{
"id": -1,
"numImages": 15,
"splitDistribution": { "train": 12, "valid": 2, "test": 1 },
"metrics": {
"f1Mean": 0.462,
"f1Std": 0.219,
"f1Min": 0.129,
"f1Max": 0.8,
"precisionMean": 0.330,
"recallMean": 0.952
},
"sampleImages": ["img1.jpg", "img2.jpg"]
},
{
"id": 0,
"numImages": 3,
"splitDistribution": { "train": 2, "valid": 1 },
"metrics": {
"f1Mean": 0.889,
"f1Std": 0.157,
"f1Min": 0.667,
"f1Max": 1.0,
"precisionMean": 1.0,
"recallMean": 0.833
},
"sampleImages": ["img3.jpg", "img4.jpg", "img5.jpg"]
}
]
}Notes
Last updated
Was this helpful?