Datasets:

Modalities:
Text
Formats:
parquet
Languages:
Russian
ArXiv:
Libraries:
Datasets
pandas
License:
Samoed commited on
Commit
df42e55
·
verified ·
1 Parent(s): c90aacf

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +183 -0
README.md CHANGED
@@ -1,4 +1,14 @@
1
  ---
 
 
 
 
 
 
 
 
 
 
2
  dataset_info:
3
  features:
4
  - name: text
@@ -26,4 +36,177 @@ configs:
26
  path: data/validation-*
27
  - split: test
28
  path: data/test-*
 
 
 
29
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ annotations_creators:
3
+ - derived
4
+ language:
5
+ - rus
6
+ license: mit
7
+ multilinguality: monolingual
8
+ task_categories:
9
+ - text-classification
10
+ task_ids:
11
+ - topic-classification
12
  dataset_info:
13
  features:
14
  - name: text
 
36
  path: data/validation-*
37
  - split: test
38
  path: data/test-*
39
+ tags:
40
+ - mteb
41
+ - text
42
  ---
43
+ <!-- adapted from https://github.com/huggingface/huggingface_hub/blob/v0.30.2/src/huggingface_hub/templates/datasetcard_template.md -->
44
+
45
+ <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;">
46
+ <h1 style="font-size: 3.5rem; color: #1a1a1a; margin: 0 0 20px 0; letter-spacing: 2px; font-weight: 700;">HeadlineClassification</h1>
47
+ <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>
48
+ <div style="font-size: 0.9rem; color: #2c5282; margin-top: 10px;">Massive Text Embedding Benchmark</div>
49
+ </div>
50
+
51
+ Headline rubric classification based on the paraphraser plus dataset.
52
+
53
+ | | |
54
+ |---------------|---------------------------------------------|
55
+ | Task category | t2c |
56
+ | Domains | News, Written |
57
+ | Reference | https://aclanthology.org/2020.ngt-1.6/ |
58
+
59
+
60
+ ## How to evaluate on this task
61
+
62
+ You can evaluate an embedding model on this dataset using the following code:
63
+
64
+ ```python
65
+ import mteb
66
+
67
+ task = mteb.get_tasks(["HeadlineClassification"])
68
+ evaluator = mteb.MTEB(task)
69
+
70
+ model = mteb.get_model(YOUR_MODEL)
71
+ evaluator.run(model)
72
+ ```
73
+
74
+ <!-- Datasets want link to arxiv in readme to autolink dataset with paper -->
75
+ To learn more about how to run models on `mteb` task check out the [GitHub repitory](https://github.com/embeddings-benchmark/mteb).
76
+
77
+ ## Citation
78
+
79
+ 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).
80
+
81
+ ```bibtex
82
+
83
+ @inproceedings{gudkov-etal-2020-automatically,
84
+ abstract = {The article is focused on automatic development and ranking of a large corpus for Russian paraphrase generation which proves to be the first corpus of such type in Russian computational linguistics. Existing manually annotated paraphrase datasets for Russian are limited to small-sized ParaPhraser corpus and ParaPlag which are suitable for a set of NLP tasks, such as paraphrase and plagiarism detection, sentence similarity and relatedness estimation, etc. Due to size restrictions, these datasets can hardly be applied in end-to-end text generation solutions. Meanwhile, paraphrase generation requires a large amount of training data. In our study we propose a solution to the problem: we collect, rank and evaluate a new publicly available headline paraphrase corpus (ParaPhraser Plus), and then perform text generation experiments with manual evaluation on automatically ranked corpora using the Universal Transformer architecture.},
85
+ address = {Online},
86
+ author = {Gudkov, Vadim and
87
+ Mitrofanova, Olga and
88
+ Filippskikh, Elizaveta},
89
+ booktitle = {Proceedings of the Fourth Workshop on Neural Generation and Translation},
90
+ doi = {10.18653/v1/2020.ngt-1.6},
91
+ editor = {Birch, Alexandra and
92
+ Finch, Andrew and
93
+ Hayashi, Hiroaki and
94
+ Heafield, Kenneth and
95
+ Junczys-Dowmunt, Marcin and
96
+ Konstas, Ioannis and
97
+ Li, Xian and
98
+ Neubig, Graham and
99
+ Oda, Yusuke},
100
+ month = jul,
101
+ pages = {54--59},
102
+ publisher = {Association for Computational Linguistics},
103
+ title = {Automatically Ranked {R}ussian Paraphrase Corpus for Text Generation},
104
+ url = {https://aclanthology.org/2020.ngt-1.6},
105
+ year = {2020},
106
+ }
107
+
108
+
109
+ @article{enevoldsen2025mmtebmassivemultilingualtext,
110
+ title={MMTEB: Massive Multilingual Text Embedding Benchmark},
111
+ 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},
112
+ publisher = {arXiv},
113
+ journal={arXiv preprint arXiv:2502.13595},
114
+ year={2025},
115
+ url={https://arxiv.org/abs/2502.13595},
116
+ doi = {10.48550/arXiv.2502.13595},
117
+ }
118
+
119
+ @article{muennighoff2022mteb,
120
+ author = {Muennighoff, Niklas and Tazi, Nouamane and Magne, Lo{\"\i}c and Reimers, Nils},
121
+ title = {MTEB: Massive Text Embedding Benchmark},
122
+ publisher = {arXiv},
123
+ journal={arXiv preprint arXiv:2210.07316},
124
+ year = {2022}
125
+ url = {https://arxiv.org/abs/2210.07316},
126
+ doi = {10.48550/ARXIV.2210.07316},
127
+ }
128
+ ```
129
+
130
+ # Dataset Statistics
131
+ <details>
132
+ <summary> Dataset Statistics</summary>
133
+
134
+ The following code contains the descriptive statistics from the task. These can also be obtained using:
135
+
136
+ ```python
137
+ import mteb
138
+
139
+ task = mteb.get_task("HeadlineClassification")
140
+
141
+ desc_stats = task.metadata.descriptive_stats
142
+ ```
143
+
144
+ ```json
145
+ {
146
+ "test": {
147
+ "num_samples": 2048,
148
+ "number_of_characters": 127763,
149
+ "number_texts_intersect_with_train": 0,
150
+ "min_text_length": 13,
151
+ "average_text_length": 62.38427734375,
152
+ "max_text_length": 173,
153
+ "unique_text": 2048,
154
+ "unique_labels": 6,
155
+ "labels": {
156
+ "1": {
157
+ "count": 342
158
+ },
159
+ "0": {
160
+ "count": 341
161
+ },
162
+ "4": {
163
+ "count": 341
164
+ },
165
+ "2": {
166
+ "count": 341
167
+ },
168
+ "3": {
169
+ "count": 341
170
+ },
171
+ "5": {
172
+ "count": 342
173
+ }
174
+ }
175
+ },
176
+ "train": {
177
+ "num_samples": 36000,
178
+ "number_of_characters": 2232586,
179
+ "number_texts_intersect_with_train": null,
180
+ "min_text_length": 2,
181
+ "average_text_length": 62.01627777777778,
182
+ "max_text_length": 501,
183
+ "unique_text": 36000,
184
+ "unique_labels": 6,
185
+ "labels": {
186
+ "0": {
187
+ "count": 6000
188
+ },
189
+ "2": {
190
+ "count": 6000
191
+ },
192
+ "1": {
193
+ "count": 6000
194
+ },
195
+ "4": {
196
+ "count": 6000
197
+ },
198
+ "5": {
199
+ "count": 6000
200
+ },
201
+ "3": {
202
+ "count": 6000
203
+ }
204
+ }
205
+ }
206
+ }
207
+ ```
208
+
209
+ </details>
210
+
211
+ ---
212
+ *This dataset card was automatically generated using [MTEB](https://github.com/embeddings-benchmark/mteb)*