tomaarsen HF staff commited on
Commit
576bb61
1 Parent(s): 0344dc9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +41 -0
README.md CHANGED
@@ -1,4 +1,16 @@
1
  ---
 
 
 
 
 
 
 
 
 
 
 
 
2
  dataset_info:
3
  - config_name: pair
4
  features:
@@ -56,3 +68,32 @@ configs:
56
  - split: test
57
  path: triplet/test-*
58
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - en
4
+ multilinguality:
5
+ - monolingual
6
+ size_categories:
7
+ - 1M<n<10M
8
+ task_categories:
9
+ - feature-extraction
10
+ - sentence-similarity
11
+ pretty_name: Wikipedia Sections
12
+ tags:
13
+ - sentence-transformers
14
  dataset_info:
15
  - config_name: pair
16
  features:
 
68
  - split: test
69
  path: triplet/test-*
70
  ---
71
+
72
+ # Dataset Card for Wikipedia Sections
73
+
74
+ This dataset contains pairs and triplets that can be used to train and finetune Sentence Transformer embedding models. The dataset originates from [Dor et al.](https://aclanthology.org/P18-2009.pdf), and was downloaded from [this download link](https://sbert.net/datasets/wikipedia-sections-triplets.zip).
75
+ Notably, the "anchor" column contains sentences from Wikipedia, wheras the "positive" column contains other sentences from the same section. The "negative" column contains sentences from other sections.
76
+
77
+ ## Dataset Subsets
78
+
79
+ ### `pair` subset
80
+
81
+ * Columns: "anchor", "positive"
82
+ * Column types: `str`, `str`
83
+ * Examples:
84
+ ```python
85
+
86
+ ```
87
+ * Collection strategy: Reading the Wikipedia Sections dataset from https://sbert.net.
88
+ * Deduplified: Yes
89
+
90
+ ### `triplet` subset
91
+
92
+ * Columns: "anchor", "positive", "negative"
93
+ * Column types: `str`, `str`, `str`
94
+ * Examples:
95
+ ```python
96
+
97
+ ```
98
+ * Collection strategy: Reading the Wikipedia Sections dataset from https://sbert.net.
99
+ * Deduplified: Yes