Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,35 @@
|
|
1 |
---
|
2 |
license: cc0-1.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: cc0-1.0
|
3 |
+
task_categories:
|
4 |
+
- token-classification
|
5 |
+
language:
|
6 |
+
- en
|
7 |
+
pretty_name: ArXiv PII
|
8 |
+
size_categories:
|
9 |
+
- 1K<n<10K
|
10 |
---
|
11 |
+
# ArXiv PII
|
12 |
+
|
13 |
+
Personally Identifiable Information (PII) from ArXiv front pages.
|
14 |
+
|
15 |
+
The dataset contains:
|
16 |
+
|
17 |
+
- first pages of ArXiv PDFs converted to text
|
18 |
+
- author related labels: NAME, EMAIL, PHONE
|
19 |
+
|
20 |
+
### Source Data
|
21 |
+
|
22 |
+
<!-- This section describes the source data (e.g. news text and headlines, social media posts, translated sentences, ...). -->
|
23 |
+
|
24 |
+
- Metadata from Kaggle dataset https://www.kaggle.com/datasets/Cornell-University/arxiv
|
25 |
+
- PDF files from Google Cloud Storage bucket gs://arxiv-dataset/arxiv/arxiv/pdf/
|
26 |
+
|
27 |
+
#### Data Collection and Processing
|
28 |
+
|
29 |
+
<!-- This section describes the data collection and processing process such as data selection criteria, filtering and normalization methods, tools and libraries used, etc. -->
|
30 |
+
|
31 |
+
1. List of ArXiv papers downloaded from Kaggle dataset `arxiv-metadata-oai-snapshot.json`
|
32 |
+
2. All papers filtered with **license** equel to `http://creativecommons.org/licenses/by/4.0/`
|
33 |
+
1. Related PDF files download from GCS
|
34 |
+
2. First page converted to text with `poppler` utils `pdftotext -l 1 -bbox-layout -nopgbrk`
|
35 |
+
3. Authors related entities manually tagged in Label Studio
|