Datasets:

Modalities:
Text
Formats:
parquet
Languages:
Slovak
ArXiv:
License:
andrejridzik commited on
Commit
7cf0d9a
·
verified ·
1 Parent(s): 74a6bf4

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +151 -0
README.md CHANGED
@@ -1,4 +1,16 @@
1
  ---
 
 
 
 
 
 
 
 
 
 
 
 
2
  dataset_info:
3
  features:
4
  - name: sentence1
@@ -28,4 +40,143 @@ configs:
28
  path: data/validation-*
29
  - split: train
30
  path: data/train-*
 
 
 
31
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ annotations_creators:
3
+ - human-annotated
4
+ language:
5
+ - slk
6
+ license: cc-by-sa-4.0
7
+ multilinguality: translated
8
+ source_datasets:
9
+ - slovak-nlp/sklep
10
+ task_categories:
11
+ - sentence-similarity
12
+ task_ids:
13
+ - natural-language-inference
14
  dataset_info:
15
  features:
16
  - name: sentence1
 
40
  path: data/validation-*
41
  - split: train
42
  path: data/train-*
43
+ tags:
44
+ - mteb
45
+ - text
46
  ---
47
+ <!-- adapted from https://github.com/huggingface/huggingface_hub/blob/v0.30.2/src/huggingface_hub/templates/datasetcard_template.md -->
48
+
49
+ <div align="center" style="padding: 40px 20px; background-color: white; border-radius: 12px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); max-width: 600px; margin: 0 auto;">
50
+ <h1 style="font-size: 3.5rem; color: #1a1a1a; margin: 0 0 20px 0; letter-spacing: 2px; font-weight: 700;">SlovakSTS</h1>
51
+ <div style="font-size: 1.5rem; color: #4a4a4a; margin-bottom: 5px; font-weight: 300;">An <a href="https://github.com/embeddings-benchmark/mteb" style="color: #2c5282; font-weight: 600; text-decoration: none;" onmouseover="this.style.textDecoration='underline'" onmouseout="this.style.textDecoration='none'">MTEB</a> dataset</div>
52
+ <div style="font-size: 0.9rem; color: #2c5282; margin-top: 10px;">Massive Text Embedding Benchmark</div>
53
+ </div>
54
+
55
+ A professional Slovak translation of the STS Benchmark (STSb), originally part of the GLUE benchmark. The task is Semantic Textual Similarity (STS): given a pair of sentences, the goal is to predict their semantic similarity on a continuous scale from 0 (completely unrelated) to 5 (semantically equivalent). Sentence pairs are drawn from news headlines, image captions, and forum posts.
56
+
57
+ | | |
58
+ |---------------|---------------------------------------------|
59
+ | Task category | STS (text-to-text) |
60
+ | Domains | Blog, News, Written |
61
+ | Reference | [Findings of the Association for Computational Linguistics: ACL 2025](https://aclanthology.org/2025.findings-acl.1371) |
62
+
63
+ Source datasets:
64
+ - [slovak-nlp/sklep](https://huggingface.co/datasets/slovak-nlp/sklep)
65
+
66
+
67
+ ## How to evaluate on this task
68
+
69
+ You can evaluate an embedding model on this dataset using the following code:
70
+
71
+ ```python
72
+ import mteb
73
+
74
+ task = mteb.get_task("SlovakSTS")
75
+ model = mteb.get_model(YOUR_MODEL)
76
+ mteb.evaluate(model, task)
77
+ ```
78
+
79
+ <!-- Datasets want link to arxiv in readme to autolink dataset with paper -->
80
+ To learn more about how to run models on `mteb` task check out the [GitHub repository](https://github.com/embeddings-benchmark/mteb).
81
+
82
+ ## Citation
83
+
84
+ If you use this dataset, please cite the dataset as well as [mteb](https://github.com/embeddings-benchmark/mteb), as this dataset likely includes additional processing as a part of the [MMTEB Contribution](https://github.com/embeddings-benchmark/mteb/tree/main/docs/mmteb).
85
+
86
+ ```bibtex
87
+
88
+ @inproceedings{suppa-etal-2025-sklep,
89
+ address = {Vienna, Austria},
90
+ author = {Suppa, Marek and
91
+ Ridzik, Andrej and
92
+ Hl{\'a}dek, Daniel and
93
+ Jav{\r{u}}rek, Tom{\'a}{\v{s}} and
94
+ Ondrejov{\'a}, Vikt{\'o}ria and
95
+ S{\'a}sikov{\'a}, Krist{\'i}na and
96
+ Tamajka, Martin and
97
+ Simko, Marian},
98
+ booktitle = {Findings of the Association for Computational Linguistics: ACL 2025},
99
+ editor = {Che, Wanxiang and
100
+ Nabende, Joyce and
101
+ Shutova, Ekaterina and
102
+ Pilehvar, Mohammad Taher},
103
+ isbn = {979-8-89176-256-5},
104
+ month = jul,
105
+ pages = {26716--26743},
106
+ publisher = {Association for Computational Linguistics},
107
+ title = {sk{LEP}: A {S}lovak General Language Understanding Benchmark},
108
+ url = {https://aclanthology.org/2025.findings-acl.1371/},
109
+ year = {2025},
110
+ }
111
+
112
+
113
+ @article{enevoldsen2025mmtebmassivemultilingualtext,
114
+ title={MMTEB: Massive Multilingual Text Embedding Benchmark},
115
+ author={Kenneth Enevoldsen and Isaac Chung and Imene Kerboua and Márton Kardos and Ashwin Mathur and David Stap and Jay Gala and Wissam Siblini and Dominik Krzemiński and Genta Indra Winata and Saba Sturua and Saiteja Utpala and Mathieu Ciancone and Marion Schaeffer and Gabriel Sequeira and Diganta Misra and Shreeya Dhakal and Jonathan Rystrøm and Roman Solomatin and Ömer Çağatan and Akash Kundu and Martin Bernstorff and Shitao Xiao and Akshita Sukhlecha and Bhavish Pahwa and Rafał Poświata and Kranthi Kiran GV and Shawon Ashraf and Daniel Auras and Björn Plüster and Jan Philipp Harries and Loïc Magne and Isabelle Mohr and Mariya Hendriksen and Dawei Zhu and Hippolyte Gisserot-Boukhlef and Tom Aarsen and Jan Kostkan and Konrad Wojtasik and Taemin Lee and Marek Šuppa and Crystina Zhang and Roberta Rocca and Mohammed Hamdy and Andrianos Michail and John Yang and Manuel Faysse and Aleksei Vatolin and Nandan Thakur and Manan Dey and Dipam Vasani and Pranjal Chitale and Simone Tedeschi and Nguyen Tai and Artem Snegirev and Michael Günther and Mengzhou Xia and Weijia Shi and Xing Han Lù and Jordan Clive and Gayatri Krishnakumar and Anna Maksimova and Silvan Wehrli and Maria Tikhonova and Henil Panchal and Aleksandr Abramov and Malte Ostendorff and Zheng Liu and Simon Clematide and Lester James Miranda and Alena Fenogenova and Guangyu Song and Ruqiya Bin Safi and Wen-Ding Li and Alessia Borghini and Federico Cassano and Hongjin Su and Jimmy Lin and Howard Yen and Lasse Hansen and Sara Hooker and Chenghao Xiao and Vaibhav Adlakha and Orion Weller and Siva Reddy and Niklas Muennighoff},
116
+ publisher = {arXiv},
117
+ journal={arXiv preprint arXiv:2502.13595},
118
+ year={2025},
119
+ url={https://arxiv.org/abs/2502.13595},
120
+ doi = {10.48550/arXiv.2502.13595},
121
+ }
122
+
123
+ @article{muennighoff2022mteb,
124
+ author = {Muennighoff, Niklas and Tazi, Nouamane and Magne, Loïc and Reimers, Nils},
125
+ title = {MTEB: Massive Text Embedding Benchmark},
126
+ publisher = {arXiv},
127
+ journal={arXiv preprint arXiv:2210.07316},
128
+ year = {2022}
129
+ url = {https://arxiv.org/abs/2210.07316},
130
+ doi = {10.48550/ARXIV.2210.07316},
131
+ }
132
+ ```
133
+
134
+ # Dataset Statistics
135
+ <details>
136
+ <summary> Dataset Statistics</summary>
137
+
138
+ The following code contains the descriptive statistics from the task. These can also be obtained using:
139
+
140
+ ```python
141
+ import mteb
142
+
143
+ task = mteb.get_task("SlovakSTS")
144
+
145
+ desc_stats = task.metadata.descriptive_stats
146
+ ```
147
+
148
+ ```json
149
+ {
150
+ "test": {
151
+ "num_samples": 1352,
152
+ "number_of_characters": 144801,
153
+ "unique_pairs": 1352,
154
+ "text1_statistics": {
155
+ "total_text_length": 72578,
156
+ "min_text_length": 10,
157
+ "average_text_length": 53.68195266272189,
158
+ "max_text_length": 216,
159
+ "unique_texts": 1223
160
+ },
161
+ "text2_statistics": {
162
+ "total_text_length": 72223,
163
+ "min_text_length": 7,
164
+ "average_text_length": 53.419378698224854,
165
+ "max_text_length": 231,
166
+ "unique_texts": 1301
167
+ },
168
+ "image1_statistics": null,
169
+ "image2_statistics": null,
170
+ "label_statistics": {
171
+ "min_score": 0.0,
172
+ "avg_score": 2.5643513308364083,
173
+ "max_score": 5.0
174
+ }
175
+ }
176
+ }
177
+ ```
178
+
179
+ </details>
180
+
181
+ ---
182
+ *This dataset card was automatically generated using [MTEB](https://github.com/embeddings-benchmark/mteb)*