Failure Mode Analysis
Analyze segmentation model errors. Identify recurring weaknesses to improve performance.
Execute Test
rules = FMARules()
rules.add(metric = "F1Score", metric_threshold = 0.86, label = "ALL", type="label", background_label="Unlabelled", include_background=False)
rules.add(metric = "Precision", metric_threshold = 0.86, label = "ALL", type="label", background_label="Unlabelled", include_background=True)
rules.add(metric = "wIoU", metric_threshold = 0.5, weights={"Road": 100, "Unlabelled": 1}, type="label", label = "ALL")
cls_default = clustering(method="k-means", embedding_col="ImageVectorsM1", level="image", args={"numOfClusters": 7})
edge_case_detection = failure_mode_analysis(test_session=test_session,
dataset_name = "satellite_image_dataset",
test_name = "Test",
model = "ModelB",
gt = "ModelA",
rules = rules,
output_type="semantic_segmentation",
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?

