Instructions to use JunWorks/Quantized_8bit_WhisperSmallStd_zhTW with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use JunWorks/Quantized_8bit_WhisperSmallStd_zhTW with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="JunWorks/Quantized_8bit_WhisperSmallStd_zhTW")# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("JunWorks/Quantized_8bit_WhisperSmallStd_zhTW") model = AutoModelForMultimodalLM.from_pretrained("JunWorks/Quantized_8bit_WhisperSmallStd_zhTW") - Notebooks
- Google Colab
- Kaggle
Update requirements.txt
Browse files- requirements.txt +2 -1
requirements.txt
CHANGED
|
@@ -1 +1,2 @@
|
|
| 1 |
-
bitsandbytes
|
|
|
|
|
|
| 1 |
+
bitsandbytes
|
| 2 |
+
accelerate
|