Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Sharfraz
/
openai-whisper-large-v3-turbo
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Sharfraz
commited on
Nov 26, 2024
Commit
a08a4b1
·
verified
·
1 Parent(s):
f35f8d1
Create 1
Browse files
Files changed (1)
hide
show
1
+7
-0
1
ADDED
Viewed
@@ -0,0 +1,7 @@
1
+
from transformers import pipeline
2
+
3
+
whisper_model = pipeline(
4
+
"automatic-speech-recognition",
5
+
model="openai/whisper-small",
6
+
framework="pt" # Force PyTorch backend
7
+
)