daniyal214 commited on
Commit
d52eb24
·
1 Parent(s): 2dacbdc

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -0
app.py ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ from transformers import pipeline
3
+
4
+ pipe = pipeline("image-to-text", model="daniyal214/finetuned-git-large-chest-xrays")
5
+
6
+ def get_captions(image):
7
+ result = pipe(image)
8
+ result = result[0]['generated_text']
9
+ return result
10
+
11
+ iface = gr.Interface(fn = get_captions, inputs = "image", outputs = ['text'], title="X-rays Image Caption Generator")
12
+ iface.launch()