Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,71 @@
|
|
| 1 |
---
|
| 2 |
license: cc-by-nc-sa-4.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: cc-by-nc-sa-4.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- multiple-choice
|
| 5 |
+
- question-answering
|
| 6 |
+
language:
|
| 7 |
+
- zh
|
| 8 |
+
tags:
|
| 9 |
+
- ancient Chinese
|
| 10 |
+
- llm
|
| 11 |
+
- evaluation
|
| 12 |
+
pretty_name: AC-EVAL
|
| 13 |
+
size_categories:
|
| 14 |
+
- 1K<n<10K
|
| 15 |
---
|
| 16 |
+
|
| 17 |
+
# AC-EVAL: Evaluating Ancient Chinese Language Understanding in Large Language Models
|
| 18 |
+
|
| 19 |
+
- **Homepage:** [https://github.com/yuting-wei/AC-EVAL](https://github.com/yuting-wei/AC-EVAL)
|
| 20 |
+
- **Repository:** [https://huggingface.co/datasets/yuting-wei/AC-EVAL](https://huggingface.co/datasets/yuting-wei/AC-EVAL)
|
| 21 |
+
- **Paper:** [AC-EVAL: Evaluating Ancient Chinese Language Understanding in Large Language Models](http://arxiv.org/abs/2403.06574).
|
| 22 |
+
|
| 23 |
+
## Introduction
|
| 24 |
+
|
| 25 |
+
AC-EVAL presents a thorough evaluation suite for Large Language Models (LLMs) focusing on ancient Chinese, covering eras from the Pre-Qin period to the Qing dynasty. This suite includes 3245 multi-choice questions across 3 levels of difficulty and 13 diverse tasks, as shown below. Please check our [paper](http://arxiv.org/abs/2403.06574) for more details.
|
| 26 |
+
|
| 27 |
+
## Leaderboard
|
| 28 |
+
|
| 29 |
+
Latest leaderboard is in our [github](https://github.com/yuting-wei/AC-EVAL).
|
| 30 |
+
|
| 31 |
+
## Data
|
| 32 |
+
|
| 33 |
+
Each subject consists of two splits: dev and test. The dev set per subject consists of five exemplars with explanations for few-shot evaluation. The test set is for model evaluation. Labels on the test split are not released, users are required to submit their results to automatically obtain test accuracy. [How to submit?](https://github.com/yuting-wei/AC-EVAL)
|
| 34 |
+
|
| 35 |
+
Below is a dev example from art and cultural heritage:
|
| 36 |
+
| Question | A | B | C | D | Answer | Explanation |
|
| 37 |
+
|----------|---|---|---|---|--------|-------------|
|
| 38 |
+
| 五代南唐时期著名画家顾闳中的绘画名作是?(The famous painting masterpiece of Gu Hongzhong, a famous painter in the Southern Tang Dynasty during the Five Dynasties, is?) |《女史箴图》(Admonitions of the Instructress to the Court Ladies) | 《五牛图》(Five Buffaloes) | 《簪花仕女图》(Ladies with Flowers) | 《韩熙载夜宴图》(Han Xizai Giving a Night Banquet) | D | 让我们逐步分析。顾闳中的绘画名作是《韩熙载夜宴图》。《五牛图》是韩滉的作品,《簪花仕女图》是周昉的作品,《女史箴图》是顾恺之的作品。 (Let‘s analyze step by step. The famous painting by Gu Hongzhong is 'Han Xizai Giving a Night Banquet.' 'Five Buffaloes' is a work by Han Huang, 'Ladies with Flowers' is by Zhou Fang, and 'Admonitions of the Instructress to the Court Ladies' is by Gu Kaizhi.) |
|
| 39 |
+
|
| 40 |
+
#### Load data
|
| 41 |
+
|
| 42 |
+
```python
|
| 43 |
+
from datasets import load_dataset
|
| 44 |
+
aceval=load_dataset(r"yuting-wei/AC-EVAL", 'art_and_cultural_heritage')
|
| 45 |
+
print(aceval['test'][0])
|
| 46 |
+
```
|
| 47 |
+
#### Load all data at once
|
| 48 |
+
```python
|
| 49 |
+
task_list = ['historical_facts', 'geography', 'social_customs', 'art_and_cultural_heritage', 'philosophy_and_religion', 'lexical_pragmatics_analysis', 'allusions_and_idioms', 'word_sense_disambiguation', 'translation', 'event_extraction', 'sentence_pauses', 'summarization_and_analysis', 'poetry_appreciation']
|
| 50 |
+
from datasets import load_dataset
|
| 51 |
+
aceval = {k: load_dataset(r"yuting-wei/AC-EVAL", k) for k in task_list}
|
| 52 |
+
```
|
| 53 |
+
|
| 54 |
+
## Citation
|
| 55 |
+
|
| 56 |
+
Please cite our paper if you use our dataset.
|
| 57 |
+
```
|
| 58 |
+
@misc{wei2024aceval,
|
| 59 |
+
title={AC-EVAL: Evaluating Ancient Chinese Language Understanding in Large Language Models},
|
| 60 |
+
author={Yuting Wei and Yuanxing Xu and Xinru Wei and Simin Yang and Yangfu Zhu and Yuqing Li and Di Liu and Bin Wu},
|
| 61 |
+
year={2024},
|
| 62 |
+
eprint={2403.06574},
|
| 63 |
+
archivePrefix={arXiv},
|
| 64 |
+
primaryClass={cs.CL}
|
| 65 |
+
}
|
| 66 |
+
|
| 67 |
+
```
|
| 68 |
+
|
| 69 |
+
## Licenses
|
| 70 |
+
|
| 71 |
+
The AC-EVAL dataset is licensed under a [Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License](http://creativecommons.org/licenses/by-nc-sa/4.0/).
|