Datasets:
socialnormdataset
commited on
Commit
β’
43de4f8
1
Parent(s):
a289ae7
Update README.md
Browse files
README.md
CHANGED
@@ -16,13 +16,14 @@ tags:
|
|
16 |
|
17 |
This dataset is proposed in the NAACL 2024 paper: [Measuring Social Norms of Large Language Models](https://arxiv.org/abs/2404.02491).
|
18 |
|
19 |
-
We present a new challenge to examine whether large language models understand social norms. In contrast to existing datasets, our dataset requires a fundamental understanding of social norms to solve. Our dataset features the largest set of social norm skills, consisting of
|
20 |
|
21 |
## Authors
|
22 |
Ye Yuan, Kexin Tang, Jianhao Shen, Ming Zhang*, Chenguang Wang*
|
23 |
|
24 |
-
##
|
25 |
- **Code:** https://github.com/socialnormdataset/socialagent
|
|
|
26 |
- **Paper:** https://arxiv.org/abs/2404.02491
|
27 |
|
28 |
## Dataset Structure
|
@@ -48,27 +49,26 @@ And the detailed description of the features are as follows:
|
|
48 |
- `subject`: `str`
|
49 |
- The subject of the question, one of `social studies`, `language arts`.
|
50 |
- `grade`: `str`
|
51 |
-
- The grade of the question.
|
52 |
- `skill`: `str`
|
53 |
-
- The skill of the question.
|
54 |
- `question`: `str`
|
55 |
-
- The
|
56 |
- `choices`: `Optional[List[str]]`
|
57 |
- The choices of the question.
|
58 |
- `answer_idx`: `int`
|
59 |
- The index of the correct answer in the `choices`.
|
60 |
|
61 |
-
## How to
|
62 |
Please refer to our [code](https://github.com/socialnormdataset/socialagent) for the usage of evaluation on the dataset.
|
63 |
|
64 |
## Citation
|
65 |
```bibtex
|
66 |
@inproceedings{yuan2024measuring,
|
67 |
-
title={Measuring Social Norms of Large Language Models},
|
68 |
author={Ye Yuan and Kexin Tang and Jianhao Shen and Ming Zhang and Chenguang Wang},
|
69 |
year={2024},
|
70 |
-
booktitle={
|
71 |
-
publisher={Association for Computational Linguistics}
|
72 |
}
|
73 |
```
|
74 |
|
|
|
16 |
|
17 |
This dataset is proposed in the NAACL 2024 paper: [Measuring Social Norms of Large Language Models](https://arxiv.org/abs/2404.02491).
|
18 |
|
19 |
+
We present a new challenge to examine whether large language models understand social norms. In contrast to existing datasets, our dataset requires a fundamental understanding of social norms to solve. Our dataset features the largest set of social norm skills, consisting of 402 skills and 12,383 questions covering a wide set of social norms ranging from opinions and arguments to culture and laws. We design our dataset according to the K-12 curriculum. This enables the direct comparison of the social understanding of large language models to humans, more specifically, elementary students. While prior work generates nearly random accuracy on our benchmark, recent large language models such as GPT3.5-Turbo and LLaMA2-Chat are able to improve the performance significantly, only slightly below human performance. We then propose a multi-agent framework based on large language models to improve the models' ability to understand social norms. This method further improves large language models to be on par with humans. Given the increasing adoption of large language models in real-world applications, our finding is particularly important and presents a unique direction for future improvements.
|
20 |
|
21 |
## Authors
|
22 |
Ye Yuan, Kexin Tang, Jianhao Shen, Ming Zhang*, Chenguang Wang*
|
23 |
|
24 |
+
## Resources
|
25 |
- **Code:** https://github.com/socialnormdataset/socialagent
|
26 |
+
- **Dataset:** https://huggingface.co/datasets/socialnormdataset/social
|
27 |
- **Paper:** https://arxiv.org/abs/2404.02491
|
28 |
|
29 |
## Dataset Structure
|
|
|
49 |
- `subject`: `str`
|
50 |
- The subject of the question, one of `social studies`, `language arts`.
|
51 |
- `grade`: `str`
|
52 |
+
- The grade level information of the question.
|
53 |
- `skill`: `str`
|
54 |
+
- The skill level information of the question.
|
55 |
- `question`: `str`
|
56 |
+
- The question text.
|
57 |
- `choices`: `Optional[List[str]]`
|
58 |
- The choices of the question.
|
59 |
- `answer_idx`: `int`
|
60 |
- The index of the correct answer in the `choices`.
|
61 |
|
62 |
+
## How to Use
|
63 |
Please refer to our [code](https://github.com/socialnormdataset/socialagent) for the usage of evaluation on the dataset.
|
64 |
|
65 |
## Citation
|
66 |
```bibtex
|
67 |
@inproceedings{yuan2024measuring,
|
68 |
+
title={Measuring Social Norms of Large Language Models},
|
69 |
author={Ye Yuan and Kexin Tang and Jianhao Shen and Ming Zhang and Chenguang Wang},
|
70 |
year={2024},
|
71 |
+
booktitle={NAACL},
|
|
|
72 |
}
|
73 |
```
|
74 |
|