diff --git a/scripts/ci/e2e_benchmark.py b/scripts/ci/e2e_benchmark.py index e380d45dc..3fae7991b 100644 --- a/scripts/ci/e2e_benchmark.py +++ b/scripts/ci/e2e_benchmark.py @@ -79,7 +79,6 @@ class BenchmarkRunner: raise Exception(f"Unknown benchmark: {benchmark_name}") def calculate_confidence_interval(data): - print('Data: ', data.shape) assert len(data) == 5, f"Shape: {data.shape}" mean = np.mean(data) std_err = np.std(data, ddof=1) / np.sqrt(len(data))