Add dataset card for Samsoup/sickr-sts
Browse files
README.md
CHANGED
|
@@ -9,23 +9,36 @@ dataset_info:
|
|
| 9 |
dtype: float32
|
| 10 |
splits:
|
| 11 |
- name: train
|
| 12 |
-
num_bytes: 724125
|
| 13 |
num_examples: 6948
|
| 14 |
- name: validation
|
| 15 |
-
num_bytes: 206300
|
| 16 |
num_examples: 1985
|
| 17 |
- name: test
|
| 18 |
-
num_bytes: 104316
|
| 19 |
num_examples: 994
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
-
|
| 24 |
-
data_files:
|
| 25 |
-
- split: train
|
| 26 |
-
path: data/train-*
|
| 27 |
-
- split: validation
|
| 28 |
-
path: data/validation-*
|
| 29 |
-
- split: test
|
| 30 |
-
path: data/test-*
|
| 31 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
dtype: float32
|
| 10 |
splits:
|
| 11 |
- name: train
|
|
|
|
| 12 |
num_examples: 6948
|
| 13 |
- name: validation
|
|
|
|
| 14 |
num_examples: 1985
|
| 15 |
- name: test
|
|
|
|
| 16 |
num_examples: 994
|
| 17 |
+
task_categories:
|
| 18 |
+
- text-regression
|
| 19 |
+
task_ids:
|
| 20 |
+
- semantic-textual-similarity
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
---
|
| 22 |
+
|
| 23 |
+
# Samsoup/sickr-sts
|
| 24 |
+
|
| 25 |
+
This dataset is derived from **`mteb/sickr-sts`** (SICK-R style semantic textual similarity),
|
| 26 |
+
which in MTEB is provided as a single split. This script shuffles that split deterministically
|
| 27 |
+
and produces **train / validation / test = 70% / 20% / 10%**.
|
| 28 |
+
|
| 29 |
+
**Fields**
|
| 30 |
+
- `sentence1` — first sentence
|
| 31 |
+
- `sentence2` — second sentence
|
| 32 |
+
- `score` — similarity / relatedness score (float32)
|
| 33 |
+
|
| 34 |
+
**Processing**
|
| 35 |
+
- Input: single split from `mteb/sickr-sts`
|
| 36 |
+
- Shuffle with a fixed seed
|
| 37 |
+
- 70/20/10 partition
|
| 38 |
+
- Keep only (`sentence1`, `sentence2`, `score`)
|
| 39 |
+
|
| 40 |
+
**Notes**
|
| 41 |
+
- This is meant for *regression* STS training (like STS-B style models) but on the SICK-R data.
|
| 42 |
+
- Reproducible: split is deterministic.
|
| 43 |
+
|
| 44 |
+
_Last updated: 2025-10-31_
|