delphiclinic commited on
Commit
2d15f4e
·
verified ·
1 Parent(s): 219dac9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -2
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 = ["image", "text"],
 
 
 
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
  """,