meetdoshi90 commited on
Commit
351ae4d
·
verified ·
1 Parent(s): 3d77039

Upload folder using huggingface_hub

Browse files
.gitattributes CHANGED
@@ -57,3 +57,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
57
  # Video files - compressed
58
  *.mp4 filter=lfs diff=lfs merge=lfs -text
59
  *.webm filter=lfs diff=lfs merge=lfs -text
 
 
 
 
57
  # Video files - compressed
58
  *.mp4 filter=lfs diff=lfs merge=lfs -text
59
  *.webm filter=lfs diff=lfs merge=lfs -text
60
+ corpus_linearized.jsonl filter=lfs diff=lfs merge=lfs -text
61
+ corpus_md.jsonl filter=lfs diff=lfs merge=lfs -text
62
+ corpus_structure.jsonl filter=lfs diff=lfs merge=lfs -text
README.md CHANGED
@@ -1,3 +1,184 @@
1
- ---
2
- license: cc-by-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - derived
4
+ language:
5
+ - eng
6
+ license: cc-by-4.0
7
+ multilinguality: monolingual
8
+ task_categories:
9
+ - text-retrieval
10
+ task_ids:
11
+ - document-retrieval
12
+ tags:
13
+ - table-retrieval
14
+ - text
15
+ pretty_name: OpenWikiTables
16
+ config_names:
17
+ - default
18
+ - queries
19
+ - corpus_linearized
20
+ - corpus_md
21
+ - corpus_structure
22
+
23
+ dataset_info:
24
+ - config_name: default
25
+ features:
26
+ - name: qid
27
+ dtype: string
28
+ - name: did
29
+ dtype: string
30
+ - name: score
31
+ dtype: int32
32
+ splits:
33
+ - name: test
34
+ num_bytes: 443966
35
+ num_examples: 8425
36
+ - config_name: queries
37
+ features:
38
+ - name: _id
39
+ dtype: string
40
+ - name: text
41
+ dtype: string
42
+ splits:
43
+ - name: test_queries
44
+ num_bytes: 916628
45
+ num_examples: 6602
46
+ - config_name: corpus_linearized
47
+ features:
48
+ - name: _id
49
+ dtype: string
50
+ - name: title
51
+ dtype: string
52
+ - name: text
53
+ dtype: string
54
+ splits:
55
+ - name: corpus_linearized
56
+ num_bytes: 37689839
57
+ num_examples: 54282
58
+ - config_name: corpus_md
59
+ features:
60
+ - name: _id
61
+ dtype: string
62
+ - name: title
63
+ dtype: string
64
+ - name: text
65
+ dtype: string
66
+ splits:
67
+ - name: corpus_md
68
+ num_bytes: 47610671
69
+ num_examples: 54282
70
+ - config_name: corpus_structure
71
+ features:
72
+ - name: _id
73
+ dtype: string
74
+ - name: title
75
+ dtype: string
76
+ - name: text
77
+ dtype: string
78
+ - name: meta_data
79
+ dtype: string
80
+ - name: headers
81
+ sequence: string
82
+ - name: cells
83
+ sequence: string
84
+ splits:
85
+ - name: corpus_structure
86
+ num_bytes: 86193232
87
+ num_examples: 54282
88
+
89
+ configs:
90
+ - config_name: default
91
+ data_files:
92
+ - split: test
93
+ path: test_qrels.jsonl
94
+ - config_name: queries
95
+ data_files:
96
+ - split: test_queries
97
+ path: test_queries.jsonl
98
+ - config_name: corpus_linearized
99
+ data_files:
100
+ - split: corpus_linearized
101
+ path: corpus_linearized.jsonl
102
+ - config_name: corpus_md
103
+ data_files:
104
+ - split: corpus_md
105
+ path: corpus_md.jsonl
106
+ - config_name: corpus_structure
107
+ data_files:
108
+ - split: corpus_structure
109
+ path: corpus_structure.jsonl
110
+ ---
111
+
112
+ # OpenWikiTables Retrieval
113
+
114
+ This dataset is part of a Table + Text retrieval benchmark. Includes queries and relevance judgments across test split(s), with corpus in 3 format(s): `corpus_linearized`, `corpus_md`, `corpus_structure`.
115
+
116
+ ## Configs
117
+
118
+ | Config | Description | Split(s) |
119
+ |---|---|---|
120
+ | `default` | Relevance judgments (qrels): `qid`, `did`, `score` | `test` |
121
+ | `queries` | Query IDs and text | `test_queries` |
122
+ | `corpus_linearized` | Linearized table representation | `corpus_linearized` |
123
+ | `corpus_md` | Markdown table representation | `corpus_md` |
124
+ | `corpus_structure` | Structured corpus with `headers`, `cells`, `meta_data`. `text` field corresponds to linearized Text + Table. | `corpus_structure` |
125
+
126
+ ## `corpus_structure` additional fields
127
+
128
+ | Field | Type | Description |
129
+ |---|---|---|
130
+ | `meta_data` | string | Table metadata / caption |
131
+ | `headers` | list[string] | Column headers |
132
+ | `cells` | list[string] | Flattened cell values |
133
+
134
+ ## TableIR Benchmark Statistics
135
+
136
+ | Dataset | Structured | #Train | #Dev | #Test | #Corpus |
137
+ |---|:---:|---:|---:|---:|---:|
138
+ | OpenWikiTables | ✓ | 53.8k | 6.6k | 6.6k | 24.7k |
139
+ | NQTables | ✓ | 9.6k | 1.1k | 1k | 170k |
140
+ | FeTaQA | ✓ | 7.3k | 1k | 2k | 10.3k |
141
+ | OTT-QA (small) | ✓ | 41.5k | 2.2k | -- | 8.8k |
142
+ | MultiHierTT | ✗ | -- | 929 | -- | 9.9k |
143
+ | AIT-QA | ✗ | -- | -- | 515 | 1.9k |
144
+ | StatcanRetrieval | ✗ | -- | -- | 870 | 5.9k |
145
+ | watsonxDocsQA | ✗ | -- | -- | 30 | 1.1k |
146
+
147
+ ## Citation
148
+
149
+ If you use **TableIR Eval: Table-Text IR Evaluation Collection**, please cite:
150
+
151
+ ```bibtex
152
+ @misc{doshi2026tableir,
153
+ title = {TableIR Eval: Table-Text IR Evaluation Collection},
154
+ author = {Doshi, Meet and Boni, Odellia and Kumar, Vishwajeet and Sen, Jaydeep and Joshi, Sachindra},
155
+ year = {2026},
156
+ institution = {IBM Research},
157
+ howpublished = {https://huggingface.co/collections/ibm-research/table-text-ir-evaluation},
158
+ note = {Hugging Face dataset collection}
159
+ }
160
+ ```
161
+
162
+ All credit goes to original authors. Please cite their work:
163
+ ```bibtex
164
+ @inproceedings{kweon-etal-2023-open,
165
+ title = "Open-{W}iki{T}able : Dataset for Open Domain Question Answering with Complex Reasoning over Table",
166
+ author = "Kweon, Sunjun and
167
+ Kwon, Yeonsu and
168
+ Cho, Seonhee and
169
+ Jo, Yohan and
170
+ Choi, Edward",
171
+ editor = "Rogers, Anna and
172
+ Boyd-Graber, Jordan and
173
+ Okazaki, Naoaki",
174
+ booktitle = "Findings of the Association for Computational Linguistics: ACL 2023",
175
+ month = jul,
176
+ year = "2023",
177
+ address = "Toronto, Canada",
178
+ publisher = "Association for Computational Linguistics",
179
+ url = "https://aclanthology.org/2023.findings-acl.526/",
180
+ doi = "10.18653/v1/2023.findings-acl.526",
181
+ pages = "8285--8297",
182
+ abstract = "Despite recent interest in open domain question answering (ODQA) over tables, many studies still rely on datasets that are not truly optimal for the task with respect to utilizing structural nature of table. These datasets assume answers reside as a single cell value and do not necessitate exploring over multiple cells such as aggregation, comparison, and sorting. Thus, we release Open-WikiTable, the first ODQA dataset that requires complex reasoning over tables. Open-WikiTable is built upon WikiSQL and WikiTableQuestions to be applicable in the open-domain setting. As each question is coupled with both textual answers and SQL queries, Open-WikiTable opens up a wide range of possibilities for future research, as both reader and parser methods can be applied. The dataset is publicly available."
183
+ }
184
+ ```
corpus_linearized.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aeeb5fe767ab58a28e476c801ad5e05843e2efe11d80864defb288a2ba9a9458
3
+ size 37689839
corpus_md.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:45c431db9ecb84e8b2ffe139a3b0b0ab208fdcf2b95ab714fc042db828cd4cd4
3
+ size 47610671
corpus_structure.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2d79840e9df0fdaa09a7c0101bd7fb4b78574c2c69c081d5bf4eb09e8d107bfe
3
+ size 86193232
test_qrels.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
test_qrels.tsv ADDED
The diff for this file is too large to render. See raw diff
 
