Omartificial-Intelligence-Space's picture
Update readme.md
ee5f7be verified
|
raw
history blame
1.43 kB
---
license: apache-2.0
task_categories:
- sentence-similarity
language:
- ar
size_categories:
- 100K<n<1M
---
# Arabic NLI Pair-Class
## Dataset Summary
- The Arabic Version of SNLI and MultiNLI datasets. (Pair-Class Subset)
- Originally used for Natural Language Inference (NLI),
- Dataset may be used for training/finetuning an embedding model for semantic textual similarity.
## Pair-Class Subset
- Columns: "premise", "hypothesis", "label"
- Column types: str, str, class with {"0": "entailment", "1": "neutral", "2": "contradiction"}
## Arabic Examples:
```python
{
"premise": "شخص على حصان يقفز فوق طائرة معطلة",
"hypothesis": "شخص يقوم بتدريب حصانه للمنافسة",
"label": 1,
},
{
"premise": "شخص على حصان يقفز فوق طائرة معطلة",
"hypothesis": "شخص في مطعم، يطلب عجة.",
"label": 2,
},
{
"premise": "شخص على حصان يقفز فوق طائرة معطلة",
"hypothesis": "شخص في الهواء الطلق، على حصان.",
"label": 0,
}
```
## Disclaimer
Please note that the translated sentences are generated using neural machine translation and may not always convey the intended meaning accurately.
## Contact
[Contact Me](https://www.omarai.co) if you have any questions or you want to use thid dataset
## Note
Original work done by [SentenceTransformers](https://www.sbert.net)