hubsnippetai commited on
Commit
79680cd
1 Parent(s): 4bcb8d9

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ from transformers import pipeline
2
+ import gradio as gr
3
+
4
+ transcriber = pipeline(model="openai/whisper-large-v2", return_timestamps=True)
5
+ gr.Interface.from_pipeline(transcriber).launch()