Automatic Speech Recognition
Transformers
ONNX
Safetensors
English
multilingual
whisper
windyword
english
Instructions to use WindyWord/listen-windy-pro-engine with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use WindyWord/listen-windy-pro-engine with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="WindyWord/listen-windy-pro-engine")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("WindyWord/listen-windy-pro-engine", dtype="auto") - Notebooks
- Google Colab
- Kaggle
Add model card
Browse files
README.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
tags:
|
| 4 |
+
- automatic-speech-recognition
|
| 5 |
+
- whisper
|
| 6 |
+
- windyword
|
| 7 |
+
library_name: transformers
|
| 8 |
+
pipeline_tag: automatic-speech-recognition
|
| 9 |
+
language:
|
| 10 |
+
- en
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# WindyWord.ai STT — Windy Pro Engine
|
| 14 |
+
|
| 15 |
+
Part of the [WindyWord.ai](https://windyword.ai) voice-to-text fleet.
|
| 16 |
+
|
| 17 |
+
## Available Variants
|
| 18 |
+
|
| 19 |
+
- `safetensors/`
|
| 20 |
+
- `ct2-int8/`
|
| 21 |
+
- `onnx/`
|
| 22 |
+
- `onnx-int8/`
|
| 23 |
+
|
| 24 |
+
## Base Model
|
| 25 |
+
|
| 26 |
+
Derived from [openai/whisper-large-v3](https://huggingface.co/openai/whisper-large-v3).
|
| 27 |
+
|
| 28 |
+
Proprietary fine-tuning by WindyWord.ai team using LoRA fog-of-mirror methodology or direct weight perturbation (for distil variants without adapters).
|
| 29 |
+
|
| 30 |
+
## Commercial Use
|
| 31 |
+
|
| 32 |
+
Visit [windyword.ai](https://windyword.ai) for real-time voice-to-text + translation apps and API access.
|
| 33 |
+
|
| 34 |
+
## License
|
| 35 |
+
|
| 36 |
+
Apache 2.0 (inherited from upstream base model).
|
| 37 |
+
|
| 38 |
+
---
|
| 39 |
+
*Certified by Opus 4.6 Opus-Claw (Dr. C). WindyWord.ai quality pipeline.*
|