Datasets:
mteb
/

Modalities:
Text
Formats:
parquet
Languages:
Danish
ArXiv:
Libraries:
Datasets
pandas
License:
Samoed commited on
Commit
6fdd41b
·
verified ·
1 Parent(s): 45a0308

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +168 -0
README.md CHANGED
@@ -1,4 +1,13 @@
1
  ---
 
 
 
 
 
 
 
 
 
2
  dataset_info:
3
  features:
4
  - name: text
@@ -21,4 +30,163 @@ configs:
21
  path: data/train-*
22
  - split: test
23
  path: data/test-*
 
 
 
24
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ annotations_creators:
3
+ - expert-annotated
4
+ language:
5
+ - dan
6
+ license: cc-by-sa-3.0
7
+ multilinguality: monolingual
8
+ task_categories:
9
+ - text-classification
10
+ task_ids: []
11
  dataset_info:
12
  features:
13
  - name: text
 
30
  path: data/train-*
31
  - split: test
32
  path: data/test-*
33
+ tags:
34
+ - mteb
35
+ - text
36
  ---
37
+ <!-- adapted from https://github.com/huggingface/huggingface_hub/blob/v0.30.2/src/huggingface_hub/templates/datasetcard_template.md -->
38
+
39
+ <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;">
40
+ <h1 style="font-size: 3.5rem; color: #1a1a1a; margin: 0 0 20px 0; letter-spacing: 2px; font-weight: 700;">Ddisco</h1>
41
+ <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>
42
+ <div style="font-size: 0.9rem; color: #2c5282; margin-top: 10px;">Massive Text Embedding Benchmark</div>
43
+ </div>
44
+
45
+ A Danish Discourse dataset with values for coherence and source (Wikipedia or Reddit)
46
+
47
+ | | |
48
+ |---------------|---------------------------------------------|
49
+ | Task category | t2c |
50
+ | Domains | Non-fiction, Social, Written |
51
+ | Reference | https://aclanthology.org/2022.lrec-1.260/ |
52
+
53
+
54
+ ## How to evaluate on this task
55
+
56
+ You can evaluate an embedding model on this dataset using the following code:
57
+
58
+ ```python
59
+ import mteb
60
+
61
+ task = mteb.get_tasks(["Ddisco"])
62
+ evaluator = mteb.MTEB(task)
63
+
64
+ model = mteb.get_model(YOUR_MODEL)
65
+ evaluator.run(model)
66
+ ```
67
+
68
+ <!-- Datasets want link to arxiv in readme to autolink dataset with paper -->
69
+ To learn more about how to run models on `mteb` task check out the [GitHub repitory](https://github.com/embeddings-benchmark/mteb).
70
+
71
+ ## Citation
72
+
73
+ 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).
74
+
75
+ ```bibtex
76
+
77
+ @inproceedings{flansmose-mikkelsen-etal-2022-ddisco,
78
+ abstract = {To date, there has been no resource for studying discourse coherence on real-world Danish texts. Discourse coherence has mostly been approached with the assumption that incoherent texts can be represented by coherent texts in which sentences have been shuffled. However, incoherent real-world texts rarely resemble that. We thus present DDisCo, a dataset including text from the Danish Wikipedia and Reddit annotated for discourse coherence. We choose to annotate real-world texts instead of relying on artificially incoherent text for training and testing models. Then, we evaluate the performance of several methods, including neural networks, on the dataset.},
79
+ address = {Marseille, France},
80
+ author = {Flansmose Mikkelsen, Linea and
81
+ Kinch, Oliver and
82
+ Jess Pedersen, Anders and
83
+ Lacroix, Oph{\'e}lie},
84
+ booktitle = {Proceedings of the Thirteenth Language Resources and Evaluation Conference},
85
+ editor = {Calzolari, Nicoletta and
86
+ B{\'e}chet, Fr{\'e}d{\'e}ric and
87
+ Blache, Philippe and
88
+ Choukri, Khalid and
89
+ Cieri, Christopher and
90
+ Declerck, Thierry and
91
+ Goggi, Sara and
92
+ Isahara, Hitoshi and
93
+ Maegaard, Bente and
94
+ Mariani, Joseph and
95
+ Mazo, H{\'e}l{\`e}ne and
96
+ Odijk, Jan and
97
+ Piperidis, Stelios},
98
+ month = jun,
99
+ pages = {2440--2445},
100
+ publisher = {European Language Resources Association},
101
+ title = {{DD}is{C}o: A Discourse Coherence Dataset for {D}anish},
102
+ url = {https://aclanthology.org/2022.lrec-1.260},
103
+ year = {2022},
104
+ }
105
+
106
+
107
+ @article{enevoldsen2025mmtebmassivemultilingualtext,
108
+ title={MMTEB: Massive Multilingual Text Embedding Benchmark},
109
+ 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},
110
+ publisher = {arXiv},
111
+ journal={arXiv preprint arXiv:2502.13595},
112
+ year={2025},
113
+ url={https://arxiv.org/abs/2502.13595},
114
+ doi = {10.48550/arXiv.2502.13595},
115
+ }
116
+
117
+ @article{muennighoff2022mteb,
118
+ author = {Muennighoff, Niklas and Tazi, Nouamane and Magne, Lo{\"\i}c and Reimers, Nils},
119
+ title = {MTEB: Massive Text Embedding Benchmark},
120
+ publisher = {arXiv},
121
+ journal={arXiv preprint arXiv:2210.07316},
122
+ year = {2022}
123
+ url = {https://arxiv.org/abs/2210.07316},
124
+ doi = {10.48550/ARXIV.2210.07316},
125
+ }
126
+ ```
127
+
128
+ # Dataset Statistics
129
+ <details>
130
+ <summary> Dataset Statistics</summary>
131
+
132
+ The following code contains the descriptive statistics from the task. These can also be obtained using:
133
+
134
+ ```python
135
+ import mteb
136
+
137
+ task = mteb.get_task("Ddisco")
138
+
139
+ desc_stats = task.metadata.descriptive_stats
140
+ ```
141
+
142
+ ```json
143
+ {
144
+ "test": {
145
+ "num_samples": 201,
146
+ "number_of_characters": 200062,
147
+ "number_texts_intersect_with_train": 1,
148
+ "min_text_length": 529,
149
+ "average_text_length": 995.3333333333334,
150
+ "max_text_length": 2050,
151
+ "unique_text": 201,
152
+ "unique_labels": 3,
153
+ "labels": {
154
+ "2": {
155
+ "count": 76
156
+ },
157
+ "3": {
158
+ "count": 115
159
+ },
160
+ "1": {
161
+ "count": 10
162
+ }
163
+ }
164
+ },
165
+ "train": {
166
+ "num_samples": 801,
167
+ "number_of_characters": 779241,
168
+ "number_texts_intersect_with_train": null,
169
+ "min_text_length": 492,
170
+ "average_text_length": 972.8352059925094,
171
+ "max_text_length": 2411,
172
+ "unique_text": 796,
173
+ "unique_labels": 3,
174
+ "labels": {
175
+ "1": {
176
+ "count": 30
177
+ },
178
+ "2": {
179
+ "count": 325
180
+ },
181
+ "3": {
182
+ "count": 446
183
+ }
184
+ }
185
+ }
186
+ }
187
+ ```
188
+
189
+ </details>
190
+
191
+ ---
192
+ *This dataset card was automatically generated using [MTEB](https://github.com/embeddings-benchmark/mteb)*