Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,9 +1,10 @@
|
|
1 |
import gradio as gr
|
2 |
import spaces
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
|
|
7 |
|
8 |
# Optionnel : Fixer une graine aléatoire pour la reproductibilit
|
9 |
@spaces.GPU(duration=120)
|
|
|
1 |
import gradio as gr
|
2 |
import spaces
|
3 |
+
## Load model directly
|
4 |
+
from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq
|
5 |
+
|
6 |
+
processor = AutoProcessor.from_pretrained("openai/whisper-large-v3")
|
7 |
+
model = AutoModelForSpeechSeq2Seq.from_pretrained("openai/whisper-large-v3")
|
8 |
|
9 |
# Optionnel : Fixer une graine aléatoire pour la reproductibilit
|
10 |
@spaces.GPU(duration=120)
|