Omartificial-Intelligence-Space commited on
Commit
ee5f7be
·
verified ·
1 Parent(s): 6c75871

Update readme.md

Browse files
Files changed (1) hide show
  1. README.md +56 -3
README.md CHANGED
@@ -1,3 +1,56 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - sentence-similarity
5
+ language:
6
+ - ar
7
+ size_categories:
8
+ - 100K<n<1M
9
+ ---
10
+
11
+ # Arabic NLI Pair-Class
12
+
13
+ ## Dataset Summary
14
+
15
+ - The Arabic Version of SNLI and MultiNLI datasets. (Pair-Class Subset)
16
+ - Originally used for Natural Language Inference (NLI),
17
+ - Dataset may be used for training/finetuning an embedding model for semantic textual similarity.
18
+
19
+ ## Pair-Class Subset
20
+
21
+ - Columns: "premise", "hypothesis", "label"
22
+ - Column types: str, str, class with {"0": "entailment", "1": "neutral", "2": "contradiction"}
23
+
24
+ ## Arabic Examples:
25
+
26
+ ```python
27
+ {
28
+ "premise": "شخص على حصان يقفز فوق طائرة معطلة",
29
+ "hypothesis": "شخص يقوم بتدريب حصانه للمنافسة",
30
+ "label": 1,
31
+ },
32
+ {
33
+ "premise": "شخص على حصان يقفز فوق طائرة معطلة",
34
+ "hypothesis": "شخص في مطعم، يطلب عجة.",
35
+ "label": 2,
36
+ },
37
+ {
38
+ "premise": "شخص على حصان يقفز فوق طائرة معطلة",
39
+ "hypothesis": "شخص في الهواء الطلق، على حصان.",
40
+ "label": 0,
41
+ }
42
+ ```
43
+
44
+
45
+ ## Disclaimer
46
+
47
+ Please note that the translated sentences are generated using neural machine translation and may not always convey the intended meaning accurately.
48
+
49
+
50
+ ## Contact
51
+ [Contact Me](https://www.omarai.co) if you have any questions or you want to use thid dataset
52
+
53
+
54
+ ## Note
55
+
56
+ Original work done by [SentenceTransformers](https://www.sbert.net)