From de92142986804ec781a8ad053095c7728f4318be Mon Sep 17 00:00:00 2001 From: Daniel Date: Thu, 6 Feb 2020 13:31:30 +0100 Subject: [PATCH] Named example sections. --- util/evaluate_tools.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/util/evaluate_tools.py b/util/evaluate_tools.py index 1a8c7638..2bef89b3 100644 --- a/util/evaluate_tools.py +++ b/util/evaluate_tools.py @@ -95,13 +95,14 @@ def print_report(samples): print(' - res: "%s"' % sample.res) print('-' * 80) + print('Best WER:', '\n' + '-' * 80) for s in best_samples: print_single_sample(s) - print('[...]', '\n' + '-' * 80) + print('Median WER:', '\n' + '-' * 80) for s in median_samples: print_single_sample(s) - print('[...]', '\n' + '-' * 80) + print('Worst WER:', '\n' + '-' * 80) for s in worst_samples: print_single_sample(s)