Match Error Rate¶
Module Interface¶
- class torchmetrics.MatchErrorRate(**kwargs)[source]
Match Error Rate (MER) is a common metric of the performance of an automatic speech recognition system.
This value indicates the percentage of words that were incorrectly predicted and inserted. The lower the value, the better the performance of the ASR system with a MatchErrorRate of 0 being a perfect score. Match error rate can then be computed as:
- where:
is the number of substitutions,
is the number of deletions,
is the number of insertions,
is the number of correct words,
is the number of words in the reference (
).
As input to
forward
andupdate
the metric accepts the following input:preds
(List
): Transcription(s) to score as a string or list of stringstarget
(List
): Reference(s) for each speech input as a string or list of strings
As output of
forward
andcompute
the metric returns the following output:mer
(Tensor
): A tensor with the match error rate
- Parameters
kwargs¶ (
Any
) – Additional keyword arguments, see Advanced metric settings for more info.
Examples
>>> preds = ["this is the prediction", "there is an other sample"] >>> target = ["this is the reference", "there is another one"] >>> mer = MatchErrorRate() >>> mer(preds, target) tensor(0.4444)
Initializes internal Module state, shared by both nn.Module and ScriptModule.
Functional Interface¶
- torchmetrics.functional.match_error_rate(preds, target)[source]
Match error rate is a metric of the performance of an automatic speech recognition system. This value indicates the percentage of words that were incorrectly predicted and inserted. The lower the value, the better the performance of the ASR system with a MatchErrorRate of 0 being a perfect score.
- Parameters
- Return type
- Returns
Match error rate score
Examples
>>> preds = ["this is the prediction", "there is an other sample"] >>> target = ["this is the reference", "there is another one"] >>> match_error_rate(preds=preds, target=target) tensor(0.4444)