File size: 2,719 Bytes
09ae7fc
 
 
eea830c
 
09ae7fc
 
 
eea830c
09ae7fc
 
50be405
bf66a11
 
c76fe55
bf66a11
 
 
 
 
 
8144661
 
 
 
 
 
 
 
a6d4b9d
 
 
 
8d76334
a6d4b9d
bfbfbb6
c1b79f2
8144661
c240f3e
 
 
bf66a11
 
 
 
 
c240f3e
 
 
 
 
 
 
59a10a6
c240f3e
 
 
 
 
 
 
 
 
 
 
 
 
315de45
c240f3e
 
 
 
 
bf66a11
c240f3e
bf66a11
 
 
 
 
59a10a6
151a902
 
bf66a11
 
 
 
 
 
 
c240f3e
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
---
license: apache-2.0
multilinguality: monolingual
size_categories:
- 10K<n<100K
language: ro
task_categories:
- sentence-similarity
pretty_name: ROSTSC
---

# RO-STS-Cupidon

## Overview
RoSTSC is a Romanian Semantic Textual Similarity (STS) dataset designed for evaluating and training sentence embedding models. It contains pairs of Romanian sentences along with similarity scores that indicate the degree of semantic equivalence between them.

## Dataset Structure
- **sentence1**: The first sentence in the pair.
- **sentence2**: The second sentence in the pair.
- **score**: A numerical value representing the semantic similarity between the two sentences, normalized between 0 and 1.

## Dataset Composition
| Source Dataset | Split | Number of Pairs |
|---------------|-------|----------------|
| mteb/sts17-crosslingual-sts | en-en | 250 |
| mteb/sts12-sts | train | 2225 |
| mteb/sts12-sts | test | 3029 |
| mteb/biosses-sts | test | 100 |
| mteb/sts16-sts | test | 1184 |
| mteb/sts15-sts | test | 2992 |
| mteb/sts14-sts | test | 3749 |
| mteb/sts13-sts | test | 1498 |
| mteb/sickr-sts | test | 9927 |
| dumitrescustefan/ro_sts | full | 8628 |
| andyP/ro-paraphrase-bible | train | 30000 |
| manual/generated | hand | 7012 |
| **Total** |  | **70594** |

## Data Collection and Processing
The data has been collected from existing datasets, primarily in English, and translated into Romanian. Some datasets were originally in Romanian and were used either in full or in part.

## Usage
This dataset can be used for:
- Fine-tuning and evaluating sentence embedding models for Romanian.
- Research on semantic textual similarity and natural language understanding (NLU) in Romanian.

### How to Load the Dataset

You can load the dataset using the `datasets` library from Hugging Face:

```python
from datasets import load_dataset

dataset = load_dataset("BlackKakapo/RoSTSC")

# Access the train split
train_data = dataset["train"]

# View an example
print(train_data[0])
```

Alternatively, if you have the dataset as a CSV file, you can load it using `pandas`:

```python
import pandas as pd

df = pd.read_csv("RoSTSC.csv")
print(df.head())
```

This allows you to easily integrate the dataset into your training or evaluation pipeline.

## License
This dataset is licensed under **Apache 2.0**.

## Citation
If you use RO-STS-Corpus in your research, please cite this dataset as follows:
```
@misc{ro_sts_corpus,
  title={RoSTSC: A Romanian STS Cupidon},
  author={BlackKakapo},
  year={2025},
}
```

## Acknowledgments
We acknowledge contributions from various resources used in compiling and annotating this dataset.

---
Further details and additional metadata will be added in future versions.