Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -16,7 +16,7 @@ def predict (image):
|
|
16 |
##To display an error message if you submit without an image
|
17 |
if image is None:
|
18 |
raise gr.Error("Please upload a chest X-ray image to proceed")
|
19 |
-
results = model(image, conf
|
20 |
## list of all the probabilities
|
21 |
conf = []
|
22 |
for result in results:
|
|
|
16 |
##To display an error message if you submit without an image
|
17 |
if image is None:
|
18 |
raise gr.Error("Please upload a chest X-ray image to proceed")
|
19 |
+
results = model(image, conf=0.1)
|
20 |
## list of all the probabilities
|
21 |
conf = []
|
22 |
for result in results:
|