From 407ffc286b9d60a9a32c7ddbceafdbc2ffa789ac Mon Sep 17 00:00:00 2001 From: Patrick von Platen Date: Mon, 15 Feb 2021 11:55:43 +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 223bb47..8057378 100644 --- a/README.md +++ b/README.md @@ -100,7 +100,7 @@ def map_to_pred(batch): batch["transcription"] = transcription return batch -result = librispeech_eval.map(map_to_pred, batched=True, batch_size=16, remove_columns=["speech"]) +result = librispeech_eval.map(map_to_pred, batched=True, batch_size=1, remove_columns=["speech"]) print("WER:", wer(result["text"], result["transcription"])) ```