Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions tools/ab_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,9 +211,6 @@ def analyze_data(
), "A and B run produced incomparable data. This is a bug in the test!"

for metric, (values_a, unit) in metrics_a.items():
print(
f"Doing A/B-test for dimensions {dimension_set} and property {metric}"
)
result = check_regression(
values_a, metrics_b[metric][0], n_resamples=n_resamples
)
Expand Down Expand Up @@ -269,6 +266,8 @@ def analyze_data(
if is_ignored(dict(dimension_set)):
continue

print(f"Doing A/B-test for dimensions {dimension_set} and property {metric}")

values_a = processed_emf_a[dimension_set][metric][0]
baseline_mean = statistics.mean(values_a)

Expand Down
Loading