umairahmad1789 commited on
Commit
05d0642
1 Parent(s): a0ba42d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -7,9 +7,9 @@ import gradio as gr
7
 
8
  cell_detector = YOLO("./weights/yolo_uninfected_cells.pt")
9
  yolo_detector = YOLO("./weights/yolo_infected_cells.pt")
10
- # redetr_detector = YOLO("./weights/yolo_infected_cells.pt")
11
 
12
- models = {"Yolo V11": yolo_detector, "Real Time Detection Transformer": yolo_detector}
13
  # classes = {"Yolo V11": [0], "Real Time Detection Transformer": [1]}
14
 
15
 
 
7
 
8
  cell_detector = YOLO("./weights/yolo_uninfected_cells.pt")
9
  yolo_detector = YOLO("./weights/yolo_infected_cells.pt")
10
+ redetr_detector = YOLO("./weights/redetr_infected_cells.pt")
11
 
12
+ models = {"Yolo V11": yolo_detector, "Real Time Detection Transformer": redetr_detector}
13
  # classes = {"Yolo V11": [0], "Real Time Detection Transformer": [1]}
14
 
15