essam24 commited on
Commit
06bfd34
1 Parent(s): dee5424

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -0
app.py ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ from transformers import pipeline
3
+
4
+ pipe = pipeline("image-classification", model="essam24/vit-brain-tumour-v2")
5
+
6
+ def launch(input):
7
+ out = pipe(input)
8
+ return out
9
+
10
+ iface = gr.Interface(launch,
11
+ inputs=gr.Image(type='pil'),
12
+ outputs="text")
13
+
14
+ iface.launch(share=True)