Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -1,32 +1,29 @@
|
|
1 |
---
|
2 |
-
|
3 |
-
features:
|
4 |
-
- name: entry_id
|
5 |
-
dtype: string
|
6 |
-
- name: published
|
7 |
-
dtype: string
|
8 |
-
- name: title
|
9 |
-
dtype: string
|
10 |
-
- name: authors
|
11 |
-
sequence: string
|
12 |
-
- name: primary_category
|
13 |
-
dtype: string
|
14 |
-
- name: categories
|
15 |
-
sequence: string
|
16 |
-
- name: text
|
17 |
-
dtype: string
|
18 |
-
splits:
|
19 |
-
- name: train
|
20 |
-
num_bytes: 3640972
|
21 |
-
num_examples: 93
|
22 |
-
download_size: 1815906
|
23 |
-
dataset_size: 3640972
|
24 |
-
configs:
|
25 |
-
- config_name: default
|
26 |
-
data_files:
|
27 |
-
- split: train
|
28 |
-
path: data/train-*
|
29 |
---
|
30 |
-
# Dataset Card for "arxiv_latest"
|
31 |
|
32 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
{}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
4 |
|
5 |
+
# Latest arXiv
|
6 |
+
|
7 |
+
You could always access the latest arXiv papers via this dataset.
|
8 |
+
|
9 |
+
We update the dataset weekly, on every Sunday. So the dataset always provides the latest arXiv papers created in the past week.
|
10 |
+
|
11 |
+
The current dataset on main branch contains the latest arXiv papers submitted from 2023-08-28 to 2023-09-04.
|
12 |
+
|
13 |
+
The data collection was conducted on 2023-09-04.
|
14 |
+
|
15 |
+
Use the dataset via:
|
16 |
+
```
|
17 |
+
ds = datasets.load_dataset('RealTimeData/arxiv_latest')
|
18 |
+
```
|
19 |
+
|
20 |
+
# Previsou versions
|
21 |
+
|
22 |
+
You could access previous versions by requesting different branches.
|
23 |
+
|
24 |
+
For example, you could find the 2023-08-20 version via:
|
25 |
+
```
|
26 |
+
ds = datasets.load_dataset('RealTimeData/arxiv_latest', revision = '2023-08-20')
|
27 |
+
```
|
28 |
+
|
29 |
+
Check all available versions by clicking the "Files and versions" button on the top bar.
|