Instructions to use nyralabs/CrisperWhisper with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use nyralabs/CrisperWhisper with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="nyralabs/CrisperWhisper")# Load model directly from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq processor = AutoProcessor.from_pretrained("nyralabs/CrisperWhisper") model = AutoModelForSpeechSeq2Seq.from_pretrained("nyralabs/CrisperWhisper", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Deprecation notice: superseded by CrisperWhisper2.0_large
Browse files
README.md
CHANGED
|
@@ -9,9 +9,15 @@ metrics:
|
|
| 9 |
- wer
|
| 10 |
pipeline_tag: automatic-speech-recognition
|
| 11 |
library_name: transformers
|
|
|
|
| 12 |
---
|
| 13 |
# CrisperWhisper
|
| 14 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
**CrisperWhisper** is an advanced variant of OpenAI's Whisper, designed for fast, precise, and verbatim speech recognition with accurate (**crisp**) word-level timestamps. Unlike the original Whisper, which tends to omit disfluencies and follows more of a intended transcription style, CrisperWhisper aims to transcribe every spoken word exactly as it is, including fillers, pauses, stutters and false starts. Checkout our repo for more details: https://github.com/nyrahealth/CrisperWhisper
|
| 16 |
|
| 17 |
## Key Features
|
|
|
|
| 9 |
- wer
|
| 10 |
pipeline_tag: automatic-speech-recognition
|
| 11 |
library_name: transformers
|
| 12 |
+
new_version: nyralabs/CrisperWhisper2.0_large
|
| 13 |
---
|
| 14 |
# CrisperWhisper
|
| 15 |
|
| 16 |
+
> ⚠️ **Deprecation notice**
|
| 17 |
+
>
|
| 18 |
+
> CrisperWhisper (v1) is superseded by **[CrisperWhisper 2.0](https://huggingface.co/nyralabs/CrisperWhisper2.0_large)** and is no longer actively maintained. CrisperWhisper 2.0 has much better verbatim accuracy and 3-5x faster inference, keeps the crisp word-level timestamps, and adds intended mode, hotwords, verbatimize, seamless longform, and speculative decoding. Install it with `pip install crisperwhisper` — the [`crisperwhisper` package](https://pypi.org/project/crisperwhisper/) still runs this v1 model too, easing migration. Details: [github.com/nyrahealth/CrisperWhisper](https://github.com/nyrahealth/CrisperWhisper).
|
| 19 |
+
|
| 20 |
+
|
| 21 |
**CrisperWhisper** is an advanced variant of OpenAI's Whisper, designed for fast, precise, and verbatim speech recognition with accurate (**crisp**) word-level timestamps. Unlike the original Whisper, which tends to omit disfluencies and follows more of a intended transcription style, CrisperWhisper aims to transcribe every spoken word exactly as it is, including fillers, pauses, stutters and false starts. Checkout our repo for more details: https://github.com/nyrahealth/CrisperWhisper
|
| 22 |
|
| 23 |
## Key Features
|