From b28761de82ffe574038b8a2306bf8992e04bffcd Mon Sep 17 00:00:00 2001 From: Arthur Zucker Date: Mon, 10 Oct 2022 09:20:17 +0000 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c00b4e4..71fd19d 100644 --- a/README.md +++ b/README.md @@ -124,7 +124,7 @@ model-index: metrics: - name: Test WER type: wer - value: 7,639504403417127 + value: 0.07547098647858638 - task: name: Automatic Speech Recognition type: automatic-speech-recognition @@ -138,7 +138,7 @@ model-index: metrics: - name: Test WER type: wer - value: 17,145720661094513 + value: 0.17145720661094513 pipeline_tag: automatic-speech-recognition license: apache-2.0 --- @@ -306,7 +306,7 @@ This code snippet shows how to evaluate **openai/whisper-tiny** on LibriSpeech's >>> result = librispeech_eval.map(map_to_pred, batched=True, batch_size=1, remove_columns=["speech"]) >>> print("WER:", wer(result["text"], result["transcription"])) -0.07639504403417127 +0.07547098647858638 ```