A/B Test
A/B Test is a systematic method to compare two or more variations of a pipeline.
Execute Test
rules = EventABTestRules()
rules.add(metric="difference_percentage", IoU=0.5, _class="ALL", threshold=50.0, conf_threshold=0.2)
filters = Filter()
filters.add(TimestampFilter(gte="2021-01-01T00:00:00Z", lte="2025-01-15T00:00:00Z"))
model_comparison_check = event_ab_test(test_session=test_session,
dataset_name="bdd_video_test_1",
test_name=f"AB-test-unlabelled-{datetime.datetime.now().strftime('%Y%m%d%H%M%S')}",
modelB="Red_Light_V2",
modelA="Red_Light_V1",
object_detection_modelB="Red_Light_V2",
object_detection_modelA="Red_Light_V1",
type="metadata",
sub_type="unlabelled",
output_type="event_detection",
rules=rules,
aggregation_level=["weather"],
filter=filters)
test_session.add(model_comparison_check)
test_session.run()
Analysing Test Results
Navigating and Interpreting Results


Practical Tips
Last updated
Was this helpful?


