Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,31 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- text-classification
|
| 5 |
+
- question-answering
|
| 6 |
+
language:
|
| 7 |
+
- en
|
| 8 |
+
pretty_name: MODEL-PERSONAS
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
|
| 12 |
+
# MODEL-PERSONAS
|
| 13 |
+
|
| 14 |
+
## Overview
|
| 15 |
+
|
| 16 |
+
This is the MODEL-PERSONAS dataset from the paper:
|
| 17 |
+
https://aclanthology.org/2024.naacl-long.295/
|
| 18 |
+
|
| 19 |
+
"You Don’t Need a Personality Test to Know These Models Are Unreliable: Assessing the Reliability of Large Language Models on Psychometric Instruments"
|
| 20 |
+
|
| 21 |
+
It contains psychometric questions and their prompt variations for evaluating LLM response consistency.
|
| 22 |
+
|
| 23 |
+
|
| 24 |
+
## Usage
|
| 25 |
+
|
| 26 |
+
You can load the dataset with:
|
| 27 |
+
|
| 28 |
+
```python
|
| 29 |
+
from datasets import load_dataset
|
| 30 |
+
|
| 31 |
+
dataset = load_dataset("bangzhao/model-personas")
|