Datasets:
Tasks:
Question Answering
Modalities:
Text
Formats:
parquet
Languages:
English
Size:
10K - 100K
Tags:
arxiv
License:
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,84 @@
|
|
| 1 |
-
---
|
| 2 |
-
license:
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-nc-sa-4.0
|
| 3 |
+
size_categories:
|
| 4 |
+
- 10K<n<100K
|
| 5 |
+
task_categories:
|
| 6 |
+
- question-answering
|
| 7 |
+
language:
|
| 8 |
+
- en
|
| 9 |
+
tags:
|
| 10 |
+
- arxiv
|
| 11 |
+
pretty_name: Arxiver Dataset with Category
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
## Arxiver Dataset with Category
|
| 15 |
+
|
| 16 |
+
This dataset is an enhanced version of the [Arxiver dataset](https://huggingface.co/datasets/neuralwork) with additional category information. It contains 63,357 arXiv papers published between January 2023 and October 2023, with each paper enriched with its primary category and all associated categories.
|
| 17 |
+
|
| 18 |
+
## Additional Features
|
| 19 |
+
|
| 20 |
+
Beyond the original dataset's fields (ID, title, abstract, authors, publication date, URL, and markdown content), this version adds:
|
| 21 |
+
|
| 22 |
+
- primary_category: The main arXiv category of the paper (e.g., 'cs.AI', 'cs.CL')
|
| 23 |
+
- categories: A list of all arXiv categories associated with the paper
|
| 24 |
+
|
| 25 |
+
These category fields were obtained through the arXiv API to provide more comprehensive paper classification information.
|
| 26 |
+
|
| 27 |
+
## Dataset Structure
|
| 28 |
+
|
| 29 |
+
```
|
| 30 |
+
{
|
| 31 |
+
'id': 'arxiv paper id',
|
| 32 |
+
'title': 'paper title',
|
| 33 |
+
'abstract': 'paper abstract',
|
| 34 |
+
'authors': 'paper authors',
|
| 35 |
+
'published_date': 'publication date',
|
| 36 |
+
'link': 'arxiv url',
|
| 37 |
+
'markdown': 'paper content in markdown format',
|
| 38 |
+
'primary_category': 'main arxiv category',
|
| 39 |
+
'categories': ['list', 'of', 'arxiv', 'categories']
|
| 40 |
+
}
|
| 41 |
+
```
|
| 42 |
+
|
| 43 |
+
|
| 44 |
+
## Using Arxiver
|
| 45 |
+
|
| 46 |
+
You can easily download and use the arxiver dataset with Hugging Face's [datasets](https://huggingface.co/datasets) library.
|
| 47 |
+
|
| 48 |
+
```py
|
| 49 |
+
from datasets import load_dataset
|
| 50 |
+
dataset = load_dataset("real-jiakai/arxiver-with-category")
|
| 51 |
+
```
|
| 52 |
+
|
| 53 |
+
Alternatively, you can stream the dataset to save disk space or to partially download the dataset:
|
| 54 |
+
|
| 55 |
+
```py
|
| 56 |
+
from datasets import load_dataset
|
| 57 |
+
dataset = load_dataset("real-jiakai/arxiver-with-category", streaming=True)
|
| 58 |
+
```
|
| 59 |
+
|
| 60 |
+
## License & Citation
|
| 61 |
+
|
| 62 |
+
This dataset follows the same Creative Commons Attribution-Noncommercial-ShareAlike (CC BY-NC-SA 4.0) license as the original Arxiver dataset.
|
| 63 |
+
|
| 64 |
+
## References
|
| 65 |
+
|
| 66 |
+
When using this dataset, please cite both this version and the original Arxiver dataset:
|
| 67 |
+
|
| 68 |
+
```
|
| 69 |
+
@misc{acar_arxiver2024,
|
| 70 |
+
author = {Alican Acar, Alara Dirik, Muhammet Hatipoglu},
|
| 71 |
+
title = {ArXiver},
|
| 72 |
+
year = {2024},
|
| 73 |
+
publisher = {Hugging Face},
|
| 74 |
+
howpublished = {\url{https://huggingface.co/datasets/neuralwork/arxiver}}
|
| 75 |
+
}
|
| 76 |
+
|
| 77 |
+
@misc{jiakai_arxiver2024,
|
| 78 |
+
author = {real-jiakai},
|
| 79 |
+
title = {Arxiver with Category},
|
| 80 |
+
year = {2024},
|
| 81 |
+
publisher = {Hugging Face},
|
| 82 |
+
howpublished = {\url{https://huggingface.co/datasets/real-jiakai/arxiver-with-category}}
|
| 83 |
+
}
|
| 84 |
+
```
|