Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,11 +1,9 @@
|
|
1 |
import gradio as gr
|
2 |
import spaces
|
3 |
## Load model directly
|
4 |
-
|
5 |
-
|
6 |
-
|
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)
|
11 |
|
|
|
1 |
import gradio as gr
|
2 |
import spaces
|
3 |
## Load model directly
|
4 |
+
# Load model directly
|
5 |
+
from transformers import AutoModelForCausalLM
|
6 |
+
model = AutoModelForCausalLM.from_pretrained("deepseek-ai/DeepSeek-Coder-V2-Instruct", trust_remote_code=True)
|
|
|
|
|
7 |
# Optionnel : Fixer une graine aléatoire pour la reproductibilit
|
8 |
@spaces.GPU(duration=120)
|
9 |
|