alex-abb commited on
Commit
8864406
1 Parent(s): 5c635d8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -5
app.py CHANGED
@@ -1,11 +1,9 @@
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)
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