From 205e8c37b1835d3c5e71899b8efc7b9b7ecab7e9 Mon Sep 17 00:00:00 2001 From: Patrick von Platen Date: Tue, 12 Apr 2022 09:28:22 +0000 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8390a82..51c2c7e 100644 --- a/README.md +++ b/README.md @@ -97,7 +97,7 @@ def map_to_pred(batch): batch["transcription"] = transcription return batch -result = librispeech_eval.map(map_to_pred, remove_columns=["speech"]) +result = librispeech_eval.map(map_to_pred, remove_columns=["audio"]) print("WER:", wer(result["text"], result["transcription"])) ```