seiching commited on
Commit
3ef2f86
1 Parent(s): d182662

update model to openai

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -134,9 +134,9 @@ from transformers import pipeline
134
  from transformers.pipelines.audio_utils import ffmpeg_read
135
  import gradio as gr
136
 
137
- MODEL_NAME = "seiching/whisper-small-seiching"
138
- BATCH_SIZE = 8
139
- transcribe_text="this is a test"
140
 
141
  device = 0 if torch.cuda.is_available() else "cpu"
142
 
 
134
  from transformers.pipelines.audio_utils import ffmpeg_read
135
  import gradio as gr
136
 
137
+
138
+
139
+ transcribe_text=""
140
 
141
  device = 0 if torch.cuda.is_available() else "cpu"
142