Commit
·
5dd2bfa
1
Parent(s):
f9bd84d
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
| 1 |
---
|
| 2 |
license: gpl
|
| 3 |
---
|
|
|
|
| 4 |
|
| 5 |
This model uses a pretrained YOLO Darknet model to perform object detection on an input image. The model is able to identify 80 classes from the COCO dataset. The classes are listed here `config/coco.names`.
|
| 6 |
|
|
@@ -10,4 +11,4 @@ Clone the repository using
|
|
| 10 |
repo = Repository("/local_repo_name", clone_from="danieladejumo/darknet-coco-object_detection")
|
| 11 |
```
|
| 12 |
|
| 13 |
-
Run a detection by using the function `detect(path_to_image)` `darknet-coco-object_detection.ipynb`. The output image with the detection rectangle and classes will be saved to
|
|
|
|
| 1 |
---
|
| 2 |
license: gpl
|
| 3 |
---
|
| 4 |
+
## Darknet Object Detection on the COCO dataset
|
| 5 |
|
| 6 |
This model uses a pretrained YOLO Darknet model to perform object detection on an input image. The model is able to identify 80 classes from the COCO dataset. The classes are listed here `config/coco.names`.
|
| 7 |
|
|
|
|
| 11 |
repo = Repository("/local_repo_name", clone_from="danieladejumo/darknet-coco-object_detection")
|
| 12 |
```
|
| 13 |
|
| 14 |
+
Run a detection by using the function `detect(path_to_image)` `darknet-coco-object_detection.ipynb`. The output image with the detection rectangle and classes will be saved to images/image_file_name-det.jpg
|