Update README.md
Browse files
README.md
CHANGED
@@ -28,9 +28,9 @@ dataset_info:
|
|
28 |
import pandas as pd
|
29 |
from datasets import load_dataset
|
30 |
|
31 |
-
|
32 |
|
33 |
-
for sample in
|
34 |
question = sample['question']
|
35 |
input_table = pd.read_json(sample['table'], orient='split')
|
36 |
answer = pd.read_json(sample['answer'], orient='split')
|
|
|
28 |
import pandas as pd
|
29 |
from datasets import load_dataset
|
30 |
|
31 |
+
hinditableQA = load_dataset("vaishali/hindiTabQA")
|
32 |
|
33 |
+
for sample in hinditableQA['train']:
|
34 |
question = sample['question']
|
35 |
input_table = pd.read_json(sample['table'], orient='split')
|
36 |
answer = pd.read_json(sample['answer'], orient='split')
|