test_queries.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
train_linearized/config.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "name": "train.jsonl.gz",
4
+ "lines": 53819,
5
+ "weight": 53819
6
+ },
7
+ {
8
+ "name": "valid.jsonl.gz",
9
+ "lines": 6602,
10
+ "weight": 6602
11
+ },
12
+ {
13
+ "name": "test.jsonl.gz",
14
+ "lines": 6602,
15
+ "weight": 6602
16
+ }
17
+ ]
train_linearized/test.jsonl.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0d9665ed6eda2beeaa72434ba654c876ba40a525d80d95dd4f8ff8ffb5109f3e
3
+ size 2733736
train_linearized/train.jsonl.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:162cabe8575b0d2397cf8c23ee481a8c98ffdf4901551b85288591c72ece6951
3
+ size 21694650
train_linearized/valid.jsonl.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f01aa33e4e5bd9714c0cdf65ec12043e1041605967f2ab1515f580c01c9fb684
3
+ size 2687456
train_structure/config.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "name": "train.jsonl.gz",
4
+ "lines": 53819,
5
+ "weight": 53819
6
+ },
7
+ {
8
+ "name": "valid.jsonl.gz",
9
+ "lines": 6602,
10
+ "weight": 6602
11
+ },
12
+ {
13
+ "name": "test.jsonl.gz",
14
+ "lines": 6602,
15
+ "weight": 6602
16
+ }
17
+ ]
train_structure/test.jsonl.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6bb172bba191ad9674fb16bfea3220ccd43154bc313aadd81d7b9aa868074dca
3
+ size 4350007
train_structure/train.jsonl.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:71624efda9ff816e47587c4c0de40e313ed2dbaa49f241dccd1936adfcc3b852
3
+ size 34701971
train_structure/valid.jsonl.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e3ee219070863e020dd09c94d6837bd891f4d6a2d3643fa524bdfce9e234b449
3
+ size 4242781