Evaluate your speech-to-text system with similarity measures such as word error rate (WER)
Project description
JiWER
JiWER is a simple and fast python package to evaluate an automatic speech recognition system. It supports the following measures:
- word error rate (WER)
- match error rate (MER)
- word information lost (WIL)
- word information preserved (WIP)
- character error rate (CER)
These measures are computed with the use of the minimum-edit distance between one or more reference and hypothesis sentences. The minimum-edit distance is calculated using RapidFuzz, which uses C++ under the hood, and is therefore faster than a pure python implementation.
Documentation
For further info, see the documentation at jitsi.github.io/jiwer.
Installation
You should be able to install this package using poetry:
$ poetry add jiwer
Or, if you prefer old-fashioned pip and you're using Python >= 3.7
:
$ pip install jiwer
Usage
The most simple use-case is computing the word error rate between two strings:
from jiwer import wer
reference = "hello world"
hypothesis = "hello duck"
error = wer(reference, hypothesis)
Licence
The jiwer package is released under the Apache License, Version 2.0
licence by 8x8.
For further information, see LICENCE
.
Reference
For a comparison between WER, MER and WIL, see:
Morris, Andrew & Maier, Viktoria & Green, Phil. (2004). From WER and RIL to MER and WIL: improved evaluation measures for connected speech recognition.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file jiwer-3.0.5.tar.gz
.
File metadata
- Download URL: jiwer-3.0.5.tar.gz
- Upload date:
- Size: 17.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.4 CPython/3.12.7 Linux/6.5.0-1025-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4a215a774b6a2ad92838bfc9f64f072709557af48e3eb9d6bdbcee6819535b2d |
|
MD5 | dd05a960689dd53b7866d5aa427b2bb2 |
|
BLAKE2b-256 | 423799f800e78b9cff2b6c404812e33641b6b6b5b94088081e6a28548094e46f |
File details
Details for the file jiwer-3.0.5-py3-none-any.whl
.
File metadata
- Download URL: jiwer-3.0.5-py3-none-any.whl
- Upload date:
- Size: 22.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.4 CPython/3.12.7 Linux/6.5.0-1025-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5a55758fd1ed0b46a04e51eae6325ad77810511d1372dcbb2333ec8d5850f7b2 |
|
MD5 | 99bc013406b0ea0763b871150069e1b0 |
|
BLAKE2b-256 | dc7f00bec152973661ea89628490367fa3058d7f56d51d2c1ad02a44589d12cd |