Update README.md
Browse files
README.md
CHANGED
@@ -58,4 +58,39 @@ configs:
|
|
58 |
path: data/validation-*
|
59 |
- split: test
|
60 |
path: data/test-*
|
|
|
61 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
path: data/validation-*
|
59 |
- split: test
|
60 |
path: data/test-*
|
61 |
+
license: mit
|
62 |
---
|
63 |
+
|
64 |
+
|
65 |
+
This is a dataset of scientific documents derived from arXiv metadata. The arXiv metadata provides information about more than 2 million scholarly articles published in arXiv from various scientific fields. We use this metadata to create a dataset of 183,565 titles and abstracts categorized into 130 different classes. To this end, we first perform stratified downsampling of the metadata to only 10% of all articles while retaining the original class distribution. Afterward, articles assigned to categories occurring less than 100 times in the downsampled dataset are removed. To obtain the final dataset, we then perform a stratified train/validation/test split of the processed dataset in an 80:10:10 ratio. The number of examples in each set is shown in the table below.
|
66 |
+
|
67 |
+
|
68 |
+
📄 Paper: [Efficient Few-shot Learning for Multi-label Classification of Scientific Documents with Many Classes (ICNLSP 2024)](#)
|
69 |
+
|
70 |
+
💻 Code: [https://github.com/sebischair/FusionSent](https://github.com/sebischair/FusionSent)
|
71 |
+
|
72 |
+
| Split | Number of Samples |
|
73 |
+
|:-----------:|:-----------------:|
|
74 |
+
| Train | 163,168 |
|
75 |
+
| Validation | 20,396 |
|
76 |
+
| Test | 20,397 |
|
77 |
+
|
78 |
+
|
79 |
+
Each article in the resulting arXiv dataset is categorized into one or more distinct categories. The figure below shows the distribution of papers across the 130 categories of the dataset.
|
80 |
+
|
81 |
+

|
82 |
+
|
83 |
+
|
84 |
+
## License
|
85 |
+
MIT
|
86 |
+
|
87 |
+
## Citation information
|
88 |
+
When citing our work in academic papers and theses, please use this BibTeX entry:
|
89 |
+
```
|
90 |
+
@article{...,
|
91 |
+
title={...},
|
92 |
+
author={...},
|
93 |
+
journal={...},
|
94 |
+
year={...}
|
95 |
+
}
|
96 |
+
```
|