MeBai commited on
Commit
376dc4c
·
verified ·
1 Parent(s): bc437c2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -1
app.py CHANGED
@@ -11,7 +11,13 @@ import torch
11
  # processor = WhisperProcessor.from_pretrained(model_name)
12
  # model = WhisperForConditionalGeneration.from_pretrained(model_name)
13
 
14
- model = pipeline("automatic-speech-recognition", model="ylacombe/whisper-large-v3-turbo", chunk_length_s=30, device=0)
 
 
 
 
 
 
15
 
16
  # 加载数据集 bigcode/the-stack
17
 
 
11
  # processor = WhisperProcessor.from_pretrained(model_name)
12
  # model = WhisperForConditionalGeneration.from_pretrained(model_name)
13
 
14
+ model_id = "openai/whisper-large-v3-turbo"
15
+
16
+ models = AutoModelForSpeechSeq2Seq.from_pretrained(
17
+ model_id, torch_dtype=torch_dtype, low_cpu_mem_usage=True
18
+ )
19
+
20
+ model = pipeline("automatic-speech-recognition", model=models, chunk_length_s=30, device=0)
21
 
22
  # 加载数据集 bigcode/the-stack
23