Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -1,30 +1,16 @@
|
|
1 |
---
|
2 |
-
|
3 |
-
features:
|
4 |
-
- name: title
|
5 |
-
dtype: string
|
6 |
-
- name: text
|
7 |
-
dtype: string
|
8 |
-
- name: pageid
|
9 |
-
dtype: int64
|
10 |
-
splits:
|
11 |
-
- name: train
|
12 |
-
num_bytes: 82453
|
13 |
-
num_examples: 9
|
14 |
-
download_size: 56067
|
15 |
-
dataset_size: 82453
|
16 |
-
configs:
|
17 |
-
- config_name: default
|
18 |
-
data_files:
|
19 |
-
- split: train
|
20 |
-
path: data/train-*
|
21 |
---
|
22 |
|
23 |
# Latest Wikitext
|
24 |
|
25 |
-
|
26 |
|
27 |
-
|
|
|
|
|
|
|
|
|
28 |
|
29 |
Use the dataset via:
|
30 |
```
|
@@ -33,8 +19,11 @@ ds = datasets.load_dataset('RealTimeData/wikitext_latest')
|
|
33 |
|
34 |
# Previsou versions
|
35 |
|
36 |
-
You could access
|
37 |
|
38 |
For example, you could find the 2023-08-12 version via:
|
39 |
```
|
40 |
-
ds = datasets.load_dataset('RealTimeData/wikitext_latest', revision = '2023-08-12')
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
{}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
4 |
|
5 |
# Latest Wikitext
|
6 |
|
7 |
+
You could always access the latest Wikipedia texts via this dataset.
|
8 |
|
9 |
+
We update the dataset weekly, on every Sunday. So the dataset always provides the latest Wikipedia texts from the last week.
|
10 |
+
|
11 |
+
The current dataset on main branch contains the latest wikipedia texts created from 2023-08-16 to 2023-08-23.
|
12 |
+
|
13 |
+
The data collection is conducted on 2023-08-30.
|
14 |
|
15 |
Use the dataset via:
|
16 |
```
|
|
|
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-12 version via:
|
25 |
```
|
26 |
+
ds = datasets.load_dataset('RealTimeData/wikitext_latest', revision = '2023-08-12')
|
27 |
+
```
|
28 |
+
|
29 |
+
Check all available versions by clicking the "Files and versions" button on the top bar.
|