hamdan07 commited on
Commit
bd8bc04
·
1 Parent(s): b054ffa

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +29 -1
app.py CHANGED
@@ -1,3 +1,31 @@
1
  import gradio as gr
 
2
 
3
- gr.Interface.load("models/swww/test").launch()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  import gradio as gr
2
+ import tensorflow as tf
3
 
4
+
5
+ title = "Covid 19 Prediction App using X-ray Images"
6
+
7
+ head = (
8
+ "<center>"
9
+ "Upload an X-ray image to check for covid19. The app is for research purposes and not clinically authorized"
10
+ "</center>"
11
+ )
12
+ title = "Covid 19 Prediction App using X-ray Images"
13
+
14
+ head = (
15
+ "<center>"
16
+ "Upload an X-ray image to check for covid19. The app is for research purposes and not clinically authorized"
17
+ "</center>"
18
+ )
19
+
20
+ def predict_input_image(img):
21
+ from transformers import AutoFeatureExtractor, AutoModelForImageClassification
22
+
23
+ extractor = AutoFeatureExtractor.from_pretrained("swww/test")
24
+
25
+ model = AutoModelForImageClassification.from_pretrained("swww/test")
26
+
27
+
28
+ image = gr.inputs.Image(shape=(500, 500), image_mode='L', invert_colors=False, source="upload")
29
+ label = gr.outputs.Label()
30
+ iface = gr.Interface(fn=predict_input_image, inputs=image, outputs=label,title=title, description=head)
31
+ iface.launch()