Datasets:
Tasks:
Question Answering
Modalities:
Text
Formats:
csv
Languages:
Chinese
Size:
10K - 100K
License:
Update README.md
Browse files
README.md
CHANGED
@@ -575,6 +575,18 @@ for task in task_list:
|
|
575 |
test = load_dataset('ikala/tmmluplus', task)['test']
|
576 |
```
|
577 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
578 |
Statistic on all four categories : STEM, Social Science, Humanities, Other
|
579 |
|
580 |
| Category | Test | Dev | Validation |
|
|
|
575 |
test = load_dataset('ikala/tmmluplus', task)['test']
|
576 |
```
|
577 |
|
578 |
+
For each dataset split
|
579 |
+
|
580 |
+
```python
|
581 |
+
for row in test:
|
582 |
+
print(row)
|
583 |
+
break
|
584 |
+
>> Dataset({
|
585 |
+
features: ['question', 'A', 'B', 'C', 'D', 'answer'],
|
586 |
+
num_rows: 11
|
587 |
+
})
|
588 |
+
```
|
589 |
+
|
590 |
Statistic on all four categories : STEM, Social Science, Humanities, Other
|
591 |
|
592 |
| Category | Test | Dev | Validation |
|