atomiclabs commited on
Commit
fcc0bb8
·
1 Parent(s): edfa415

Summarization

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
+ iface = gr.Interface.load("huggingface/sshleifer/distilbart-cnn-12-6",
4
+ examples=[["Hello! My name is Omar"]]
5
+ )
6
+
7
+ iface.launch()