BrunoHays commited on
Commit
71608ae
·
verified ·
1 Parent(s): eac2c80

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -6
README.md CHANGED
@@ -76,7 +76,7 @@ pipe = AutomaticSpeechRecognitionPipeline(model=model, feature_extractor=process
76
  transcript = pipe("audio_samples/short_rd.wav", return_timestamps=False)
77
  print(transcript)
78
  ```
79
- /!\ As of April 10, 2024, the transformers ASR pipeline doesn't allow predicting word timestamps without generating timestamps, resulting in very unreliable timestamps. It is recommended not to attempt predicting timestamps using this pipeline and model.
80
  openai-whisper:
81
  ```python
82
  import whisper
@@ -102,10 +102,7 @@ segments, info = model.transcribe("long_audio.wav",
102
 
103
  ```
104
 
105
- Whisper.cpp: works out-of-the-box
106
-
107
  ```bash
108
  ./main -f long_audio.wav -l fr -mc 0 -m ggml-model.bin
109
- ```
110
-
111
- # TODO: Insérer tableau de perfs + liens pour les modèles convertis
 
76
  transcript = pipe("audio_samples/short_rd.wav", return_timestamps=False)
77
  print(transcript)
78
  ```
79
+
80
  openai-whisper:
81
  ```python
82
  import whisper
 
102
 
103
  ```
104
 
105
+ Whisper.cpp:
 
106
  ```bash
107
  ./main -f long_audio.wav -l fr -mc 0 -m ggml-model.bin
108
+ ```