Update README.md
Browse files
README.md
CHANGED
@@ -3,5 +3,55 @@ language:
|
|
3 |
- en
|
4 |
---
|
5 |
|
6 |
-
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
- en
|
4 |
---
|
5 |
|
6 |
+
# mteb/arena-arxiv-7-2-24 Dataset
|
7 |
+
|
8 |
+
## Overview
|
9 |
+
|
10 |
+
This dataset, `mteb/arena-arxiv-7-2-24`, is a comprehensive collection of scientific papers from ArXiv up to July 2, 2024. It is designed for use in the MTEB (Massive Text Embedding Benchmark) arena, where various embedding models compete and are ranked based on their performance.
|
11 |
+
|
12 |
+
## What is ArXiv?
|
13 |
+
|
14 |
+
ArXiv (pronounced "archive") is a free distribution service and open-access archive for scholarly articles. Founded in 1991, it has become a crucial platform for researchers to share their work quickly and efficiently, particularly in the fields of physics, mathematics, computer science, quantitative biology, quantitative finance, statistics, electrical engineering and systems science, and economics.
|
15 |
+
|
16 |
+
ArXiv allows researchers to upload preprints (versions of academic papers before peer review) as well as post-prints (versions after peer review). This enables rapid dissemination of new research findings and fosters open scientific communication.
|
17 |
+
|
18 |
+
## Dataset Structure
|
19 |
+
|
20 |
+
Each instance in the dataset represents a single paper from ArXiv and contains the following fields:
|
21 |
+
|
22 |
+
1. **id** (string): A unique identifier for the paper, typically in the format "YYMM.NNNNN" where YY is the year, MM is the month, and NNNNN is a sequential number.
|
23 |
+
|
24 |
+
2. **title** (string): The full title of the paper.
|
25 |
+
|
26 |
+
3. **abstract** (string): A summary of the paper's content, typically written by the authors.
|
27 |
+
|
28 |
+
4. **categories** (string): The ArXiv categories associated with the paper. Papers can belong to multiple categories, reflecting their interdisciplinary nature.
|
29 |
+
|
30 |
+
## Example Instance
|
31 |
+
|
32 |
+
Here's an example of what a single instance in the dataset looks like:
|
33 |
+
|
34 |
+
```json
|
35 |
+
{
|
36 |
+
"id": "0704.0001",
|
37 |
+
"title": "Calculation of prompt diphoton production cross sections at Tevatron and LHC energies",
|
38 |
+
"abstract": "A fully differential calculation in perturbative quantum chromodynamics is presented for the production of massive photon pairs at hadron colliders. All next-to-leading order perturbative contributions from quark-antiquark, gluon-(anti)quark, and gluon-gluon subprocesses are included, as well as all-orders resummation of initial-state gluon radiation valid at next-to-next-to-leading logarithmic accuracy. The region of phase space is specified in which the calculation is most reliable. Good agreement is demonstrated with data from the Fermilab Tevatron, and predictions are made for more detailed tests with CDF and DO data. Predictions are shown for distributions of diphoton pairs produced at the energy of the Large Hadron Collider (LHC). Distributions of the diphoton pair transverse momentum and rapidity are presented, as well as the rapidity distribution of the diphoton system. The direct photon contribution is shown separately from the photon fragmentation contributions. The fragmentation contributions are approximated by the use of the first order perturbative contribution only.",
|
39 |
+
"categories": "hep-ph"
|
40 |
+
}
|
41 |
+
```
|
42 |
+
|
43 |
+
## Usage
|
44 |
+
|
45 |
+
This dataset is primarily intended for training and evaluating embedding models in the MTEB arena. Researchers and developers can use it to:
|
46 |
+
|
47 |
+
1. Train new embedding models on a diverse set of scientific texts.
|
48 |
+
2. Evaluate the performance of existing embedding models on scientific literature.
|
49 |
+
3. Conduct research on topic modeling, document classification, or information retrieval in the scientific domain.
|
50 |
+
|
51 |
+
## Ethical Considerations
|
52 |
+
|
53 |
+
When using this dataset, please be aware of potential biases in the scientific literature and the limitations of using preprint data. Not all papers in ArXiv have undergone peer review, so the quality and accuracy of the content may vary.
|
54 |
+
|
55 |
+
## Updates and Maintenance
|
56 |
+
|
57 |
+
This dataset represents ArXiv papers up to July 2, 2024. For instructions on how to create this dataset again with newer data, please refer to the [create_index_chunks.py script](https://github.com/embeddings-benchmark/arena/blob/main/retrieval/create_index_chunks.py#L107) in the embeddings-benchmark/arena repository.
|