Commit
8d8a3ed
1 Parent(s): 63ff0d7

update app.py

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-Score
12
+
13
+ ## Dataset Summary
14
+
15
+ - The Arabic Version of SNLI and MultiNLI datasets. (Pair-Score 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: "sentence1", "sentence2", "score"
22
+ - Column types: str, str, float
23
+
24
+ ## Arabic Examples:
25
+
26
+ ```python
27
+ {
28
+ "sentence1": "شخص على حصان يقفز فوق طائرة معطلة",
29
+ "sentence2": "شخص يقوم بتدريب حصانه للمنافسة",
30
+ "score": 0.5,
31
+ },
32
+ {
33
+ "sentence1": "شخص على حصان يقفز فوق طائرة معطلة",
34
+ "sentence2": "شخص في مطعم، يطلب عجة.",
35
+ "score": 0,
36
+ },
37
+ {
38
+ "sentence1": "شخص على حصان يقفز فوق طائرة معطلة",
39
+ "sentence2": "شخص في الهواء الطلق، على حصان.",
40
+ "score": 1,
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)