ssadhu commited on
Commit
095623c
·
verified ·
1 Parent(s): eb0ca45

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -0
app.py ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import gradio as gr
3
+ from transformers import pipeline
4
+
5
+ def launch(input):
6
+ out = pipe(input)
7
+ return out[0]['generated_text']
8
+
9
+ iface = gr.Interface(launch,
10
+ inputs=gr.Image(type='pil'),
11
+ outputs="text")
12
+
13
+ iface.launch(share=True,
14
+ server_port=int(os.environ['PORT1']))