Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -16,7 +16,7 @@ def detect_objects(image):
|
|
16 |
"yolo", # YOLOv8 CLI command
|
17 |
"task=detect", # Specify the task as detection
|
18 |
"mode=predict", # Set mode to predict
|
19 |
-
f"model=
|
20 |
f"source={input_image_path}", # Input image path (uploaded by user)
|
21 |
f"project={output_dir}", # Output directory
|
22 |
f"name=result", # Subfolder name for results
|
@@ -42,7 +42,7 @@ def detect_objects(image):
|
|
42 |
interface = gr.Interface(
|
43 |
fn=detect_objects, # The function to call when an image is uploaded
|
44 |
inputs=gr.Image(type="pil"), # Accept images as input
|
45 |
-
outputs=gr.Image(type="
|
46 |
title="YOLOv8 Object Detection",
|
47 |
description="Upload an image of floating waste in water, and this app will detect it using YOLOv8."
|
48 |
)
|
|
|
16 |
"yolo", # YOLOv8 CLI command
|
17 |
"task=detect", # Specify the task as detection
|
18 |
"mode=predict", # Set mode to predict
|
19 |
+
f"model=best.pt", # Path to your YOLOv8 model weights
|
20 |
f"source={input_image_path}", # Input image path (uploaded by user)
|
21 |
f"project={output_dir}", # Output directory
|
22 |
f"name=result", # Subfolder name for results
|
|
|
42 |
interface = gr.Interface(
|
43 |
fn=detect_objects, # The function to call when an image is uploaded
|
44 |
inputs=gr.Image(type="pil"), # Accept images as input
|
45 |
+
outputs=gr.Image(type="filepath"), # Return an image file path as output
|
46 |
title="YOLOv8 Object Detection",
|
47 |
description="Upload an image of floating waste in water, and this app will detect it using YOLOv8."
|
48 |
)
|