Update subsets
Browse files
README.md
CHANGED
|
@@ -30,6 +30,22 @@ configs:
|
|
| 30 |
path: "metadata/prwp/*.json"
|
| 31 |
- split: refugee
|
| 32 |
path: "metadata/refugee/*.json"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
---
|
| 34 |
|
| 35 |
# Dataset card for data-snapshot
|
|
@@ -44,8 +60,10 @@ The repository is organized as follows:
|
|
| 44 |
```
|
| 45 |
ai4data/data-snapshot/
|
| 46 |
├── annotations/<source>/*.json # Contains annotation files per document
|
|
|
|
| 47 |
├── metadata/<source>/*.json # Document-level metadata
|
| 48 |
-
├── schemas/data-snapshot-eval-v1.3.schema.json # Provides the schema of the annotation file
|
|
|
|
| 49 |
└── README.md
|
| 50 |
```
|
| 51 |
|
|
@@ -53,9 +71,13 @@ ai4data/data-snapshot/
|
|
| 53 |
- `annotations`
|
| 54 |
- JSON files that indicate the data snapshots: their object class (Figure / Table) and bounding box locations (in normalized `[x1, y1, x2, y2]` format, top-left origin)
|
| 55 |
- Follows the schema provided in `data-snapshot-eval-v1.3.schema.json`
|
| 56 |
-
- Provided on a per-document basis
|
|
|
|
|
|
|
| 57 |
- `metadata`
|
| 58 |
- Provided on a per-document basis
|
|
|
|
|
|
|
| 59 |
|
| 60 |
### Sources
|
| 61 |
- UNHCR
|
|
|
|
| 30 |
path: "metadata/prwp/*.json"
|
| 31 |
- split: refugee
|
| 32 |
path: "metadata/refugee/*.json"
|
| 33 |
+
- config_name: documents
|
| 34 |
+
data_files:
|
| 35 |
+
- split: unhcr
|
| 36 |
+
path: "documents/unhcr/*.pdf"
|
| 37 |
+
- split: prwp
|
| 38 |
+
path: "documents/prwp/*.pdf"
|
| 39 |
+
- split: refugee
|
| 40 |
+
path: "documents/refugee/*.pdf"
|
| 41 |
+
- config_name: snapshots
|
| 42 |
+
data_files:
|
| 43 |
+
- split: unhcr
|
| 44 |
+
path: "snapshots/unhcr/*.png"
|
| 45 |
+
- split: prwp
|
| 46 |
+
path: "snapshots/prwp/*.png"
|
| 47 |
+
- split: refugee
|
| 48 |
+
path: "snapshots/refugee/*.png"
|
| 49 |
---
|
| 50 |
|
| 51 |
# Dataset card for data-snapshot
|
|
|
|
| 60 |
```
|
| 61 |
ai4data/data-snapshot/
|
| 62 |
├── annotations/<source>/*.json # Contains annotation files per document
|
| 63 |
+
├── documents/<source>/*.pdf # Actual PDFs
|
| 64 |
├── metadata/<source>/*.json # Document-level metadata
|
| 65 |
+
├── schemas/data-snapshot-eval-v1.3.schema.json # Provides the schema of the annotation file
|
| 66 |
+
├── snapshots/<source>/*.png # Image files corresponding to the annotations
|
| 67 |
└── README.md
|
| 68 |
```
|
| 69 |
|
|
|
|
| 71 |
- `annotations`
|
| 72 |
- JSON files that indicate the data snapshots: their object class (Figure / Table) and bounding box locations (in normalized `[x1, y1, x2, y2]` format, top-left origin)
|
| 73 |
- Follows the schema provided in `data-snapshot-eval-v1.3.schema.json`
|
| 74 |
+
- Provided on a per-document basis; documents that do not have data snapshots will still have an annotation file present but list of bounding boxes will be empty.
|
| 75 |
+
- `documents`
|
| 76 |
+
- Actual PDF files that were annotated
|
| 77 |
- `metadata`
|
| 78 |
- Provided on a per-document basis
|
| 79 |
+
- `snapshots`
|
| 80 |
+
- PNG files extracted from the documents and bounding box locations
|
| 81 |
|
| 82 |
### Sources
|
| 83 |
- UNHCR
|