Update README.md
Browse files
README.md
CHANGED
|
@@ -17,7 +17,7 @@ size_categories:
|
|
| 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/
|
| 21 |
- **Paper:** [AC-EVAL: Evaluating Ancient Chinese Language Understanding in Large Language Models](http://arxiv.org/abs/2403.06574).
|
| 22 |
|
| 23 |
## Introduction
|
|
@@ -41,14 +41,14 @@ Below is a dev example from art and cultural heritage:
|
|
| 41 |
|
| 42 |
```python
|
| 43 |
from datasets import load_dataset
|
| 44 |
-
aceval=load_dataset(r"yuting-wei/
|
| 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/
|
| 52 |
```
|
| 53 |
|
| 54 |
## Citation
|
|
|
|
| 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/aceval](https://huggingface.co/datasets/yuting-wei/aceval)
|
| 21 |
- **Paper:** [AC-EVAL: Evaluating Ancient Chinese Language Understanding in Large Language Models](http://arxiv.org/abs/2403.06574).
|
| 22 |
|
| 23 |
## Introduction
|
|
|
|
| 41 |
|
| 42 |
```python
|
| 43 |
from datasets import load_dataset
|
| 44 |
+
aceval=load_dataset(r"yuting-wei/aceval", '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/aceval", k) for k in task_list}
|
| 52 |
```
|
| 53 |
|
| 54 |
## Citation
|