firsha commited on
Commit
2977849
·
1 Parent(s): 1eb464b

adding qna data, readme, notice

Browse files
NOTICES.md ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # OCB Third-Party Notices
2
+
3
+ This file documents third-party content redistributed in the OCB
4
+ public release and the licenses under which it is redistributed.
5
+
6
+ ## Hosted reference files from Kaggle
7
+
8
+ The following file is redistributed under the MIT License. The
9
+ original MIT license notice is preserved here per MIT terms.
10
+
11
+ - `games_may2024_cleaned_sampled.csv`
12
+ Source: https://www.kaggle.com/datasets/artermiloff/steam-games-dataset
13
+ License: MIT
14
+ Original copyright notice: [paste the MIT notice from the Kaggle dataset's LICENSE file]
15
+
16
+ The following file is redistributed under CC0 1.0 (no attribution
17
+ required, included here for transparency):
18
+
19
+ - `fraud_detection_bank_dataset.csv`
20
+ Source: https://www.kaggle.com/datasets/volodymyrgavrysh/fraud-detection-bank-dataset-20
21
+ License: CC0 1.0
22
+
23
+ ## Hosted reference files from U.S. government open-data portals
24
+
25
+ Files from these sources are U.S. Government Work / Public Domain
26
+ or are released under open-data terms permitting redistribution.
27
+ No attribution is legally required; the URL manifest preserves source
28
+ attribution for transparency.
29
+
30
+ ## URL-referenced files
31
+
32
+ Files referenced via the URL manifest retain their original licenses.
33
+ OCB does not assert a license over these files.
README.md CHANGED
@@ -1,3 +1,100 @@
1
  ---
2
  license: cdla-permissive-2.0
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cdla-permissive-2.0
3
+ language:
4
+ - en
5
+ tags:
6
+ - benchmark
7
+ - document-comprehension
8
+ - office-documents
9
+ - question-answering
10
+ - llm-evaluation
11
+ pretty_name: OfficeComprehensionBenchmark (OCB)
12
+ size_categories:
13
+ - 1K<n<10K
14
  ---
15
+
16
+ # OfficeComprehensionBenchmark (OCB)
17
+
18
+ OCB is a benchmark for evaluating document comprehension and grounded reasoning over Microsoft Office files (Word, Excel, PowerPoint). It comprises two tracks:
19
+
20
+ - **File Fidelity Q&A** — measures structural and visual perception of document artifacts (text, tables, charts, formulas, formatting, embedded objects).
21
+ - **Domain Q&A** — measures expert-level reasoning over real-world business documents across 12 industries.
22
+
23
+ ## Companion repository
24
+
25
+ Evaluation prompts, judge scripts, file-download utilities, and PDF→Office conversion scripts are maintained in the companion GitHub repository:
26
+
27
+ **https://github.com/confanon/OfficeComprehensionBench**
28
+
29
+ This Hugging Face dataset hosts the questions, reference answers, atomic assertion rubrics, the URL manifest for externally-hosted reference files, and the redistributable subset of reference files. Most reproduction tasks (running judges, fetching URL-referenced files, converting source PDFs to native Office formats) require the GitHub repository.
30
+
31
+ ## Benchmark size
32
+
33
+ - **File Fidelity track:** 244 files, 922 queries
34
+ - **Domain Q&A track:** 124 files, 120 queries, 8,450 atomic assertions across 12 industries
35
+
36
+ These numbers reflect the full evaluation set reported in the accompanying paper. See the *May 07 Update* note below for the relationship between the evaluated set and the publicly released artifact.
37
+
38
+ ## Distribution model
39
+
40
+ OCB uses a hybrid distribution model driven by source licensing:
41
+
42
+ - **Hosted directly on Hugging Face** — reference files whose source license permits redistribution under CDLA-Permissive-2.0, plus all questions, reference answers, and assertion rubrics.
43
+ - **Referenced via URL manifest** — reference files whose source licensing does not permit redistribution. The manifest is shipped with this dataset; the GitHub repository contains a release script that downloads each file from its original public source and, where required, converts it from its source format (e.g., PDF) into the native Office format (.docx, .xlsx, .pptx) used by the benchmark.
44
+
45
+ ## May 07 Update
46
+
47
+ Three Excel files originally included in the evaluation set are **excluded from this public release for licensing reasons**:
48
+
49
+ - `winemag-data-130k-v2_sampled.csv`
50
+ - `Banking_Call_Data.csv`
51
+ - `brazilian_ecommerce_cleaned.csv`
52
+
53
+ These files are sourced from Kaggle datasets published under CC BY-NC-SA 4.0, which is incompatible with the CDLA-Permissive-2.0 release license. The associated File Fidelity queries that target these files are also excluded from the public release.
54
+
55
+ **Reported benchmark numbers in the paper reflect the full evaluation set including these files.** Users wishing to reproduce the full evaluation can obtain the three source datasets directly from Kaggle under the original publishers' terms; URLs are listed in the URL manifest alongside the other externally-referenced files.
56
+
57
+ ## License
58
+
59
+ This dataset is released under the **Community Data License Agreement – Permissive, Version 2.0 (CDLA-Permissive-2.0)** — https://cdla.dev/permissive-2-0/.
60
+
61
+ Sub-components carry the following licenses:
62
+
63
+ - **OCB-authored content** (questions, reference answers, atomic assertions, expert-authored reference files): CDLA-Permissive-2.0.
64
+ - **Hosted reference files from U.S. government open-data portals**: U.S. Government Work / Public Domain (federal sources) or open-data terms permitting redistribution (state/local sources). Redistributed under CDLA-Permissive-2.0.
65
+ - **Hosted reference files from Kaggle**: only files under CC0 1.0 or MIT are redistributed. Attribution and notice obligations of MIT-licensed sources are preserved in the `NOTICES.md` file in this repository.
66
+ - **URL-referenced files**: retain their original licenses; OCB does not assert a license over these files. Users fetch them directly from the original publishers under those publishers' terms.
67
+
68
+ See `NOTICES.md` in this repository for per-source attribution and notice details.
69
+
70
+ ## Intended use
71
+
72
+ OCB is intended for evaluation, not training. Validated use cases include:
73
+
74
+ - Benchmarking model accuracy on grounded question answering over structured and semi-structured Office files
75
+ - Comparing models on cross-format reasoning (e.g., Word + Excel inputs)
76
+ - Evaluating fidelity of structural and visual document perception
77
+ - Ablation studies on retrieval and grounding components for Office-document pipelines
78
+
79
+ Not validated, and not recommended:
80
+
81
+ - Use as training data
82
+ - Evaluation on file formats outside .docx / .xlsx / .pptx
83
+ - High-stakes deployment decisions in regulated domains (medical, legal, financial advice) on the basis of OCB scores alone
84
+
85
+ ## Citation
86
+
87
+ ```bibtex
88
+ @misc{ocb2026,
89
+ title = {OfficeComprehensionBenchmark},
90
+ author = {Anonymous},
91
+ year = {2026},
92
+ note = {Under review at NeurIPS 2026 Evaluations \& Datasets Track}
93
+ }
94
+ ```
95
+
96
+ ## Maintenance
97
+
98
+ Versioned releases are maintained on Hugging Face under this repository. Issues, corrections, and erratum requests are tracked through the dataset repository's discussion page. We commit to maintaining the dataset for at least 3 years post-publication.
99
+
100
+ If an externally-hosted file becomes unavailable from its original source, we will either replace it with an equivalent example or document the removal in the errata.
data/{ocb-00000-of-00001.parquet → ocb_qna_data.parquet} RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:6859afe7462ac87b9a76a7f524571d773ec3b67f9725b0ee7ebe2c901797140d
3
- size 29574
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f18c0fe239b43a060bbbefd4fab52f97cabefc7fde53a841b0b45ffc348d245b
3
+ size 472795