Automatic Speech Recognition
PEFT
Safetensors
Wolof
French
English
Generated from Trainer
multilingual
ASR
Open-Source
Eval Results (legacy)
Instructions to use CAYTU/whosper-large-v2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use CAYTU/whosper-large-v2 with PEFT:
from peft import PeftModel from transformers import AutoModelForSeq2SeqLM base_model = AutoModelForSeq2SeqLM.from_pretrained("openai/whisper-large-v2") model = PeftModel.from_pretrained(base_model, "CAYTU/whosper-large-v2") - Notebooks
- Google Colab
- Kaggle
update package installation
Browse files
README.md
CHANGED
|
@@ -87,7 +87,15 @@ This diversity ensures the model excels across:
|
|
| 87 |
|
| 88 |
### Installation
|
| 89 |
```bash
|
| 90 |
-
pip install
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 91 |
```
|
| 92 |
|
| 93 |
### Basic Usage
|
|
|
|
| 87 |
|
| 88 |
### Installation
|
| 89 |
```bash
|
| 90 |
+
pip install whosper
|
| 91 |
+
```
|
| 92 |
+
for speed
|
| 93 |
+
```bash
|
| 94 |
+
uv pip install whosper
|
| 95 |
+
```
|
| 96 |
+
from the source
|
| 97 |
+
```bash
|
| 98 |
+
pip install git+https://github.com/sudoping01/whosper.git
|
| 99 |
```
|
| 100 |
|
| 101 |
### Basic Usage
|