tbenthompson
commited on
Commit
•
ccffaef
1
Parent(s):
90ef2d4
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -1,25 +1,11 @@
|
|
1 |
-
---
|
2 |
-
dataset_info:
|
3 |
-
features:
|
4 |
-
- name: id0
|
5 |
-
dtype: uint16
|
6 |
-
- name: id1
|
7 |
-
dtype: uint16
|
8 |
-
- name: id2
|
9 |
-
dtype: uint16
|
10 |
-
- name: sum_count
|
11 |
-
dtype: uint64
|
12 |
-
- name: max_count
|
13 |
-
dtype: uint32
|
14 |
-
- name: frac_max
|
15 |
-
dtype: float64
|
16 |
-
splits:
|
17 |
-
- name: trigram_prefixes
|
18 |
-
num_bytes: 12511219415
|
19 |
-
num_examples: 478898329
|
20 |
-
download_size: 7191379557
|
21 |
-
dataset_size: 12511219415
|
22 |
-
---
|
23 |
-
# Dataset Card for "pile_ngrams_trigram_prefixes"
|
24 |
|
25 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
|
2 |
+
# trigram_prefixes
|
3 |
+
|
4 |
+
See https://confirmlabs.org/posts/catalog.html for details.
|
5 |
+
|
6 |
+
- `id0`: the first token in the trigram
|
7 |
+
- `id1`: the second token in the trigram
|
8 |
+
- `id2`: the most common token following `(id0, id1)` in The Pile
|
9 |
+
- `sum_count`: the number of times that `(id0, id1)` appears in The Pile.
|
10 |
+
- `max_count`: the number of times that `id2` appears after `(id0, id1)` in The Pile.
|
11 |
+
- `frac_max`: `max_count / sum_count`
|