Datasets:

Modalities:
Text
Formats:
parquet
Languages:
English
ArXiv:
Libraries:
Datasets
pandas
License:
Samoed commited on
Commit
e5a9db0
·
verified ·
1 Parent(s): 39b8377

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +149 -90
README.md CHANGED
@@ -1,92 +1,151 @@
1
  ---
2
- dataset_info:
3
- - config_name: corpus
4
- features:
5
- - name: _id
6
- dtype: string
7
- - name: text
8
- dtype: string
9
- - name: title
10
- dtype: string
11
- splits:
12
- - name: validation
13
- num_bytes: 14082989
14
- num_examples: 118681
15
- - name: test
16
- num_bytes: 13338796
17
- num_examples: 118600
18
- download_size: 13524910
19
- dataset_size: 27421785
20
- - config_name: default
21
- features:
22
- - name: query-id
23
- dtype: string
24
- - name: corpus-id
25
- dtype: string
26
- - name: score
27
- dtype: int64
28
- splits:
29
- - name: validation
30
- num_bytes: 8379567
31
- num_examples: 118681
32
- - name: test
33
- num_bytes: 6950563
34
- num_examples: 118600
35
- download_size: 1632642
36
- dataset_size: 15330130
37
- - config_name: queries
38
- features:
39
- - name: _id
40
- dtype: string
41
- - name: text
42
- dtype: string
43
- splits:
44
- - name: validation
45
- num_bytes: 384286
46
- num_examples: 3981
47
- - name: test
48
- num_bytes: 364609
49
- num_examples: 3978
50
- download_size: 437805
51
- dataset_size: 748895
52
- - config_name: top_ranked
53
- features:
54
- - name: query-id
55
- dtype: string
56
- - name: corpus-ids
57
- sequence: string
58
- splits:
59
- - name: validation
60
- num_bytes: 4725322
61
- num_examples: 3981
62
- - name: test
63
- num_bytes: 3986587
64
- num_examples: 3978
65
- download_size: 1589577
66
- dataset_size: 8711909
67
- configs:
68
- - config_name: corpus
69
- data_files:
70
- - split: validation
71
- path: corpus/validation-*
72
- - split: test
73
- path: corpus/test-*
74
- - config_name: default
75
- data_files:
76
- - split: validation
77
- path: data/validation-*
78
- - split: test
79
- path: data/test-*
80
- - config_name: queries
81
- data_files:
82
- - split: validation
83
- path: queries/validation-*
84
- - split: test
85
- path: queries/test-*
86
- - config_name: top_ranked
87
- data_files:
88
- - split: validation
89
- path: top_ranked/validation-*
90
- - split: test
91
- path: top_ranked/test-*
92
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - eng
4
+ license: cc-by-4.0
5
+ multilinguality: monolingual
6
+ source_datasets:
7
+ - mteb/scidocs
8
+ task_categories:
9
+ - text-ranking
10
+ task_ids:
11
+ - Scientific Reranking
12
+ tags:
13
+ - mteb
14
+ - text
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  ---
16
+ <!-- adapted from https://github.com/huggingface/huggingface_hub/blob/v0.30.2/src/huggingface_hub/templates/datasetcard_template.md -->
17
+
18
+ <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;">
19
+ <h1 style="font-size: 3.5rem; color: #1a1a1a; margin: 0 0 20px 0; letter-spacing: 2px; font-weight: 700;">SciDocsRR</h1>
20
+ <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>
21
+ <div style="font-size: 0.9rem; color: #2c5282; margin-top: 10px;">Massive Text Embedding Benchmark</div>
22
+ </div>
23
+
24
+ Ranking of related scientific papers based on their title.
25
+
26
+ | | |
27
+ |---------------|---------------------------------------------|
28
+ | Task category | t2t |
29
+ | Domains | Academic, Non-fiction, Written |
30
+ | Reference | https://allenai.org/data/scidocs |
31
+
32
+
33
+ ## How to evaluate on this task
34
+
35
+ You can evaluate an embedding model on this dataset using the following code:
36
+
37
+ ```python
38
+ import mteb
39
+
40
+ task = mteb.get_tasks(["SciDocsRR"])
41
+ evaluator = mteb.MTEB(task)
42
+
43
+ model = mteb.get_model(YOUR_MODEL)
44
+ evaluator.run(model)
45
+ ```
46
+
47
+ <!-- Datasets want link to arxiv in readme to autolink dataset with paper -->
48
+ To learn more about how to run models on `mteb` task check out the [GitHub repitory](https://github.com/embeddings-benchmark/mteb).
49
+
50
+ ## Citation
51
+
52
+ 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).
53
+
54
+ ```bibtex
55
+
56
+ @inproceedings{cohan-etal-2020-specter,
57
+ title = "{SPECTER}: Document-level Representation Learning using Citation-informed Transformers",
58
+ author = "Cohan, Arman and
59
+ Feldman, Sergey and
60
+ Beltagy, Iz and
61
+ Downey, Doug and
62
+ Weld, Daniel",
63
+ editor = "Jurafsky, Dan and
64
+ Chai, Joyce and
65
+ Schluter, Natalie and
66
+ Tetreault, Joel",
67
+ booktitle = "Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics",
68
+ month = jul,
69
+ year = "2020",
70
+ address = "Online",
71
+ publisher = "Association for Computational Linguistics",
72
+ url = "https://aclanthology.org/2020.acl-main.207",
73
+ doi = "10.18653/v1/2020.acl-main.207",
74
+ pages = "2270--2282",
75
+ abstract = "Representation learning is a critical ingredient for natural language processing systems. Recent Transformer language models like BERT learn powerful textual representations, but these models are targeted towards token- and sentence-level training objectives and do not leverage information on inter-document relatedness, which limits their document-level representation power. For applications on scientific documents, such as classification and recommendation, accurate embeddings of documents are a necessity. We propose SPECTER, a new method to generate document-level embedding of scientific papers based on pretraining a Transformer language model on a powerful signal of document-level relatedness: the citation graph. Unlike existing pretrained language models, Specter can be easily applied to downstream applications without task-specific fine-tuning. Additionally, to encourage further research on document-level models, we introduce SciDocs, a new evaluation benchmark consisting of seven document-level tasks ranging from citation prediction, to document classification and recommendation. We show that Specter outperforms a variety of competitive baselines on the benchmark.",
76
+ }
77
+
78
+
79
+ @article{enevoldsen2025mmtebmassivemultilingualtext,
80
+ title={MMTEB: Massive Multilingual Text Embedding Benchmark},
81
+ 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},
82
+ publisher = {arXiv},
83
+ journal={arXiv preprint arXiv:2502.13595},
84
+ year={2025},
85
+ url={https://arxiv.org/abs/2502.13595},
86
+ doi = {10.48550/arXiv.2502.13595},
87
+ }
88
+
89
+ @article{muennighoff2022mteb,
90
+ author = {Muennighoff, Niklas and Tazi, Nouamane and Magne, Lo{\"\i}c and Reimers, Nils},
91
+ title = {MTEB: Massive Text Embedding Benchmark},
92
+ publisher = {arXiv},
93
+ journal={arXiv preprint arXiv:2210.07316},
94
+ year = {2022}
95
+ url = {https://arxiv.org/abs/2210.07316},
96
+ doi = {10.48550/ARXIV.2210.07316},
97
+ }
98
+ ```
99
+
100
+ # Dataset Statistics
101
+ <details>
102
+ <summary> Dataset Statistics</summary>
103
+
104
+ The following code contains the descriptive statistics from the task. These can also be obtained using:
105
+
106
+ ```python
107
+ import mteb
108
+
109
+ task = mteb.get_task("SciDocsRR")
110
+
111
+ desc_stats = task.metadata.descriptive_stats
112
+ ```
113
+
114
+ ```json
115
+ {
116
+ "test": {
117
+ "num_samples": 122578,
118
+ "number_of_characters": 8761260,
119
+ "num_documents": 118600,
120
+ "min_document_length": 8,
121
+ "average_document_length": 71.52865935919056,
122
+ "max_document_length": 300,
123
+ "unique_documents": 118600,
124
+ "num_queries": 3978,
125
+ "min_query_length": 13,
126
+ "average_query_length": 69.87456008044244,
127
+ "max_query_length": 300,
128
+ "unique_queries": 3978,
129
+ "none_queries": 0,
130
+ "num_relevant_docs": 118600,
131
+ "min_relevant_docs_per_query": 26,
132
+ "average_relevant_docs_per_query": 4.92684766214178,
133
+ "max_relevant_docs_per_query": 60,
134
+ "unique_relevant_docs": 118600,
135
+ "num_instructions": null,
136
+ "min_instruction_length": null,
137
+ "average_instruction_length": null,
138
+ "max_instruction_length": null,
139
+ "unique_instructions": null,
140
+ "num_top_ranked": 3978,
141
+ "min_top_ranked_per_query": 26,
142
+ "average_top_ranked_per_query": 29.813976872800403,
143
+ "max_top_ranked_per_query": 60
144
+ }
145
+ }
146
+ ```
147
+
148
+ </details>
149
+
150
+ ---
151
+ *This dataset card was automatically generated using [MTEB](https://github.com/embeddings-benchmark/mteb)*