File size: 1,559 Bytes
fff5e78
6516ec2
 
 
 
 
 
fff5e78
6516ec2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3f8d2a6
6516ec2
 
 
 
 
 
3f8d2a6
6516ec2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5ab809f
 
db12732
5ab809f
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
---
license: mit
library_name: ultralytics
tags:
- yolov8
- object-detection
- pytorch
---

# TabDetect

### Supported Labels

```
['full_lined', 'not_full_lined']
```

### How to use

- Install ultralytics:

```bash
pip install -U ultralytics==8.0.227
```

- Load model and perform prediction:

```python
from ultralytics import YOLO

# load model
model = YOLO('camiloa2m/TabDetect-YOLOv8s')

# set model parameters (optional)
model.overrides['conf'] = 0.25  # NMS confidence threshold
model.overrides['iou'] = 0.45  # NMS IoU threshold
model.overrides['agnostic_nms'] = False  # NMS class-agnostic
model.overrides['max_det'] = 1000  # maximum number of detections per image

# set image
image = '<URL or Path to an image'

# perform inference
results = model.predict(image)
```

### Dataset

[TNCR_Dataset](https://github.com/abdoelsayed2016/TNCR_Dataset). I merged some classes: class 0 (full_lined, merged_cells), class 1 (no_lines, partial_lined, partial_lined_merged_cells).

### Model summary (fused)

| Class          | Images | Instances | P     | R     | mAP50 | mAP50-95 |
|----------------|--------|-----------|-------|-------|-------|----------|
| all            | 1313   | 1906      | 0.957 | 0.926 | 0.973 | 0.938    |
| full_lined     | 1313   | 984       | 0.96  | 0.949 | 0.98  | 0.968    |
| not_full_lined | 1313   | 922       | 0.953 | 0.904 | 0.966 | 0.908    |


<div align="center">
  <img width="640" alt="camiloa2m/TabDetect-YOLOv8n" src="https://huggingface.co/camiloa2m/TabDetect-YOLOv8n/resolve/main/val_batch1_pred.jpg">
</div>