Omartificial-Intelligence-Space commited on
Commit
f56b0e7
·
verified ·
1 Parent(s): 448395b

update readme.md

Browse files
Files changed (1) hide show
  1. README.md +50 -3
README.md CHANGED
@@ -1,3 +1,50 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ ---
4
+
5
+ # Arabic Stsb
6
+
7
+ ## Dataset Summary
8
+
9
+ 1. The Arabic Version of SNLI and MultiNLI datasets. (Triplet Subset)
10
+ 2. Originally used for Natural Language Inference (NLI),
11
+ 3. Dataset may be used for training/finetuning an embedding model for semantic textual similarity.
12
+
13
+
14
+ ## Arabic STSB Structure
15
+
16
+ - The Arabic Version of the the Semantic Textual Similarity Benchmark (Cer et al., 2017)
17
+ - it is a collection of sentence pairs drawn from news headlines, video and image captions, and natural language inference data.
18
+ - Each pair is human-annotated with a similarity score from 1 to 5. However, for this variant, the similarity scores are normalized to between 0 and 1.
19
+
20
+ Examples:
21
+
22
+ ```python
23
+ {
24
+ "sentence1": "طائرة ستقلع",
25
+ "sentence2": "طائرة جوية ستقلع",
26
+ "score": 1.0
27
+ }
28
+
29
+ {
30
+ "sentence1": "رجل يعزف على ناي كبير",
31
+ "sentence2": "رجل يعزف على الناي.",
32
+ "score": 0.76
33
+ }
34
+ ```
35
+
36
+ ## Collection strategy:
37
+ - Reading the sentences and score from the STSB dataset and dividing the score by 5.
38
+ - Deduplified: No
39
+
40
+ ## Disclaimer
41
+ Please note that:
42
+ - the translated sentences are generated using neural machine translation and may not always convey the intended meaning accurately.
43
+ - the similarity scores are normalized, and the original scores were between 1 and 5.
44
+
45
+ ## Contact
46
+ [Contact Me](https://www.omarai.co) if you have any questions or you want to use thid dataset
47
+
48
+ ## Note
49
+
50
+ Original work done by [SentenceTransformers](https://www.sbert.net)