Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 |
-
|
11 |
|
12 |
-
models = {"Yolo V11": yolo_detector, "Real Time Detection Transformer":
|
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 |
|