Failure Mode Analysis
Failure Mode Analysis is a test that allows users to deeply analyse the pipeline performance.
Execute Test
rules = FMARules()
rules.add(metric="Precision", conf_threshold=0.2, metric_threshold=0.5, iou_threshold=0.5, frame_overlap_threshold=0.5, label="ALL")
rules.add(metric="Recall", conf_threshold=0.2, metric_threshold=0.5, iou_threshold=0.5, frame_overlap_threshold=0.5, label="ALL")
rules.add(metric="F1Score", conf_threshold=0.2, metric_threshold=0.5, iou_threshold=0.5, frame_overlap_threshold=0.5, label="ALL")
edge_case_detection = failure_mode_analysis(test_session=test_session,
dataset_name = "bdd_video_test_2",
test_name = f"FMAEventMD-{datetime.datetime.now().strftime('%Y%m%d%H%M%S')}",
gt="GT",
model="Red_Light_V2",
object_detection_gt="GT",
object_detection_model="Red_Light_V2",
rules = rules,
output_type="event_detection",
type="metadata",
aggregation_level=["weather","time_of_day"])
test_session.add(edge_case_detection)
test_session.run()
Analysing Test Results
Navigating and Interpreting Results


Practical Tips
Last updated
Was this helpful?


