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"])) ```