Skip to content

Commit a44ebf3

Browse files
committed
Update README.md
1 parent cc2d6bf commit a44ebf3

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -370,12 +370,14 @@ Docstrings:
370370

371371
<br>
372372
<details>
373-
<summary>faster-whisper</summary>
373+
<summary>Faster-Whisper</summary>
374374

375-
Use with [faster-whisper](https://github.com/guillaumekln/faster-whisper):
375+
Use with [Faster-Whisper](https://github.com/guillaumekln/faster-whisper):
376376
```
377377
pip install -U stable-ts[fw]
378378
```
379+
* [Refinement](#refinement) is not supported on Faster-Whisper models
380+
* [Alignment](#alignment) is slower on Faster-Whisper models than on vanilla models (i.e. ones loaded with `stable_whisper.load_model()`)
379381
```python
380382
model = stable_whisper.load_faster_whisper('base')
381383
result = model.transcribe_stable('audio.mp3')
@@ -508,6 +510,7 @@ Run Whisper up to 9x faster with [Hugging Face Transformer](https://huggingface.
508510
```
509511
pip install -U stable-ts[hf]
510512
```
513+
* [Alignment](#alignment) and [Refinement](#refinement) are not supported on Hugging Face models
511514
```python
512515
model = stable_whisper.load_hf_whisper('base')
513516
result = model.transcribe('audio.mp3')

0 commit comments

Comments
 (0)