Datasets:
ZoneTwelve
commited on
Commit
•
0d61a3e
1
Parent(s):
884eed0
update: READMD & Loading script tmmluplus.py
Browse files- README.md +16 -4
- tmmluplus.py +2 -2
README.md
CHANGED
@@ -545,6 +545,14 @@ configs:
|
|
545 |
path: "data/taiwanese_hokkien_val.csv"
|
546 |
- split: test
|
547 |
path: "data/taiwanese_hokkien_test.csv"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
548 |
---
|
549 |
# TMMLU+ : Large scale traditional chinese massive multitask language understanding
|
550 |
|
@@ -567,12 +575,13 @@ task_list = [
|
|
567 |
'education_(profession_level)', 'economics', 'veterinary_pharmacology', 'nautical_science', 'occupational_therapy_for_psychological_disorders',
|
568 |
'basic_medical_science', 'macroeconomics', 'trade', 'chinese_language_and_literature', 'tve_design', 'junior_science_exam', 'junior_math_exam', 'junior_chinese_exam',
|
569 |
'junior_social_studies', 'tve_mathematics', 'tve_chinese_language', 'tve_natural_sciences', 'junior_chemistry', 'music', 'education', 'three_principles_of_people',
|
570 |
-
'taiwanese_hokkien'
|
|
|
571 |
]
|
572 |
for task in task_list:
|
573 |
-
val = load_dataset('
|
574 |
-
dev = load_dataset('
|
575 |
-
test = load_dataset('
|
576 |
```
|
577 |
|
578 |
For each dataset split
|
@@ -650,3 +659,6 @@ Results via [ievals](https://github.com/iKala/ievals) ( settings : 0-shot direct
|
|
650 |
}
|
651 |
```
|
652 |
|
|
|
|
|
|
|
|
545 |
path: "data/taiwanese_hokkien_val.csv"
|
546 |
- split: test
|
547 |
path: "data/taiwanese_hokkien_test.csv"
|
548 |
+
- config_name: linear_algebra
|
549 |
+
datafiles:
|
550 |
+
- split: train
|
551 |
+
path: "data/linear_algebra_dev.csv"
|
552 |
+
- split: validation
|
553 |
+
path: "data/linear_algebra_val.csv"
|
554 |
+
- split: test
|
555 |
+
path: "data/linear_algebra_test.csv"
|
556 |
---
|
557 |
# TMMLU+ : Large scale traditional chinese massive multitask language understanding
|
558 |
|
|
|
575 |
'education_(profession_level)', 'economics', 'veterinary_pharmacology', 'nautical_science', 'occupational_therapy_for_psychological_disorders',
|
576 |
'basic_medical_science', 'macroeconomics', 'trade', 'chinese_language_and_literature', 'tve_design', 'junior_science_exam', 'junior_math_exam', 'junior_chinese_exam',
|
577 |
'junior_social_studies', 'tve_mathematics', 'tve_chinese_language', 'tve_natural_sciences', 'junior_chemistry', 'music', 'education', 'three_principles_of_people',
|
578 |
+
'taiwanese_hokkien',
|
579 |
+
'linear_algebra'
|
580 |
]
|
581 |
for task in task_list:
|
582 |
+
val = load_dataset('ZoneTwelve/tmmluplus', task)['validation']
|
583 |
+
dev = load_dataset('ZoneTwelve/tmmluplus', task)['train']
|
584 |
+
test = load_dataset('ZoneTwelve/tmmluplus', task)['test']
|
585 |
```
|
586 |
|
587 |
For each dataset split
|
|
|
659 |
}
|
660 |
```
|
661 |
|
662 |
+
> CONTENT WARNING
|
663 |
+
> This is a modification of ikala/tmmluplus, with minor alterations made to facilitate the implementation for lm-evaluation-harness purposes.
|
664 |
+
> [More details on Discussions](https://huggingface.co/datasets/ZoneTwelve/tmmluplus/discussions/1)
|
tmmluplus.py
CHANGED
@@ -37,10 +37,10 @@ task_list = [
|
|
37 |
'trust_practice', 'geography_of_taiwan', 'physical_education', 'auditing', 'administrative_law',
|
38 |
'basic_medical_science', 'macroeconomics', 'trade', 'chinese_language_and_literature',
|
39 |
'tve_design', 'junior_science_exam', 'junior_math_exam', 'junior_chinese_exam',
|
40 |
-
'junior_social_studies', '
|
41 |
'tve_natural_sciences', 'junior_chemistry', 'music', 'education',
|
42 |
'three_principles_of_people', 'taiwanese_hokkien',
|
43 |
-
'engineering_math'
|
44 |
]
|
45 |
|
46 |
_URLs = {
|
|
|
37 |
'trust_practice', 'geography_of_taiwan', 'physical_education', 'auditing', 'administrative_law',
|
38 |
'basic_medical_science', 'macroeconomics', 'trade', 'chinese_language_and_literature',
|
39 |
'tve_design', 'junior_science_exam', 'junior_math_exam', 'junior_chinese_exam',
|
40 |
+
'junior_social_studies', 'tve_mathematics', 'tve_chinese_language',
|
41 |
'tve_natural_sciences', 'junior_chemistry', 'music', 'education',
|
42 |
'three_principles_of_people', 'taiwanese_hokkien',
|
43 |
+
'engineering_math', 'linear_algebra'
|
44 |
]
|
45 |
|
46 |
_URLs = {
|