Datasets:
File size: 1,858 Bytes
622516c e896795 622516c e896795 |
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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
---
license: cc-by-4.0
language:
- sv
task_categories:
- text-classification
tags:
- causality
- swedish
- nlp
- causality-detection
size_categories:
- n<1K
source_datasets:
- original
---
# Swedish Causality Binary Classification Dataset
Binary causality detection dataset for Swedish text, extracted from Swedish Government Official Reports (SOU-corpus).
## Dataset Description
This dataset contains Swedish sentences annotated for the presence of causal relations. Each example includes:
- **theme**: The thematic category (e.g., "skog, växthuseffekt/klimat")
- **left_context**: Preceding context sentences
- **target_sentence**: The sentence to classify
- **right_context**: Following context sentences
- **label**: Binary annotation (0 = no causality, 1 = causality present)
## Usage
```python
from datasets import load_dataset
dataset = load_dataset("UppsalaNLP/swedish-causality-binary")
# Access train/test splits
train = dataset["train"]
test = dataset["test"]
# Example
print(train[0]["target_sentence"])
print(train[0]["label"])
```
## Dataset Statistics
| Split | Examples |
|-------|----------|
| Train | ~80% |
| Test | ~20% |
## Source
Text extracted from the [SOU-corpus](https://github.com/UppsalaNLP/SOU-corpus) (Swedish Government Official Reports).
## Citation
```bibtex
@inproceedings{durlich-etal-2022-cause,
title = "Cause and Effect in Governmental Reports: Two Data Sets for Causality Detection in Swedish",
author = "D{\"u}rlich, Luise and Reimann, Sebastian and Finnveden, Gustav and Nivre, Joakim and Stymne, Sara",
booktitle = "Proceedings of the First Workshop on Natural Language Processing for Political Sciences",
month = jun,
year = "2022",
address = "Marseilles, France"
}
```
## License
This dataset is licensed under [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/).
|