Spaces:
Runtime error
Runtime error
Commit
·
e56325d
1
Parent(s):
4f7b1a6
gradio check version
Browse files
app.py
CHANGED
@@ -10,6 +10,10 @@ from transformers.pipelines.audio_utils import ffmpeg_read
|
|
10 |
import tempfile
|
11 |
import os
|
12 |
|
|
|
|
|
|
|
|
|
13 |
MODEL_NAME = "openai/whisper-large-v3"
|
14 |
BATCH_SIZE = 8
|
15 |
FILE_LIMIT_MB = 1000
|
|
|
10 |
import tempfile
|
11 |
import os
|
12 |
|
13 |
+
os.system("pip uninstall -y gradio")
|
14 |
+
os.system("pip install gradio==3.36.1")
|
15 |
+
|
16 |
+
|
17 |
MODEL_NAME = "openai/whisper-large-v3"
|
18 |
BATCH_SIZE = 8
|
19 |
FILE_LIMIT_MB = 1000
|