rutsam commited on
Commit
1c09abb
1 Parent(s): 2ae79a3

add app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+
4
+ from transformers import pipeline
5
+
6
+ pipe = pipeline("models/mbazaNLP/Kinyarwanda_nemo_stt_conformer_model")
7
+ gr.Interface.from_pipeline(pipe).launch()