├── .github └── workflows │ ├── pythonpackage.yml │ └── pythonpublish.yml ├── .gitignore ├── .mailmap ├── LICENSE ├── README.md ├── docs ├── cli.md ├── gen_ref_pages.py ├── index.md ├── requirements.txt └── usage.md ├── justfile ├── mkdocs.yml ├── pyproject.toml ├── src └── jiwer │ ├── __init__.py │ ├── alignment.py │ ├── cli.py │ ├── measures.py │ ├── process.py │ ├── py.typed │ ├── transformations.py │ └── transforms.py └── tests ├── __init__.py ├── test_alignment.py ├── test_cer.py ├── test_count_errors.py ├── test_empty_ref.py ├── test_large_vocab.py ├── test_measures.py ├── test_speed.py └── test_transforms.py /.github/workflows/pythonpackage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi/jiwer/HEAD/.github/workflows/pythonpackage.yml -------------------------------------------------------------------------------- /.github/workflows/pythonpublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi/jiwer/HEAD/.github/workflows/pythonpublish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi/jiwer/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi/jiwer/HEAD/.mailmap -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi/jiwer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi/jiwer/HEAD/README.md -------------------------------------------------------------------------------- /docs/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi/jiwer/HEAD/docs/cli.md -------------------------------------------------------------------------------- /docs/gen_ref_pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi/jiwer/HEAD/docs/gen_ref_pages.py -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi/jiwer/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi/jiwer/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi/jiwer/HEAD/docs/usage.md -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi/jiwer/HEAD/justfile -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi/jiwer/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi/jiwer/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/jiwer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi/jiwer/HEAD/src/jiwer/__init__.py -------------------------------------------------------------------------------- /src/jiwer/alignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi/jiwer/HEAD/src/jiwer/alignment.py -------------------------------------------------------------------------------- /src/jiwer/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi/jiwer/HEAD/src/jiwer/cli.py -------------------------------------------------------------------------------- /src/jiwer/measures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi/jiwer/HEAD/src/jiwer/measures.py -------------------------------------------------------------------------------- /src/jiwer/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi/jiwer/HEAD/src/jiwer/process.py -------------------------------------------------------------------------------- /src/jiwer/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/jiwer/transformations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi/jiwer/HEAD/src/jiwer/transformations.py -------------------------------------------------------------------------------- /src/jiwer/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi/jiwer/HEAD/src/jiwer/transforms.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_alignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi/jiwer/HEAD/tests/test_alignment.py -------------------------------------------------------------------------------- /tests/test_cer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi/jiwer/HEAD/tests/test_cer.py -------------------------------------------------------------------------------- /tests/test_count_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi/jiwer/HEAD/tests/test_count_errors.py -------------------------------------------------------------------------------- /tests/test_empty_ref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi/jiwer/HEAD/tests/test_empty_ref.py -------------------------------------------------------------------------------- /tests/test_large_vocab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi/jiwer/HEAD/tests/test_large_vocab.py -------------------------------------------------------------------------------- /tests/test_measures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi/jiwer/HEAD/tests/test_measures.py -------------------------------------------------------------------------------- /tests/test_speed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi/jiwer/HEAD/tests/test_speed.py -------------------------------------------------------------------------------- /tests/test_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jitsi/jiwer/HEAD/tests/test_transforms.py --------------------------------------------------------------------------------