hamdan07 commited on
Commit
bb478f9
·
1 Parent(s): 3d8341c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +17 -1
app.py CHANGED
@@ -9,7 +9,23 @@ head = (
9
  "Upload an X-ray image to check for covid19. The app is for research purposes and not clinically authorized"
10
  "</center>"
11
  )
 
 
 
 
 
 
 
 
 
 
 
 
12
 
 
13
 
14
 
15
- gr.Interface.load("models/swww/test").launch()
 
 
 
 
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()