Commit
·
6077454
1
Parent(s):
6d0f7ba
add readme
Browse files
README.md
CHANGED
@@ -27,3 +27,41 @@ configs:
|
|
27 |
- split: train
|
28 |
path: data/train-*
|
29 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
- split: train
|
28 |
path: data/train-*
|
29 |
---
|
30 |
+
## Arxiver Dataset
|
31 |
+
Arxiver consists of 138,830 [arXiv](https://arxiv.org/) papers converted to multi-markdown (**.mmd**) format. Our dataset includes original arXiv article IDs, titles, abstracts, authors, publication dates, URLs and corresponding markdown files published between January 2023 and October 2023.
|
32 |
+
|
33 |
+
We hope our dataset will be useful for various applications such as semantic search, domain specific language modeling, question answering and summarization.
|
34 |
+
|
35 |
+
## Curation
|
36 |
+
The Arxiver dataset is created using a neural OCR - [Nougat](https://facebookresearch.github.io/nougat/). After OCR processing, we apply custom text processing steps to refine the data. This includes extracting author information, removing reference sections, and performing additional cleaning and formatting.
|
37 |
+
|
38 |
+
## Using Arxiver
|
39 |
+
You can easily download and use the arxiver dataset with Hugging Face's [datasets](https://huggingface.co/datasets) library.
|
40 |
+
```py
|
41 |
+
from datasets import load_dataset
|
42 |
+
|
43 |
+
# whole dataset takes 3.3GB
|
44 |
+
dataset = load_dataset("neuralwork/arxiver")
|
45 |
+
print(dataset)
|
46 |
+
```
|
47 |
+
|
48 |
+
Alternatively, you can stream the dataset to save disk space or to partially download the dataset:
|
49 |
+
```py
|
50 |
+
from datasets import load_dataset
|
51 |
+
|
52 |
+
dataset = load_dataset("neuralwork/arxiver", streaming=True)
|
53 |
+
print(dataset)
|
54 |
+
print(next(iter(dataset['train'])))
|
55 |
+
```
|
56 |
+
|
57 |
+
## References
|
58 |
+
The original articles are maintained by [arXiv](https://arxiv.org/). If you use this dataset in your research or project, please cite it as follows:
|
59 |
+
```
|
60 |
+
@misc{acar_arxiver2024,
|
61 |
+
author = {Alican Acar, Alara Dirik, Muhammet Hatipoglu},
|
62 |
+
title = {ArXiver},
|
63 |
+
year = {2024},
|
64 |
+
publisher = {Hugging Face},
|
65 |
+
howpublished = {\url{https://huggingface.co/datasets/neuralwork/arxiver}}
|
66 |
+
}
|
67 |
+
```
|