Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -11,4 +11,35 @@ tags:
|
|
11 |
- receipt
|
12 |
size_categories:
|
13 |
- n<1K
|
14 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
- receipt
|
12 |
size_categories:
|
13 |
- n<1K
|
14 |
+
---
|
15 |
+
|
16 |
+
# Openpdf-Blank-v2.0
|
17 |
+
|
18 |
+
Openpdf-Blank-v2.0 is a small dataset containing blank or near-blank PDF image samples. This dataset is primarily designed to help train and evaluate document processing models, especially in tasks like:
|
19 |
+
|
20 |
+
* Identifying and filtering blank or noise-filled documents.
|
21 |
+
* Preprocessing stages for OCR pipelines.
|
22 |
+
* Receipt/document classification tasks.
|
23 |
+
|
24 |
+
## Dataset Structure
|
25 |
+
|
26 |
+
* **Modality**: Image
|
27 |
+
* **Languages**: English (if applicable)
|
28 |
+
* **Size**: Less than 1,000 samples
|
29 |
+
* **License**: Apache-2.0
|
30 |
+
|
31 |
+
## Usage
|
32 |
+
|
33 |
+
```python
|
34 |
+
from datasets import load_dataset
|
35 |
+
|
36 |
+
dataset = load_dataset("prithivMLmods/Openpdf-Blank-v2.0")
|
37 |
+
```
|
38 |
+
|
39 |
+
## Intended Use
|
40 |
+
|
41 |
+
The dataset is ideal for training or benchmarking models that need to recognize and filter out blank pages in document images, such as in:
|
42 |
+
|
43 |
+
* Invoice preprocessing pipelines
|
44 |
+
* Bulk document OCR systems
|
45 |
+
* Smart scanning tools
|