Failure Mode Analysis
Analyze failure modes in object detection. Spot recurring errors and refine models.
Execute Test
rules = FMARules()
rules.add(metric="Precision", conf_threshold=0.4, metric_threshold=0.40, iou_threshold=0.4, label="ALL")
rules.add(metric="F1Score", conf_threshold=0.4, metric_threshold=0.40, iou_threshold=0.4, label="ALL")
rules.add(metric="Recall", conf_threshold=0.4, metric_threshold=0.40, iou_threshold=0.4, label="ALL")
cls_default = clustering(test_session=test_session, dataset_name = "fma_val_1", method="k-means", embedding_col="ImageVectorsM1", level="image", args= {"numOfClusters": 6}, force=True)
edge_case_detection = failure_mode_analysis(test_session=test_session,
dataset_name = "bdd_dataset",
test_name = "Failure Mode Analysis",
model = "ModelA",
gt = "GT",
rules = rules,
output_type="object_detection",
type="embedding",
clustering=cls_default
)
test_session.add(edge_case_detection)
test_session.run()
Analysing Test Results

Navigating and Interpreting Results


Practical Tips
Last updated
Was this helpful?


