Datasets:
File size: 1,285 Bytes
bd8c68b c56a063 bd8c68b 9d90aa8 13318e5 c56a063 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
---
license: cc-by-4.0
task_categories:
- text-classification
- zero-shot-classification
language:
- en
tags:
- Human Values
- Value Detection
- Multi-Label
pretty_name: Human Value Detection Dataset
size_categories:
- 1K<n<10K
---
Touché23-ValueEval
==================
[link](https://webis.de/data.html#touche23-valueeval)
Usage:
```
from datasets import load_dataset
import ast
def convert_labels(example):
example["Labels"] = [i for i in ast.literal_eval(example["Labels"])]
return example
valueeval23 = load_dataset("webis/Touche23-ValueEval")
training_dataset = valueeval23["training"].map(convert_labels)
```
See available dataset parts:
```
valueeval23
```
The `Labels` for each example is an array of 1s (argument resorts to value) and 0s (argument does not resort to value). The order is the same as in the original files:
```
labels = ["Self-direction: thought", "Self-direction: action", "Stimulation", "Hedonism", "Achievement", "Power: dominance", "Power: resources", "Face", "Security: personal", "Security: societal", "Tradition", "Conformity: rules", "Conformity: interpersonal", "Humility", "Benevolence: caring", "Benevolence: dependability", "Universalism: concern", "Universalism: nature", "Universalism: tolerance", "Universalism: objectivity"]
``` |