Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
hubsnippetai
/
medimage
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
hubsnippetai
commited on
Jun 11, 2024
Commit
79680cd
·
verified
·
1 Parent(s):
4bcb8d9
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+5
-0
app.py
ADDED
Viewed
@@ -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()