Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -13,4 +13,48 @@ tags:
|
|
| 13 |
- document
|
| 14 |
size_categories:
|
| 15 |
- 1K<n<10K
|
| 16 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
- document
|
| 14 |
size_categories:
|
| 15 |
- 1K<n<10K
|
| 16 |
+
---
|
| 17 |
+
|
| 18 |
+
# Openpdf-MultiReceipt-1K
|
| 19 |
+
|
| 20 |
+
**Openpdf-MultiReceipt-1K** is a dataset consisting of over 1,000 receipt documents in **PDF format**. This dataset is designed for use in image-to-text and document understanding tasks, particularly Optical Character Recognition (OCR), receipt parsing, and layout analysis.
|
| 21 |
+
|
| 22 |
+
## Notes
|
| 23 |
+
|
| 24 |
+
* No text annotations or metadata are provided — only the raw PDFs.
|
| 25 |
+
* Ideal for tasks requiring raw document inputs like PDF-to-Text pipelines.
|
| 26 |
+
|
| 27 |
+
## Dataset Summary
|
| 28 |
+
|
| 29 |
+
* **Size:** 1,249 receipts
|
| 30 |
+
* **Format:** PDF only (no extracted text)
|
| 31 |
+
* **Split:**
|
| 32 |
+
|
| 33 |
+
* `train`: 1.25k files
|
| 34 |
+
* **Languages:** Primarily English and German
|
| 35 |
+
* **License:** Apache 2.0
|
| 36 |
+
|
| 37 |
+
## How to Use
|
| 38 |
+
|
| 39 |
+
You can load the dataset using the `datasets` library:
|
| 40 |
+
|
| 41 |
+
```python
|
| 42 |
+
from datasets import load_dataset
|
| 43 |
+
|
| 44 |
+
dataset = load_dataset("prithivMLmods/Openpdf-MultiReceipt-1K")
|
| 45 |
+
```
|
| 46 |
+
|
| 47 |
+
Each entry in the dataset contains:
|
| 48 |
+
|
| 49 |
+
```json
|
| 50 |
+
{
|
| 51 |
+
"file": <PDF file object>
|
| 52 |
+
}
|
| 53 |
+
```
|
| 54 |
+
|
| 55 |
+
## Use Cases
|
| 56 |
+
|
| 57 |
+
* OCR model training
|
| 58 |
+
* Document layout detection
|
| 59 |
+
* Multi-lingual receipt understanding
|
| 60 |
+
* Data extraction from scanned documents
|