Datasets:
File size: 884 Bytes
b4d1168 |
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 |
---
task_categories:
- text-classification
license: cc-by-nc-4.0
---
## Dataset Summary
This dataset is a professional translation into Valencian of the Cross-lingual Natural Language Inference XNLI dataset.
XNLI-va is a collection of 5.010 sentence pairs annotated with textual entailment.
The original dataset was restricted to only non-commercial research purposes under the Creative Commons Attribution Non-commercial 4.0 International Public License.
## Dataset Structure
- premise: a string feature.
- hypothesis: a string feature.
- label: a classification label, with possible values including entailment (0), neutral (1), contradiction (2).
## Data Instances
```json
{
"premise": "Hi ha tant que es pot dir sobre això, que senzillament em saltaré això.",
"hypothesis": "No parlaré sobre la història de la ciutat perquè hi ha molt a dir.",
"label": 1
}
|