Datasets:

Modalities:
Text
Formats:
csv
Languages:
English
ArXiv:
Libraries:
Datasets
pandas
License:
esind commited on
Commit
5cce004
·
1 Parent(s): 5c87e48

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +35 -4
README.md CHANGED
@@ -5,9 +5,40 @@ language:
5
  size_categories:
6
  - 1K<n<10K
7
  ---
8
- The data contains survey questions about global issues and opinions adapted from the World Values Survey (WVS) and Pew Global Attitudes Survey.
9
 
 
 
 
 
 
 
 
 
 
 
10
  The data is in a CSV file with the following columns:
11
- <li>question: The text of the survey question.</li>
12
- <li>selections: A dictionary where the key is the country name and the value is a list of percentages of respondents who selected each answer option for that country.</li>
13
- <li>options: A list of the answer options for the given question.</li>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  size_categories:
6
  - 1K<n<10K
7
  ---
8
+ # Dataset Card for Global Opinions Data
9
 
10
+ ## Dataset Summary
11
+ The data contains survey questions about global issues and opinions adapted from the [World Values Survey](https://www.worldvaluessurvey.org/) and [Pew Global Attitudes Survey](https://www.pewresearch.org/).
12
+
13
+ The data is further described in the paper: [Towards Measuring the Representation of Subjective Global Opinions in Language Models](placeholder).
14
+
15
+ ## Purpose
16
+ In our paper, we use this dataset to analyze the opinions that large language models (LLMs) reflect on complex global issues.
17
+ Our goal is to gain insights into potential biases in AI systems by evaluating their performance on subjective topics.
18
+
19
+ ## Data Format
20
  The data is in a CSV file with the following columns:
21
+ - question: The text of the survey question.
22
+ - selections: A dictionary where the key is the country name and the value is a list of percentages of respondents who selected each answer option for that country.
23
+ - options: A list of the answer options for the given question.
24
+ - source: GAS/WVS depending on whether the question is coming from Global Attitudes Survey or World Value Survey.
25
+
26
+ ## Usage
27
+ ```python
28
+ from datasets import load_dataset
29
+ # Loading the data
30
+ dataset = load_dataset("Anthropic/llm_global_opinions")
31
+ ```
32
+ ## Disclaimer
33
+ We recognize the limitations in using this dataset to evaluate LLMs, as they were not specifically
34
+ designed for this purpose. Therefore, we acknowledge that the construct validity of these datasets when applied to LLMs may be limited.
35
+
36
+ ## Contact
37
+ For questions, you can email esin at anthropic dot com
38
+
39
+ ## Citation
40
+ If you would like to cite our work or data, you may use the following bibtex citation:
41
+
42
+ [TODO: insert bibtex]
43
+
44
+