File size: 1,161 Bytes
9d90a99
 
ce3ce96
 
ea05aec
ce3ce96
 
 
 
 
0e04a72
ce3ce96
 
9d90a99
f00408d
 
 
0e04a72
f8301b0
 
 
ce3ce96
 
 
 
f8301b0
f00408d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46399f8
f00408d
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
---
license: apache-2.0
task_categories:
- text-generation
- fill-mask
language:
- en
tags:
- language modeling
- lamguage
- 2023 data
size_categories:
- 100K<n<1M
---

# simple wikipedia

the 'simple' split of Wikipedia, from Sept 1 2023. The train split contains about 65M tokens,

Pulled via:

```python
dataset = load_dataset(
    "wikipedia", language="simple", date="20230901", beam_runner="DirectRunner"
)
```

## stats

### train split

general info 

```
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 226242 entries, 0 to 226241
Data columns (total 4 columns):
 #   Column       Non-Null Count   Dtype 
---  ------       --------------   ----- 
 0   id           226242 non-null  string
 1   url          226242 non-null  string
 2   title        226242 non-null  string
 3   text         226242 non-null  string
dtypes: string(4)
```

token length (NeoX)

![plot](neox_tokencounts_train.png)

|       |   tokens |
|:------|--------------:|
| count |    226242     |
| mean  |       287.007 |
| std   |      1327.07  |
| min   |         1     |
| 25%   |        65     |
| 50%   |       126     |
| 75%   |       243     |
| max   |     60844     |