├── .gitignore ├── LICENSE ├── README.md ├── evaluation ├── README.md ├── calculate_metrics.py ├── example_asr_results.jsonl ├── prepare_asr_result_for_metrics.py ├── utils.py └── view_metric_result.py ├── figure └── ContextASR-Bench_MainFigure.png └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSupW/ContextASR-Bench/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSupW/ContextASR-Bench/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSupW/ContextASR-Bench/HEAD/README.md -------------------------------------------------------------------------------- /evaluation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSupW/ContextASR-Bench/HEAD/evaluation/README.md -------------------------------------------------------------------------------- /evaluation/calculate_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSupW/ContextASR-Bench/HEAD/evaluation/calculate_metrics.py -------------------------------------------------------------------------------- /evaluation/example_asr_results.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSupW/ContextASR-Bench/HEAD/evaluation/example_asr_results.jsonl -------------------------------------------------------------------------------- /evaluation/prepare_asr_result_for_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSupW/ContextASR-Bench/HEAD/evaluation/prepare_asr_result_for_metrics.py -------------------------------------------------------------------------------- /evaluation/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSupW/ContextASR-Bench/HEAD/evaluation/utils.py -------------------------------------------------------------------------------- /evaluation/view_metric_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSupW/ContextASR-Bench/HEAD/evaluation/view_metric_result.py -------------------------------------------------------------------------------- /figure/ContextASR-Bench_MainFigure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSupW/ContextASR-Bench/HEAD/figure/ContextASR-Bench_MainFigure.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | regex 2 | pandas 3 | contractions 4 | editdistance 5 | --------------------------------------------------------------------------------