Spaces:
Runtime error
Runtime error
matiasr1608
commited on
Commit
·
64f9d43
1
Parent(s):
2e583cc
changed model size
Browse files
app.py
CHANGED
@@ -2,7 +2,7 @@ from transformers import pipeline
|
|
2 |
import base64
|
3 |
import gradio as gr
|
4 |
|
5 |
-
model_id = "openai/whisper-
|
6 |
#model_id ="openai/whisper-tiny"
|
7 |
pipe = pipeline("automatic-speech-recognition", model=model_id)
|
8 |
|
|
|
2 |
import base64
|
3 |
import gradio as gr
|
4 |
|
5 |
+
model_id = "openai/whisper-medium" # update with your model id
|
6 |
#model_id ="openai/whisper-tiny"
|
7 |
pipe = pipeline("automatic-speech-recognition", model=model_id)
|
8 |
|