mkonomi commited on
Commit
572c2b9
·
verified ·
1 Parent(s): bc5cf0a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +30 -18
README.md CHANGED
@@ -1441,27 +1441,39 @@ dataset_info:
1441
  dataset_size: 93541
1442
  ---
1443
 
1444
- # Greek MMLU Parquet Dataset
 
1445
 
1446
- This dataset contains the Greek MMLU benchmark converted to Parquet format.
1447
- It covers 46 subjects, including a combined 'All' split.
 
 
1448
 
1449
- ## Structure
1450
- - **Configs**: Each subject is a separate configuration (subset).
1451
- - **Splits**:
1452
- - `test`: Public test set (High volume)
1453
- - `dev`: Dev/Few-shot set (5-shot)
1454
 
1455
- ## Usage
1456
- ```python
1457
- from datasets import load_dataset
 
 
1458
 
1459
- # Load specific subject
1460
- ds = load_dataset("dascim/GreekMMLU", "Agriculture_Professional")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1461
 
1462
- # Load all data combined
1463
- ds = load_dataset("dascim/GreekMMLU", "All")
1464
- ```
1465
 
1466
- ## Subjects
1467
- `Accounting`, `Agriculture_Professional`, `Agriculture_University`, `Art_Professional`, `Art_Secondary_School`, `Art_University`, `Biology`, `Chemistry`, `Civil_Engineering`, `Clinical_Knowledge`, `Computer_Networks_and_Security`, `Computer_Science_Professional`, `Computer_Science_University`, `Driving_Rules`, `Economics_Professional`, `Economics_University`, `Education_Professional`, `Education_University`, `Electrical_Engineering`, `General_Knowledge`, `Geography_Primary_School`, `Geography_Secondary_School`, `Government_and_Politics_Primary_School`, `Government_and_Politics_Secondary_School`, `Greek_History_Primary_School`, `Greek_History_Professional`, `Greek_History_Secondary_School`, `Greek_Literature`, `Greek_Mythology`, `Greek_Traditions`, `Law`, `Management_Professional`, `Management_University`, `Maritime_Safety_and_Rescue_Operations`, `Mathematics`, `Medicine_Professional`, `Medicine_University`, `Modern_Greek_Language_Primary_School`, `Modern_Greek_Language_Secondary_School`, `Physics_Primary_School`, `Physics_Professional`, `Physics_University`, `Prehistory`, `World_History`, `World_Religions`
 
1441
  dataset_size: 93541
1442
  ---
1443
 
1444
+ # GreekMMLU
1445
+ GreekMMLU is a native-sourced benchmark for evaluating massive multitask language understanding in Greek, built from authentic Greek exam-style multiple-choice questions (MCQ) rather than machine-translated English benchmarks.
1446
 
1447
+ 21,805 questions across 45 subjects
1448
+ 4 high-level groups: STEM, Humanities, Social Sciences, Other
1449
+ Difficulty/education levels spanning Primary → Secondary → University → Professional (+ an NA bucket)
1450
+ Public vs. private split for contamination-resistant evaluation: 16,857 public / 4,948 private (leaderboard)
1451
 
1452
+ # Links
1453
+ Dataset on Hugging Face: https://huggingface.co/datasets/dascim/GreekMMLU
1454
+ Private leaderboard: https://huggingface.co/spaces/yangzhang33/GreekMMLU-Leaderboard
 
 
1455
 
1456
+ # What makes GreekMMLU different?
1457
+ Most “Greek MMLU” style evaluations rely on machine translation from English. GreekMMLU instead uses original Greek content sourced or authored from real educational/professional assessments, aiming to preserve:
1458
+ Greek morphology and punctuation
1459
+ Greek-specific cultural / institutional knowledge (e.g., Greek History, Greek Traditions)
1460
+ Realistic exam difficulty calibration
1461
 
1462
+ # Task format
1463
+ Multiple choice, 2–4 options, exactly one correct.
1464
+ The harness prompt uses Greek option labels (Α, Β, Γ, Δ) for a fully native evaluation setup.
1465
+
1466
+
1467
+ # Subjects (high-level)
1468
+ GreekMMLU includes 45 subjects, grouped into:
1469
+
1470
+ **Humanities** (e.g., Art; Greek History; Greek Literature; Greek Mythology; Law; World Religions)
1471
+ **STEM** (e.g., Mathematics; Physics; Computer Science; Electrical Engineering; Medicine)
1472
+ **Social Sciences** (e.g., Economics; Education; Government & Politics; Modern Greek Language; Accounting)
1473
+ **Other** (e.g., Driving Rules; General Knowledge; Maritime Safety and Rescue Operations)
1474
+ See the paper for the full taxonomy and educational-level breakdown.
1475
+
1476
+ # Citation
1477
+ If you use GreekMMLU in your work, please cite the paper:
1478
 
 
 
 
1479