Update README.md
Browse files
README.md
CHANGED
|
@@ -11,29 +11,30 @@ size_categories:
|
|
| 11 |
|
| 12 |
## **Dataset Description**
|
| 13 |
|
| 14 |
-
This dataset contains manually annotated, structured metadata for a random sample of preprints from arXiv. Each entry in the dataset corresponds to a single publication and includes its title, language, arXiv ID, DOI link,
|
| 15 |
|
| 16 |
|
| 17 |
## **Data Fields**
|
| 18 |
|
| 19 |
Each object in the JSON dataset contains the following fields:
|
| 20 |
|
| 21 |
-
*
|
| 22 |
-
* doi (string): The Digital Object Identifier (DOI) link for the publication (e.g., https://doi.org/10.48550/arXiv.hep-ph/0211259).
|
| 23 |
-
* title (object): An object containing the title of the publication.
|
| 24 |
-
* text (string): The full title of the paper.
|
| 25 |
-
* lang (string): The language code for the title (e.g., en).
|
| 26 |
-
* authors (array): A list of objects, where each object represents an author.
|
| 27 |
-
* name (string): The full name of the author.
|
| 28 |
-
* affiliations (array): A list of strings, where each string is an institutional affiliation for the author.
|
|
|
|
| 29 |
|
| 30 |
### **Example Data Point**
|
| 31 |
-
```
|
| 32 |
{
|
| 33 |
"arxiv_id": "arXiv:2003.03151",
|
| 34 |
"doi": "https://doi.org/10.48550/arXiv.2003.03151",
|
| 35 |
"title": {
|
| 36 |
-
"text": "Demographic Bias in Presentation Attack Detection
|
| 37 |
"lang": "en"
|
| 38 |
},
|
| 39 |
"authors": [
|
|
@@ -58,9 +59,16 @@ Each object in the JSON dataset contains the following fields:
|
|
| 58 |
"Mathematical and Applied Visual Computing, TU Darmstadt, Darmstadt, Germanyjo"
|
| 59 |
]
|
| 60 |
}
|
| 61 |
-
]
|
|
|
|
| 62 |
}
|
| 63 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 64 |
## **Data Splits**
|
| 65 |
|
| 66 |
This dataset does not contain any predefined data splits (e.g., train, validation, test).
|
|
|
|
| 11 |
|
| 12 |
## **Dataset Description**
|
| 13 |
|
| 14 |
+
This dataset contains manually annotated, structured metadata for a random sample of preprints from arXiv. Each entry in the dataset corresponds to a single publication and includes its title, language, arXiv ID, DOI link, a structured list of authors with their respective affiliations, and the corresponding PDF filename.
|
| 15 |
|
| 16 |
|
| 17 |
## **Data Fields**
|
| 18 |
|
| 19 |
Each object in the JSON dataset contains the following fields:
|
| 20 |
|
| 21 |
+
* **arxiv_id** (string): The unique arXiv identifier for the publication (e.g., arXiv:hep-ph/0211259).
|
| 22 |
+
* **doi** (string): The Digital Object Identifier (DOI) link for the publication (e.g., https://doi.org/10.48550/arXiv.hep-ph/0211259).
|
| 23 |
+
* **title** (object): An object containing the title of the publication.
|
| 24 |
+
* **text** (string): The full title of the paper.
|
| 25 |
+
* **lang** (string): The language code for the title (e.g., en).
|
| 26 |
+
* **authors** (array): A list of objects, where each object represents an author.
|
| 27 |
+
* **name** (string): The full name of the author.
|
| 28 |
+
* **affiliations** (array): A list of strings, where each string is an institutional affiliation for the author.
|
| 29 |
+
* **filename** (string): The filename of the corresponding PDF document, derived from the arXiv ID with forward slashes replaced by underscores (e.g., math_0601203.pdf for arXiv:math/0601203).
|
| 30 |
|
| 31 |
### **Example Data Point**
|
| 32 |
+
```json
|
| 33 |
{
|
| 34 |
"arxiv_id": "arXiv:2003.03151",
|
| 35 |
"doi": "https://doi.org/10.48550/arXiv.2003.03151",
|
| 36 |
"title": {
|
| 37 |
+
"text": "Demographic Bias in Presentation Attack Detection\n\nof Iris Recognition Systems",
|
| 38 |
"lang": "en"
|
| 39 |
},
|
| 40 |
"authors": [
|
|
|
|
| 59 |
"Mathematical and Applied Visual Computing, TU Darmstadt, Darmstadt, Germanyjo"
|
| 60 |
]
|
| 61 |
}
|
| 62 |
+
],
|
| 63 |
+
"filename": "2003.03151.pdf"
|
| 64 |
}
|
| 65 |
```
|
| 66 |
+
|
| 67 |
+
### **Filename Format**
|
| 68 |
+
The filename field follows a consistent pattern based on the arXiv ID:
|
| 69 |
+
- Standard format (YYMM.NNNNN): `2003.03151.pdf`
|
| 70 |
+
- Category format (category/YYMMNNN): `math_0601203.pdf` (forward slash replaced with underscore)
|
| 71 |
+
|
| 72 |
## **Data Splits**
|
| 73 |
|
| 74 |
This dataset does not contain any predefined data splits (e.g., train, validation, test).
|