Spaces:
Configuration error
Configuration error
Update README.md
Browse files
README.md
CHANGED
@@ -12,62 +12,20 @@ library_name: ultralytics
|
|
12 |
library_version: 8.0.21
|
13 |
inference: false
|
14 |
|
15 |
-
|
16 |
-
|
|
|
17 |
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
- task:
|
22 |
-
type: object-detection
|
23 |
|
24 |
-
|
25 |
-
type: keremberke/table-extraction
|
26 |
-
name: table-extraction
|
27 |
-
split: validation
|
28 |
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
name: mAP@0.5(box)
|
33 |
-
---
|
34 |
-
<div align="center">
|
35 |
-
<img width="640" alt="keremberke/yolov8m-table-extraction" src="https://huggingface.co/keremberke/yolov8m-table-extraction/resolve/main/thumbnail.jpg">
|
36 |
-
</div>
|
37 |
-
|
38 |
-
### Supported Labels
|
39 |
-
|
40 |
-
```
|
41 |
-
['bordered', 'borderless']
|
42 |
-
```
|
43 |
-
|
44 |
-
### How to use
|
45 |
-
|
46 |
-
- Install [ultralyticsplus](https://github.com/fcakyon/ultralyticsplus):
|
47 |
-
|
48 |
-
```bash
|
49 |
-
pip install ultralyticsplus==0.0.23 ultralytics==8.0.21
|
50 |
-
```
|
51 |
-
|
52 |
-
- Load model and perform prediction:
|
53 |
|
54 |
-
|
55 |
-
from ultralyticsplus import YOLO, render_result
|
56 |
-
# load model
|
57 |
-
model = YOLO('keremberke/yolov8m-table-extraction')
|
58 |
-
# set model parameters
|
59 |
-
model.overrides['conf'] = 0.25 # NMS confidence threshold
|
60 |
-
model.overrides['iou'] = 0.45 # NMS IoU threshold
|
61 |
-
model.overrides['agnostic_nms'] = False # NMS class-agnostic
|
62 |
-
model.overrides['max_det'] = 1000 # maximum number of detections per image
|
63 |
-
# set image
|
64 |
-
image = 'https://github.com/ultralytics/yolov5/raw/master/data/images/zidane.jpg'
|
65 |
-
# perform inference
|
66 |
-
results = model.predict(image)
|
67 |
-
# observe results
|
68 |
-
print(results[0].boxes)
|
69 |
-
render = render_result(model=model, image=image, result=results[0])
|
70 |
-
render.show()
|
71 |
-
```
|
72 |
|
73 |
**More models available at: [awesome-yolov8-models](https://yolov8.xyz)**
|
|
|
12 |
library_version: 8.0.21
|
13 |
inference: false
|
14 |
|
15 |
+
# ilsung-yolov8
|
16 |
+
<h2>κ²½λΆλνκ΅ μΈκ³΅μ§λ₯ νμ μ΅ν©λν μ¬μ
λ¨ μ°ν νλ‘μ νΈ</h2>
|
17 |
+
<h3>CCTVνμ₯ μμ μΈκ³΅μ§λ₯ μμ€ν
- (μ£Ό)μΌμ±νμ΄μ€μ½μ μ§ν</h3>
|
18 |
|
19 |
+
Datasets: (μ£Ό)μΌμ±νμ΄μ€μ½μ IPμΉ΄λ©λΌ 2λλ‘λΆν° μμ² λ°μ΄ν° μμ§. λ©ν λ°μ΄ν° annotation μμ
μ μν΄ cvat.ai μ¬μ©<br>
|
20 |
+
β class: {helmet_person, non_helmet_person}<br>
|
21 |
+
β total image: 4052, train : val = 9 : 1
|
|
|
|
|
22 |
|
23 |
+
<img src="https://github.com/jk9169/ilsung-yolov8/blob/main/runs/detect/train5/labels.jpg?raw=true" width="400" height="400">
|
|
|
|
|
|
|
24 |
|
25 |
+
Model: YOLOv8 </a><br>
|
26 |
+
β Yolov8n<br>
|
27 |
+
β Yolov8s
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
|
29 |
+
<img src="https://github.com/jk9169/ilsung-yolov8/blob/main/runs/detect/train5/val_batch0_pred.jpg?raw=true">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
|
31 |
**More models available at: [awesome-yolov8-models](https://yolov8.xyz)**
|