Update README.md
Browse files
README.md
CHANGED
@@ -1,4 +1,16 @@
|
|
1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
dataset_info:
|
3 |
- config_name: pair
|
4 |
features:
|
@@ -36,3 +48,39 @@ configs:
|
|
36 |
- split: train
|
37 |
path: triplet/train-*
|
38 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
+
multilinguality:
|
5 |
+
- monolingual
|
6 |
+
size_categories:
|
7 |
+
- 100K<n<1M
|
8 |
+
task_categories:
|
9 |
+
- feature-extraction
|
10 |
+
- sentence-similarity
|
11 |
+
pretty_name: Specter
|
12 |
+
tags:
|
13 |
+
- sentence-transformers
|
14 |
dataset_info:
|
15 |
- config_name: pair
|
16 |
features:
|
|
|
48 |
- split: train
|
49 |
path: triplet/train-*
|
50 |
---
|
51 |
+
|
52 |
+
# Dataset Card for Specter
|
53 |
+
|
54 |
+
This dataset is a collection of title-related-unrelated triplets from Scientific Publications on Specter. See [Specter](https://github.com/allenai/specter) for additional information.
|
55 |
+
This dataset can be used directly with Sentence Transformers to train embedding models.
|
56 |
+
|
57 |
+
## Dataset Subsets
|
58 |
+
|
59 |
+
### `triplet` subset
|
60 |
+
|
61 |
+
* Columns: "anchor", "positive", "negative"
|
62 |
+
* Column types: `str`, `str`, `str`
|
63 |
+
* Examples:
|
64 |
+
```python
|
65 |
+
{
|
66 |
+
'anchor': "Integrating children's contributions in the interaction design process",
|
67 |
+
'positive': 'Designing for or designing with? Informant design for interactive learning environments',
|
68 |
+
'negative': 'Power Operation in ISD: Technological Frames Perspectives.',
|
69 |
+
}
|
70 |
+
```
|
71 |
+
* Collection strategy: Reading the Specter dataset from [embedding-training-data](https://huggingface.co/datasets/sentence-transformers/embedding-training-data), followed by deduplication.
|
72 |
+
* Deduplified: Yes
|
73 |
+
|
74 |
+
### `pair` subset
|
75 |
+
|
76 |
+
* Columns: "anchor", "positive"
|
77 |
+
* Column types: `str`, `str`
|
78 |
+
* Examples:
|
79 |
+
```python
|
80 |
+
{
|
81 |
+
'anchor': 'Time-dependent trajectory regression on road networks via multi-task learning',
|
82 |
+
'positive': 'Convex multi-task feature learning',
|
83 |
+
}
|
84 |
+
```
|
85 |
+
* Collection strategy: Reading the Specter dataset from [embedding-training-data](https://huggingface.co/datasets/sentence-transformers/embedding-training-data), only taking the title and related title, and then performing deduplication.
|
86 |
+
* Deduplified: Yes
|