vaishali commited on
Commit
9052312
·
verified ·
1 Parent(s): 461825b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +26 -0
README.md CHANGED
@@ -21,3 +21,29 @@ dataset_info:
21
  download_size: 0
22
  dataset_size: 7653875060
23
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  download_size: 0
22
  dataset_size: 7653875060
23
  ---
24
+ # Dataset Card for "hindiTabQA"
25
+
26
+ # Usage
27
+ ```python
28
+ import pandas as pd
29
+ from datasets import load_dataset
30
+
31
+ spider_tableQA = load_dataset("vaishali/hindiTabQA")
32
+
33
+ for sample in spider_tableQA['train']:
34
+ question = sample['question']
35
+ input_table = pd.read_json(sample['table'], orient='split')
36
+ answer = pd.read_json(sample['answer'], orient='split')
37
+ ```
38
+ # BibTeX entry and citation info
39
+ ```
40
+ @misc{pal2024tablequestionansweringlowresourced,
41
+ title={Table Question Answering for Low-resourced Indic Languages},
42
+ author={Vaishali Pal and Evangelos Kanoulas and Andrew Yates and Maarten de Rijke},
43
+ year={2024},
44
+ eprint={2410.03576},
45
+ archivePrefix={arXiv},
46
+ primaryClass={cs.CL},
47
+ url={https://arxiv.org/abs/2410.03576},
48
+ }
49
+ ```