patrickvonplaten commited on
Commit
0c9616b
1 Parent(s): 92b233d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -0
README.md CHANGED
@@ -59,4 +59,5 @@ To transcribe audio files the model can be used as a standalone acoustic model a
59
  # take argmax and decode
60
  predicted_ids = torch.argmax(logits, dim=-1)
61
  transcription = processor.batch_decode(predicted_ids)
 
62
  ```
 
59
  # take argmax and decode
60
  predicted_ids = torch.argmax(logits, dim=-1)
61
  transcription = processor.batch_decode(predicted_ids)
62
+ # => should give ['m ɪ s t ɚ k w ɪ l t ɚ ɹ ɪ z ð ɪ ɐ p ɑː s əl ʌ v ð ə m ɪ d əl k l æ s ᵻ z æ n d w iː ɑːɹ ɡ l æ d t ə w ɛ l k ə m h ɪ z ɡ ɑː s p əl']
63
  ```