Skip to content

Commit 95cff5a

Browse files
committed
Fix print metrics thresholds
Signed-off-by: Flavia Beo <flavia.beo@ibm.com>
1 parent 34116ca commit 95cff5a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/resources/get_thresholds.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,4 @@
4949
for line in file:
5050
metric_list.append(float(line))
5151
print(f"found {len(metric_files)} metric files")
52-
if metric == "diff_mean":
53-
print(model, metric, np.percentile(metric_list, 99.0))
52+
print(model, metric, np.percentile(metric_list, 99.0))

0 commit comments

Comments
 (0)