tbenthompson commited on
Commit
7c6c104
·
1 Parent(s): 5d0c873

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +13 -44
README.md CHANGED
@@ -1,45 +1,14 @@
1
- ---
2
- dataset_info:
3
- features:
4
- - name: id0
5
- dtype: uint16
6
- - name: id1
7
- dtype: uint16
8
- - name: sum_count
9
- dtype: uint64
10
- - name: max_count
11
- dtype: uint32
12
- - name: frac_max
13
- dtype: float64
14
- - name: token0
15
- dtype: string
16
- - name: token1
17
- dtype: string
18
- - name: seq
19
- dtype: string
20
- - name: p_70m
21
- dtype: float64
22
- - name: p_160m
23
- dtype: float64
24
- - name: p_410m
25
- dtype: float64
26
- - name: p_1b
27
- dtype: float64
28
- - name: p_1.4b
29
- dtype: float64
30
- - name: p_2.8b
31
- dtype: float64
32
- - name: p_6.9b
33
- dtype: float64
34
- - name: p_12b
35
- dtype: float64
36
- splits:
37
- - name: top_bigrams
38
- num_bytes: 416975
39
- num_examples: 3448
40
- download_size: 327512
41
- dataset_size: 416975
42
- ---
43
- # Dataset Card for "pile_ngrams_top_bigrams"
44
 
45
- [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
 
2
+ # top_bigrams
3
+
4
+ See https://confirmlabs.org/posts/catalog.html for details.
5
+
6
+ - `id0`: the first token in the bigram
7
+ - `id1`: the most common token following `id0` in The Pile
8
+ - `sum_count`: the number of times that `id0` appears in The Pile.
9
+ - `max_count`: the number of times that `id1` appears after `id0` in The Pile.
10
+ - `frac_max`: `max_count / sum_count`
11
+ - `token0`: the string representation of `id0`
12
+ - `token1`: the string representation of `id1`
13
+ - `seq`: the string representation of the bigram, `token0 token1`
14
+ - `p_{model_size}`: the probability of the bigram under Pythia-{model_size} when prompted with `id0`.