Instructions to use Hishambarakat/Bahraini_ASR with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Hishambarakat/Bahraini_ASR with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="Hishambarakat/Bahraini_ASR")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Hishambarakat/Bahraini_ASR", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Upload requirements.txt with huggingface_hub
Browse files- requirements.txt +7 -0
requirements.txt
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
torch>=2.6.0
|
| 2 |
+
transformers>=4.56.2
|
| 3 |
+
sentencepiece>=0.2.0
|
| 4 |
+
soundfile>=0.13.1
|
| 5 |
+
librosa>=0.11.0
|
| 6 |
+
numpy>=1.26.0
|
| 7 |
+
huggingface_hub>=0.36.0
|