Spaces:
Sleeping
Sleeping
Commit
·
24106d7
1
Parent(s):
d49cd17
added title and descriptoin
Browse files
app.py
CHANGED
@@ -23,5 +23,10 @@ gr.Interface(fn=yolo_pred,
|
|
23 |
[cv2.imread("example1.jpg")],
|
24 |
[cv2.imread("example2.jpg")],
|
25 |
[cv2.imread("example3.jpg")],
|
26 |
-
]
|
|
|
|
|
|
|
|
|
|
|
27 |
).launch()
|
|
|
23 |
[cv2.imread("example1.jpg")],
|
24 |
[cv2.imread("example2.jpg")],
|
25 |
[cv2.imread("example3.jpg")],
|
26 |
+
],
|
27 |
+
title="Fine-Tuned YOLOv8",
|
28 |
+
description="""YOLOv8 object detection model trained on the Tsinghua-Daimler Cyclist Benchmark (TDCB).
|
29 |
+
Since the setting of their image collection seems to be an early morning in China,
|
30 |
+
please sample similar images for the best results. I recommend using images from TDCB's
|
31 |
+
Kaggle clone here: https://www.kaggle.com/datasets/semiemptyglass/cyclist-dataset."""
|
32 |
).launch()
|