Skip to content
Snippets Groups Projects
Commit 3cabf475 authored by Marcin Wątroba's avatar Marcin Wątroba
Browse files

Add metric calculator

parent f8e0ba07
Branches
No related tags found
No related merge requests found
......@@ -31,5 +31,5 @@ if __name__ == '__main__':
parser = argparse.ArgumentParser()
parser.add_argument("--prefetch_count")
args = parser.parse_args()
process_queue('asr_benchmark_experiments', process_message,
process_queue('metric_stats_calculate', process_message,
1 if args.prefetch_count in [None, ''] else int(args.prefetch_count))
......@@ -30,8 +30,7 @@ def process_message(body: bytes):
elif task == 'run_spacy_pos_wer_pipeline':
run_spacy_pos_wer_pipeline(dataset, asr_name)
elif task == 'run_wikineural_ner_pipeline':
# run_wikineural_ner_pipeline(dataset, asr_name)
print('run_wikineural_ner_pipeline --- skip')
run_wikineural_ner_pipeline(dataset, asr_name)
elif task == 'run_flair_upos_multi_pipeline':
run_flair_upos_multi_pipeline(dataset, asr_name)
else:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment