Instructions to use katuni4ka/tiny-random-whisper with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use katuni4ka/tiny-random-whisper with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="katuni4ka/tiny-random-whisper")# Load model directly from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq processor = AutoProcessor.from_pretrained("katuni4ka/tiny-random-whisper") model = AutoModelForSpeechSeq2Seq.from_pretrained("katuni4ka/tiny-random-whisper") - Notebooks
- Google Colab
- Kaggle
Update generation_config.json
Browse files- generation_config.json +1 -1
generation_config.json
CHANGED
|
@@ -244,5 +244,5 @@
|
|
| 244 |
"transcribe": 50359,
|
| 245 |
"translate": 50358
|
| 246 |
},
|
| 247 |
-
"transformers_version": "4.
|
| 248 |
}
|
|
|
|
| 244 |
"transcribe": 50359,
|
| 245 |
"translate": 50358
|
| 246 |
},
|
| 247 |
+
"transformers_version": "4.31.0.dev0"
|
| 248 |
}
|