ypvxreal commited on
Commit
613f018
·
verified ·
1 Parent(s): f7c97bd

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +54 -0
README.md ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # ImplicitIR
2
+
3
+ Document images paired with question/answer pairs that require **implicit reasoning** over the document — deriving, cross-referencing, or computing a value — rather than plain OCR transcription. This is the held-out test split used by the [ImplicitIR Benchmark](https://github.com/VXRealLimited/ImplicitIR-Benchmark) eval harness; the reasoning-annotated training splits (with raw field data and derivation traces, used for SFT/GRPO) live in the [ImplicitIR](https://github.com/VXRealLimited/ImplicitIR) training repo.
4
+
5
+ Most document images are real-world documents sourced from the Unikie benchmark (MIT licensed); the `Synthetic` category is procedurally generated and not derived from Unikie. This dataset (questions, answers, and synthetic images) is released under CC-BY-4.0; the `images/real/` subset remains additionally subject to Unikie's MIT license and attribution requirement. See [LICENSE](LICENSE) for details.
6
+
7
+ ## Dataset structure
8
+
9
+ `test.jsonl` is a doc-level JSONL file: one line per document image, with a list of `samples` (question/answer pairs) for that document.
10
+
11
+ ```json
12
+ {
13
+ "doc_id": "91814768_91814769",
14
+ "image": "images/real/91814768_91814769.png",
15
+ "category": "Administrative",
16
+ "samples": [
17
+ {
18
+ "id": 1,
19
+ "field": "total_to_date_minus_previously_reported",
20
+ "question_type": "derivation",
21
+ "prompt": "This form lists three separate 'Total Expenditures or Disbursements' figures near the bottom: one for This Report, one Previously Reported, and one to Date. By how much does the 'to Date' total exceed the 'Previously Reported' total? Answer with the number only — no currency symbols, commas, or units.",
22
+ "field_present": true,
23
+ "answer": "48085.00"
24
+ }
25
+ ]
26
+ }
27
+ ```
28
+
29
+ **Fields per sample:**
30
+
31
+ | Field | Description |
32
+ |---|---|
33
+ | `id` | Sample index within the document. |
34
+ | `field` | Short identifier for the field/value the question targets. |
35
+ | `question_type` | `derivation` (compute/combine values) or `spatial` (reason about layout/position/references within the document). |
36
+ | `prompt` | The question posed about the document. |
37
+ | `field_present` | Whether the queried field actually exists in the document (always `true` in this split). |
38
+ | `answer` | The final answer. |
39
+
40
+ Document-level fields: `doc_id`, `image` (path relative to this directory), `category` (`Administrative`, `Commercial`, `Advertisement`, `Accommodation`, or `Synthetic`).
41
+
42
+ ## Splits
43
+
44
+ | Split | Documents | Samples |
45
+ |---|---:|---:|
46
+ | `test.jsonl` | 3,427 | 4,151 |
47
+
48
+ Images live under `images/` (3,427 total): `images/real/` (427 real-world documents, JPG) and `images/synthetic/` (3,000 procedurally generated documents, PNG).
49
+
50
+ ## Links
51
+
52
+ Github:
53
+ - [ImplicitIR](https://github.com/VXRealLimited/ImplicitIR) — training code (SFT + GRPO) that consumes this dataset
54
+ - [ImplicitIR-Benchmark](https://github.com/VXRealLimited/ImplicitIR-Benchmark) — serves and scores checkpoints trained on this dataset