Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -108,7 +108,7 @@ Images are **NOT included** - use the original DocLayNet image files from:
|
|
| 108 |
from datasets import load_dataset
|
| 109 |
|
| 110 |
# Load the filtered annotations
|
| 111 |
-
dataset = load_dataset("
|
| 112 |
|
| 113 |
# Access splits
|
| 114 |
train_data = dataset["train"]
|
|
@@ -179,20 +179,6 @@ This filtered dataset is ideal for:
|
|
| 179 |
- **Multi-scale document understanding** tasks
|
| 180 |
- **Transfer learning** from general object detection to document analysis
|
| 181 |
|
| 182 |
-
## Evaluation Benchmarks
|
| 183 |
-
|
| 184 |
-
### Zero-Shot Performance (COCO Pretrained Models)
|
| 185 |
-
|
| 186 |
-
Models pretrained on COCO and evaluated without fine-tuning on DocLayNet 6-class:
|
| 187 |
-
|
| 188 |
-
| Model | mAP@0.5 | mAP@0.5:0.95 | Inference (ms) | Parameters |
|
| 189 |
-
|-------|---------|--------------|----------------|------------|
|
| 190 |
-
| YOLOv11n | TBD | TBD | TBD | 2.6M |
|
| 191 |
-
| YOLOv11m | TBD | TBD | TBD | 20M |
|
| 192 |
-
| RT-DETR-L | TBD | TBD | TBD | 32M |
|
| 193 |
-
|
| 194 |
-
*Evaluation in progress on test set (4,952 images at 1024×1024 resolution)*
|
| 195 |
-
|
| 196 |
## Limitations
|
| 197 |
|
| 198 |
1. **Images not included**: You must obtain images from the original DocLayNet dataset
|
|
@@ -225,9 +211,9 @@ If you use this filtered dataset, please cite both:
|
|
| 225 |
```bibtex
|
| 226 |
@misc{doclaynet6class2024,
|
| 227 |
title = {DocLayNet 6-Class: Filtered Document Layout Analysis Dataset},
|
| 228 |
-
author = {[
|
| 229 |
-
year = {
|
| 230 |
-
howpublished = {\url{https://huggingface.co/datasets/
|
| 231 |
note = {Filtered subset of DocLayNet containing 6 primary layout element classes}
|
| 232 |
}
|
| 233 |
```
|
|
@@ -243,7 +229,6 @@ See: https://cdla.dev/permissive-2-0/
|
|
| 243 |
## Acknowledgments
|
| 244 |
|
| 245 |
- Original DocLayNet dataset: IBM Research
|
| 246 |
-
- Filtering and curation: [Your Name/Organization]
|
| 247 |
- Built using the layout-for-tools evaluation framework
|
| 248 |
|
| 249 |
## Contact
|
|
|
|
| 108 |
from datasets import load_dataset
|
| 109 |
|
| 110 |
# Load the filtered annotations
|
| 111 |
+
dataset = load_dataset("kbang2021/doclaynet-6class")
|
| 112 |
|
| 113 |
# Access splits
|
| 114 |
train_data = dataset["train"]
|
|
|
|
| 179 |
- **Multi-scale document understanding** tasks
|
| 180 |
- **Transfer learning** from general object detection to document analysis
|
| 181 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 182 |
## Limitations
|
| 183 |
|
| 184 |
1. **Images not included**: You must obtain images from the original DocLayNet dataset
|
|
|
|
| 211 |
```bibtex
|
| 212 |
@misc{doclaynet6class2024,
|
| 213 |
title = {DocLayNet 6-Class: Filtered Document Layout Analysis Dataset},
|
| 214 |
+
author = {[Keng Boon, Ang]},
|
| 215 |
+
year = {2026},
|
| 216 |
+
howpublished = {\url{https://huggingface.co/datasets/kbang2021/doclaynet-6class}},
|
| 217 |
note = {Filtered subset of DocLayNet containing 6 primary layout element classes}
|
| 218 |
}
|
| 219 |
```
|
|
|
|
| 229 |
## Acknowledgments
|
| 230 |
|
| 231 |
- Original DocLayNet dataset: IBM Research
|
|
|
|
| 232 |
- Built using the layout-for-tools evaluation framework
|
| 233 |
|
| 234 |
## Contact
|