danieladejumo
commited on
Commit
·
f9bd84d
1
Parent(s):
cb2f384
Update README.md
Browse files
README.md
CHANGED
@@ -2,4 +2,12 @@
|
|
2 |
license: gpl
|
3 |
---
|
4 |
|
5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
|
7 |
+
### Usage
|
8 |
+
Clone the repository using
|
9 |
+
```
|
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 `images/image_file_name-det.jpg`
|