Omartificial-Intelligence-Space commited on
Commit
8b1106b
·
verified ·
1 Parent(s): df7190a

Update readme.md

Browse files
Files changed (1) hide show
  1. README.md +33 -0
README.md CHANGED
@@ -19,4 +19,37 @@ configs:
19
  data_files:
20
  - split: train
21
  path: triplet/train-*
 
22
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  data_files:
20
  - split: train
21
  path: triplet/train-*
22
+ license: apache-2.0
23
  ---
24
+
25
+ ## Dataset Summary
26
+
27
+ This dataset is an enhanced version of the Arabic Natural Questions dataset, augmented with hard negatives mined using the Sentence Transformers library. Hard negatives are examples that are particularly challenging for models—they're similar to the correct answer but are incorrect, providing a stronger training signal. This dataset is particularly useful for improving model performance in tasks like question-answering, semantic similarity, and information retrieval.
28
+ Supported Tasks and Leaderboards
29
+
30
+ Task: Semantic Textual Similarity, Information Retrieval, Question-Answering
31
+ Leaderboards: This dataset does not currently have associated leaderboards.
32
+
33
+ Languages
34
+ The dataset is in Arabic.
35
+
36
+ ## Dataset Structure
37
+
38
+ 1. query: The original question or query.
39
+ 2. answer: The correct answer associated with the query.
40
+ 3. negative: The mined hard negative, which is a text similar to the correct answer but incorrect.
41
+
42
+ ## Dataset Creation
43
+
44
+ The hard negatives were mined to provide a challenging set of examples for training models that need to differentiate between very similar texts. This approach strengthens the model’s ability to make fine-grained distinctions, which is essential in tasks such as question-answering and semantic search.
45
+
46
+ - Initial Dataset: The original dataset used is the Arabic Natural Questions dataset.
47
+ - Mining Process: Hard negatives were mined using the Sentence Transformers mine_hard_negatives utility with the following parameters:
48
+ range_min: 10
49
+ range_max: 50
50
+ max_score: 0.8
51
+ margin: 0.1
52
+ sampling_strategy: random
53
+
54
+ ## Annotations
55
+ No additional human annotation was performed; the hard negatives were generated using Hard Negatives Mining utility from Sentence Transformer