Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -9,7 +9,7 @@ model = YOLO('best.pt')
|
|
9 |
|
10 |
#Function for making predictions
|
11 |
def predict (image):
|
12 |
-
results = model(image)
|
13 |
## list of all the probabilities
|
14 |
conf = []
|
15 |
for result in results:
|
@@ -45,7 +45,10 @@ def predict (image):
|
|
45 |
platform = gr.Interface( fn = predict,
|
46 |
title ="PTCADx: Computer-Aided Detection of Pneumothorax in Chest X-ray Images",
|
47 |
inputs = "image",
|
48 |
-
outputs = [
|
|
|
|
|
|
|
49 |
description="""
|
50 |
Introducing a revolutionary computer-aided detection tool designed to enhance the efficiency of clinicians in detecting pneumothorax in chest X-ray images.
|
51 |
""",
|
|
|
9 |
|
10 |
#Function for making predictions
|
11 |
def predict (image):
|
12 |
+
results = model(image, conf =0.2)
|
13 |
## list of all the probabilities
|
14 |
conf = []
|
15 |
for result in results:
|
|
|
45 |
platform = gr.Interface( fn = predict,
|
46 |
title ="PTCADx: Computer-Aided Detection of Pneumothorax in Chest X-ray Images",
|
47 |
inputs = "image",
|
48 |
+
outputs = [
|
49 |
+
gr.outputs.Image(label="Processed Image"),
|
50 |
+
gr.outputs.Text(label="Impression")
|
51 |
+
],
|
52 |
description="""
|
53 |
Introducing a revolutionary computer-aided detection tool designed to enhance the efficiency of clinicians in detecting pneumothorax in chest X-ray images.
|
54 |
""",
|