Datasets:
SHORT/LONG configs + attribution card
Browse files
README.md
CHANGED
|
@@ -67,6 +67,8 @@ configs:
|
|
| 67 |
path: SHORT/test-*
|
| 68 |
---
|
| 69 |
|
|
|
|
|
|
|
| 70 |
# OpenPSS — community mirror
|
| 71 |
|
| 72 |
> ⚠️ **This is a redistribution (mirror) of the OpenPSS benchmark, not our own work.** It is hosted for
|
|
@@ -84,13 +86,17 @@ document boundaries. OpenPSS provides two datasets — **SHORT** and **LONG**. T
|
|
| 84 |
Dutch government records released under the Freedom of Information Act (*Wet open overheid* / Woo), which
|
| 85 |
are public records.
|
| 86 |
|
| 87 |
-
|
| 88 |
-
``
|
| 89 |
-
|
| 90 |
-
|
| 91 |
-
|
| 92 |
-
|
|
|
|
|
|
|
| 93 |
```
|
|
|
|
|
|
|
| 94 |
|
| 95 |
## Citation
|
| 96 |
```bibtex
|
|
|
|
| 67 |
path: SHORT/test-*
|
| 68 |
---
|
| 69 |
|
| 70 |
+
|
| 71 |
+
|
| 72 |
# OpenPSS — community mirror
|
| 73 |
|
| 74 |
> ⚠️ **This is a redistribution (mirror) of the OpenPSS benchmark, not our own work.** It is hosted for
|
|
|
|
| 86 |
Dutch government records released under the Freedom of Information Act (*Wet open overheid* / Woo), which
|
| 87 |
are public records.
|
| 88 |
|
| 89 |
+
This is a **self-contained, HuggingFace-native reformatting** of the original OpenPSS release (page images
|
| 90 |
+
embedded — no external `png.zip` to unpack), exposed as two loadable **configs** with train/test splits:
|
| 91 |
+
|
| 92 |
+
```python
|
| 93 |
+
from datasets import load_dataset
|
| 94 |
+
short = load_dataset("nutrientdocs/openpss-mirror", "SHORT") # or "LONG"
|
| 95 |
+
# columns: stream_id (str), position (int, 1-indexed page in the stream),
|
| 96 |
+
# image (PIL), text (OCR), label (int: 1 = starts a new document / boundary, else 0)
|
| 97 |
```
|
| 98 |
+
A stream's ground-truth boundaries are the `label` column ordered by `position`; `label[0]` (page 1) is 1
|
| 99 |
+
by construction. Content is faithful to the original OpenPSS SHORT/LONG; only the packaging is changed.
|
| 100 |
|
| 101 |
## Citation
|
| 102 |
```bibtex
|