tomaarsen HF staff commited on
Commit
903c3b8
1 Parent(s): 9bc2acb

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +77 -0
README.md CHANGED
@@ -1,4 +1,16 @@
1
  ---
 
 
 
 
 
 
 
 
 
 
 
 
2
  dataset_info:
3
  - config_name: abstract-citation-pair
4
  features:
@@ -65,6 +77,7 @@ configs:
65
  data_files:
66
  - split: train
67
  path: title-abstract-pair/train-*
 
68
  - config_name: title-citation-pair
69
  data_files:
70
  - split: train
@@ -74,3 +87,67 @@ configs:
74
  - split: train
75
  path: title-citation-pair-all/train-*
76
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - en
4
+ multilinguality:
5
+ - monolingual
6
+ size_categories:
7
+ - 100M<n<1B
8
+ task_categories:
9
+ - feature-extraction
10
+ - sentence-similarity
11
+ pretty_name: S2ORC
12
+ tags:
13
+ - sentence-transformers
14
  dataset_info:
15
  - config_name: abstract-citation-pair
16
  features:
 
77
  data_files:
78
  - split: train
79
  path: title-abstract-pair/train-*
80
+ default: true
81
  - config_name: title-citation-pair
82
  data_files:
83
  - split: train
 
87
  - split: train
88
  path: title-citation-pair-all/train-*
89
  ---
90
+
91
+ # Dataset Card for S2ORC
92
+
93
+ This dataset contains titles, abstracts, and citations from scientific papers from the [Semantic Scholar Open Research Corpus (S2ORC)](https://github.com/allenai/s2orc).
94
+ This dataset can and has been used to train embedding models, and works out of the box to train or finetune [Sentence Transformer](https://sbert.net/) models.
95
+
96
+ In our experiments, title-abstract pairs result in the highest performance, followed by titles-citations and then abstract-citations pairs.
97
+
98
+ ## Dataset Subsets
99
+
100
+ ### `title-abstract-pair` subset
101
+
102
+ * Columns: "title", "abstract"
103
+ * Column types: `str`, `str`
104
+ * Examples:
105
+ ```python
106
+
107
+ ```
108
+ * Collection strategy: Reading the S2ORC titles-abstract dataset from [embedding-training-data](https://huggingface.co/datasets/sentence-transformers/embedding-training-data).
109
+ * Deduplified: No
110
+
111
+ ### `title-citation-pair` subset
112
+
113
+ * Columns: "title", "citation"
114
+ * Column types: `str`, `str`
115
+ * Examples:
116
+ ```python
117
+
118
+ ```
119
+ * Collection strategy: Reading the S2ORC titles-citation dataset from [embedding-training-data](https://huggingface.co/datasets/sentence-transformers/embedding-training-data) and considering each title together with the first citation as a sample.
120
+ * Deduplified: No
121
+
122
+ ### `title-citation-pair-all` subset
123
+
124
+ * Columns: "title", "citation"
125
+ * Column types: `str`, `str`
126
+ * Examples:
127
+ ```python
128
+
129
+ ```
130
+ * Collection strategy: Reading the S2ORC titles-citation dataset from [embedding-training-data](https://huggingface.co/datasets/sentence-transformers/embedding-training-data) and considering each title together with each citation as a sample.
131
+ * Deduplified: No
132
+
133
+ ### `abstract-citation-pair` subset
134
+
135
+ * Columns: "abstract", "citation"
136
+ * Column types: `str`, `str`
137
+ * Examples:
138
+ ```python
139
+
140
+ ```
141
+ * Collection strategy: Reading the S2ORC abstract-citation dataset from [embedding-training-data](https://huggingface.co/datasets/sentence-transformers/embedding-training-data) and considering each citation together with the first abstract as a sample.
142
+ * Deduplified: No
143
+
144
+ ### `abstract-citation-pair-all` subset
145
+
146
+ * Columns: "abstract", "citation"
147
+ * Column types: `str`, `str`
148
+ * Examples:
149
+ ```python
150
+
151
+ ```
152
+ * Collection strategy: Reading the S2ORC abstract-citation dataset from [embedding-training-data](https://huggingface.co/datasets/sentence-transformers/embedding-training-data) and considering each citation together with each abstract as a sample.
153
+ * Deduplified: No