delphiclinic commited on
Commit
741c658
·
verified ·
1 Parent(s): 3374155

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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 =0.1)
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: