delphiclinic commited on
Commit
39e2f4f
·
verified ·
1 Parent(s): da9a288

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -6,13 +6,16 @@ import os
6
 
7
  ## Where to store flagged data
8
  HF_TOKEN = os.getenv('HF_TOKEN')
9
- hf_writer = gr.HuggingFaceDatasetSaver(HF_TOKEN, "Crowd sourced images")
10
 
11
  # Load your trained model
12
  model = YOLO('best.pt')
13
 
14
  #Function for making predictions
15
  def predict (image):
 
 
 
16
  results = model(image, conf =0.2)
17
  ## list of all the probabilities
18
  conf = []
 
6
 
7
  ## Where to store flagged data
8
  HF_TOKEN = os.getenv('HF_TOKEN')
9
+ hf_writer = gr.HuggingFaceDatasetSaver(HF_TOKEN, "flaggedImages", private=True)
10
 
11
  # Load your trained model
12
  model = YOLO('best.pt')
13
 
14
  #Function for making predictions
15
  def predict (image):
16
+ ##To display an error message if you submit without an image
17
+ if image is None:
18
+ return gr.err("Please upload a chest X-ray image to proceed")
19
  results = model(image, conf =0.2)
20
  ## list of all the probabilities
21
  conf = []