Model save
Browse files- .gitignore +1 -0
- config.json +42 -0
- generation_config.json +7 -0
- pytorch_model.bin +3 -0
- special_tokens_map.json +7 -0
- tokenizer.json +1122 -0
- tokenizer_config.json +10 -0
- training_args.bin +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "Lakoc/gpt2_512h_16l_add_head8",
|
3 |
+
"activation_function": "gelu_new",
|
4 |
+
"architectures": [
|
5 |
+
"GPT2LMMultiHeadModel"
|
6 |
+
],
|
7 |
+
"attn_pdrop": 0.1,
|
8 |
+
"average_logits": false,
|
9 |
+
"bos_token_id": 0,
|
10 |
+
"embd_pdrop": 0.1,
|
11 |
+
"eos_token_id": 1,
|
12 |
+
"head_locations": [
|
13 |
+
8
|
14 |
+
],
|
15 |
+
"head_weights": [
|
16 |
+
0.7,
|
17 |
+
0.3
|
18 |
+
],
|
19 |
+
"initializer_range": 0.02,
|
20 |
+
"layer_norm_epsilon": 1e-05,
|
21 |
+
"model_type": "gpt2-multi-head",
|
22 |
+
"n_embd": 512,
|
23 |
+
"n_head": 8,
|
24 |
+
"n_inner": null,
|
25 |
+
"n_layer": 16,
|
26 |
+
"n_positions": 256,
|
27 |
+
"pad_token_id": 3,
|
28 |
+
"reorder_and_upcast_attn": false,
|
29 |
+
"resid_pdrop": 0.1,
|
30 |
+
"scale_attn_by_inverse_layer_idx": false,
|
31 |
+
"scale_attn_weights": true,
|
32 |
+
"summary_activation": null,
|
33 |
+
"summary_first_dropout": 0.1,
|
34 |
+
"summary_proj_to_labels": true,
|
35 |
+
"summary_type": "cls_index",
|
36 |
+
"summary_use_proj": true,
|
37 |
+
"tie_additional_weights": false,
|
38 |
+
"torch_dtype": "float32",
|
39 |
+
"transformers_version": "4.31.0.dev0",
|
40 |
+
"use_cache": true,
|
41 |
+
"vocab_size": 500
|
42 |
+
}
|
generation_config.json
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_from_model_config": true,
|
3 |
+
"bos_token_id": 0,
|
4 |
+
"eos_token_id": 1,
|
5 |
+
"pad_token_id": 3,
|
6 |
+
"transformers_version": "4.31.0.dev0"
|
7 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9e6b5d346f2d5846ba4e4e8fb49cca7423464eeb1b1c27fedb5699f0ede8edf9
|
3 |
+
size 204392993
|
special_tokens_map.json
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bos_token": "<s>",
|
3 |
+
"eos_token": "</s>",
|
4 |
+
"mask_token": "<mask>",
|
5 |
+
"pad_token": "<pad>",
|
6 |
+
"unk_token": "<unk>"
|
7 |
+
}
|
tokenizer.json
ADDED
@@ -0,0 +1,1122 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"version": "1.0",
|
3 |
+
"truncation": null,
|
4 |
+
"padding": null,
|
5 |
+
"added_tokens": [
|
6 |
+
{
|
7 |
+
"id": 0,
|
8 |
+
"content": "<s>",
|
9 |
+
"single_word": false,
|
10 |
+
"lstrip": false,
|
11 |
+
"rstrip": false,
|
12 |
+
"normalized": false,
|
13 |
+
"special": true
|
14 |
+
},
|
15 |
+
{
|
16 |
+
"id": 1,
|
17 |
+
"content": "</s>",
|
18 |
+
"single_word": false,
|
19 |
+
"lstrip": false,
|
20 |
+
"rstrip": false,
|
21 |
+
"normalized": false,
|
22 |
+
"special": true
|
23 |
+
},
|
24 |
+
{
|
25 |
+
"id": 2,
|
26 |
+
"content": "<unk>",
|
27 |
+
"single_word": false,
|
28 |
+
"lstrip": false,
|
29 |
+
"rstrip": false,
|
30 |
+
"normalized": false,
|
31 |
+
"special": true
|
32 |
+
},
|
33 |
+
{
|
34 |
+
"id": 3,
|
35 |
+
"content": "<pad>",
|
36 |
+
"single_word": false,
|
37 |
+
"lstrip": false,
|
38 |
+
"rstrip": false,
|
39 |
+
"normalized": false,
|
40 |
+
"special": true
|
41 |
+
},
|
42 |
+
{
|
43 |
+
"id": 4,
|
44 |
+
"content": "<mask>",
|
45 |
+
"single_word": false,
|
46 |
+
"lstrip": false,
|
47 |
+
"rstrip": false,
|
48 |
+
"normalized": false,
|
49 |
+
"special": true
|
50 |
+
}
|
51 |
+
],
|
52 |
+
"normalizer": {
|
53 |
+
"type": "Sequence",
|
54 |
+
"normalizers": [
|
55 |
+
{
|
56 |
+
"type": "Replace",
|
57 |
+
"pattern": {
|
58 |
+
"String": "``"
|
59 |
+
},
|
60 |
+
"content": "\""
|
61 |
+
},
|
62 |
+
{
|
63 |
+
"type": "Replace",
|
64 |
+
"pattern": {
|
65 |
+
"String": "''"
|
66 |
+
},
|
67 |
+
"content": "\""
|
68 |
+
},
|
69 |
+
{
|
70 |
+
"type": "Lowercase"
|
71 |
+
}
|
72 |
+
]
|
73 |
+
},
|
74 |
+
"pre_tokenizer": {
|
75 |
+
"type": "ByteLevel",
|
76 |
+
"add_prefix_space": false,
|
77 |
+
"trim_offsets": true,
|
78 |
+
"use_regex": true
|
79 |
+
},
|
80 |
+
"post_processor": {
|
81 |
+
"type": "TemplateProcessing",
|
82 |
+
"single": [
|
83 |
+
{
|
84 |
+
"SpecialToken": {
|
85 |
+
"id": "<s>",
|
86 |
+
"type_id": 0
|
87 |
+
}
|
88 |
+
},
|
89 |
+
{
|
90 |
+
"Sequence": {
|
91 |
+
"id": "A",
|
92 |
+
"type_id": 0
|
93 |
+
}
|
94 |
+
},
|
95 |
+
{
|
96 |
+
"SpecialToken": {
|
97 |
+
"id": "</s>",
|
98 |
+
"type_id": 0
|
99 |
+
}
|
100 |
+
}
|
101 |
+
],
|
102 |
+
"pair": [
|
103 |
+
{
|
104 |
+
"SpecialToken": {
|
105 |
+
"id": "<s>",
|
106 |
+
"type_id": 0
|
107 |
+
}
|
108 |
+
},
|
109 |
+
{
|
110 |
+
"Sequence": {
|
111 |
+
"id": "A",
|
112 |
+
"type_id": 0
|
113 |
+
}
|
114 |
+
},
|
115 |
+
{
|
116 |
+
"SpecialToken": {
|
117 |
+
"id": "</s>",
|
118 |
+
"type_id": 0
|
119 |
+
}
|
120 |
+
},
|
121 |
+
{
|
122 |
+
"SpecialToken": {
|
123 |
+
"id": "<s>",
|
124 |
+
"type_id": 1
|
125 |
+
}
|
126 |
+
},
|
127 |
+
{
|
128 |
+
"Sequence": {
|
129 |
+
"id": "B",
|
130 |
+
"type_id": 1
|
131 |
+
}
|
132 |
+
},
|
133 |
+
{
|
134 |
+
"SpecialToken": {
|
135 |
+
"id": "</s>",
|
136 |
+
"type_id": 1
|
137 |
+
}
|
138 |
+
}
|
139 |
+
],
|
140 |
+
"special_tokens": {
|
141 |
+
"</s>": {
|
142 |
+
"id": "</s>",
|
143 |
+
"ids": [
|
144 |
+
1
|
145 |
+
],
|
146 |
+
"tokens": [
|
147 |
+
"</s>"
|
148 |
+
]
|
149 |
+
},
|
150 |
+
"<s>": {
|
151 |
+
"id": "<s>",
|
152 |
+
"ids": [
|
153 |
+
0
|
154 |
+
],
|
155 |
+
"tokens": [
|
156 |
+
"<s>"
|
157 |
+
]
|
158 |
+
}
|
159 |
+
}
|
160 |
+
},
|
161 |
+
"decoder": {
|
162 |
+
"type": "ByteLevel",
|
163 |
+
"add_prefix_space": true,
|
164 |
+
"trim_offsets": true,
|
165 |
+
"use_regex": true
|
166 |
+
},
|
167 |
+
"model": {
|
168 |
+
"type": "BPE",
|
169 |
+
"dropout": null,
|
170 |
+
"unk_token": null,
|
171 |
+
"continuing_subword_prefix": null,
|
172 |
+
"end_of_word_suffix": null,
|
173 |
+
"fuse_unk": false,
|
174 |
+
"byte_fallback": false,
|
175 |
+
"vocab": {
|
176 |
+
"<s>": 0,
|
177 |
+
"</s>": 1,
|
178 |
+
"<unk>": 2,
|
179 |
+
"<pad>": 3,
|
180 |
+
"<mask>": 4,
|
181 |
+
"#": 5,
|
182 |
+
"$": 6,
|
183 |
+
"%": 7,
|
184 |
+
"&": 8,
|
185 |
+
"'": 9,
|
186 |
+
"*": 10,
|
187 |
+
"+": 11,
|
188 |
+
"0": 12,
|
189 |
+
"1": 13,
|
190 |
+
"2": 14,
|
191 |
+
"3": 15,
|
192 |
+
"4": 16,
|
193 |
+
"5": 17,
|
194 |
+
"6": 18,
|
195 |
+
"7": 19,
|
196 |
+
"8": 20,
|
197 |
+
"9": 21,
|
198 |
+
"<": 22,
|
199 |
+
"=": 23,
|
200 |
+
">": 24,
|
201 |
+
"@": 25,
|
202 |
+
"[": 26,
|
203 |
+
"\\": 27,
|
204 |
+
"]": 28,
|
205 |
+
"^": 29,
|
206 |
+
"a": 30,
|
207 |
+
"b": 31,
|
208 |
+
"c": 32,
|
209 |
+
"d": 33,
|
210 |
+
"e": 34,
|
211 |
+
"f": 35,
|
212 |
+
"g": 36,
|
213 |
+
"h": 37,
|
214 |
+
"i": 38,
|
215 |
+
"j": 39,
|
216 |
+
"k": 40,
|
217 |
+
"l": 41,
|
218 |
+
"m": 42,
|
219 |
+
"n": 43,
|
220 |
+
"o": 44,
|
221 |
+
"p": 45,
|
222 |
+
"q": 46,
|
223 |
+
"r": 47,
|
224 |
+
"s": 48,
|
225 |
+
"t": 49,
|
226 |
+
"u": 50,
|
227 |
+
"v": 51,
|
228 |
+
"w": 52,
|
229 |
+
"x": 53,
|
230 |
+
"y": 54,
|
231 |
+
"z": 55,
|
232 |
+
"Ċ": 56,
|
233 |
+
"Ġ": 57,
|
234 |
+
"Ġt": 58,
|
235 |
+
"Ġa": 59,
|
236 |
+
"he": 60,
|
237 |
+
"in": 61,
|
238 |
+
"re": 62,
|
239 |
+
"Ġs": 63,
|
240 |
+
"Ġthe": 64,
|
241 |
+
"Ġo": 65,
|
242 |
+
"Ġw": 66,
|
243 |
+
"er": 67,
|
244 |
+
"nd": 68,
|
245 |
+
"Ġc": 69,
|
246 |
+
"at": 70,
|
247 |
+
"Ġb": 71,
|
248 |
+
"it": 72,
|
249 |
+
"ou": 73,
|
250 |
+
"Ġf": 74,
|
251 |
+
"on": 75,
|
252 |
+
"Ġm": 76,
|
253 |
+
"en": 77,
|
254 |
+
"Ġp": 78,
|
255 |
+
"is": 79,
|
256 |
+
"ing": 80,
|
257 |
+
"Ġto": 81,
|
258 |
+
"es": 82,
|
259 |
+
"Ġth": 83,
|
260 |
+
"Ġh": 84,
|
261 |
+
"or": 85,
|
262 |
+
"an": 86,
|
263 |
+
"Ġd": 87,
|
264 |
+
"ed": 88,
|
265 |
+
"Ġof": 89,
|
266 |
+
"Ġand": 90,
|
267 |
+
"Ġin": 91,
|
268 |
+
"al": 92,
|
269 |
+
"ar": 93,
|
270 |
+
"Ġl": 94,
|
271 |
+
"as": 95,
|
272 |
+
"Ġn": 96,
|
273 |
+
"om": 97,
|
274 |
+
"ic": 98,
|
275 |
+
"Ġg": 99,
|
276 |
+
"Ġe": 100,
|
277 |
+
"le": 101,
|
278 |
+
"ve": 102,
|
279 |
+
"Ġbe": 103,
|
280 |
+
"ll": 104,
|
281 |
+
"ion": 105,
|
282 |
+
"ly": 106,
|
283 |
+
"ent": 107,
|
284 |
+
"ot": 108,
|
285 |
+
"ut": 109,
|
286 |
+
"us": 110,
|
287 |
+
"Ġre": 111,
|
288 |
+
"Ġi": 112,
|
289 |
+
"Ġon": 113,
|
290 |
+
"Ġthat": 114,
|
291 |
+
"Ġis": 115,
|
292 |
+
"Ġy": 116,
|
293 |
+
"ow": 117,
|
294 |
+
"et": 118,
|
295 |
+
"id": 119,
|
296 |
+
"Ġit": 120,
|
297 |
+
"ac": 121,
|
298 |
+
"ay": 122,
|
299 |
+
"Ġha": 123,
|
300 |
+
"ld": 124,
|
301 |
+
"the": 125,
|
302 |
+
"Ġhe": 126,
|
303 |
+
"Ġwe": 127,
|
304 |
+
"ro": 128,
|
305 |
+
"ver": 129,
|
306 |
+
"Ġst": 130,
|
307 |
+
"ig": 131,
|
308 |
+
"Ġyou": 132,
|
309 |
+
"st": 133,
|
310 |
+
"Ġfor": 134,
|
311 |
+
"Ġwh": 135,
|
312 |
+
"ir": 136,
|
313 |
+
"se": 137,
|
314 |
+
"ur": 138,
|
315 |
+
"im": 139,
|
316 |
+
"ct": 140,
|
317 |
+
"am": 141,
|
318 |
+
"ith": 142,
|
319 |
+
"and": 143,
|
320 |
+
"ke": 144,
|
321 |
+
"ad": 145,
|
322 |
+
"un": 146,
|
323 |
+
"Ġan": 147,
|
324 |
+
"'s": 148,
|
325 |
+
"Ġare": 149,
|
326 |
+
"Ġwith": 150,
|
327 |
+
"Ġas": 151,
|
328 |
+
"Ġr": 152,
|
329 |
+
"Ġwas": 153,
|
330 |
+
"ch": 154,
|
331 |
+
"Ġse": 155,
|
332 |
+
"th": 156,
|
333 |
+
"oo": 157,
|
334 |
+
"ce": 158,
|
335 |
+
"if": 159,
|
336 |
+
"Ġmo": 160,
|
337 |
+
"ht": 161,
|
338 |
+
"op": 162,
|
339 |
+
"ill": 163,
|
340 |
+
"Ġhave": 164,
|
341 |
+
"ation": 165,
|
342 |
+
"ers": 166,
|
343 |
+
"Ġne": 167,
|
344 |
+
"il": 168,
|
345 |
+
"ol": 169,
|
346 |
+
"Ġnot": 170,
|
347 |
+
"Ġde": 171,
|
348 |
+
"Ġcom": 172,
|
349 |
+
"Ġfr": 173,
|
350 |
+
"ter": 174,
|
351 |
+
"red": 175,
|
352 |
+
"ul": 176,
|
353 |
+
"Ġdo": 177,
|
354 |
+
"Ġch": 178,
|
355 |
+
"ge": 179,
|
356 |
+
"ive": 180,
|
357 |
+
"ould": 181,
|
358 |
+
"ight": 182,
|
359 |
+
"Ġone": 183,
|
360 |
+
"Ġj": 184,
|
361 |
+
"Ġat": 185,
|
362 |
+
"Ġor": 186,
|
363 |
+
"Ġcon": 187,
|
364 |
+
"Ġthey": 188,
|
365 |
+
"Ġsa": 189,
|
366 |
+
"Ġk": 190,
|
367 |
+
"ant": 191,
|
368 |
+
"ess": 192,
|
369 |
+
"Ġpro": 193,
|
370 |
+
"ous": 194,
|
371 |
+
"pe": 195,
|
372 |
+
"Ġcan": 196,
|
373 |
+
"Ġex": 197,
|
374 |
+
"Ġab": 198,
|
375 |
+
"Ġthis": 199,
|
376 |
+
"ain": 200,
|
377 |
+
"Ġu": 201,
|
378 |
+
"Ġsh": 202,
|
379 |
+
"Ġwor": 203,
|
380 |
+
"est": 204,
|
381 |
+
"ate": 205,
|
382 |
+
"Ġtr": 206,
|
383 |
+
"Ġv": 207,
|
384 |
+
"out": 208,
|
385 |
+
"ist": 209,
|
386 |
+
"ab": 210,
|
387 |
+
"ust": 211,
|
388 |
+
"ome": 212,
|
389 |
+
"Ġsu": 213,
|
390 |
+
"Ġme": 214,
|
391 |
+
"Ġtw": 215,
|
392 |
+
"ally": 216,
|
393 |
+
"Ġso": 217,
|
394 |
+
"Ġal": 218,
|
395 |
+
"ies": 219,
|
396 |
+
"pp": 220,
|
397 |
+
"her": 221,
|
398 |
+
"Ġgo": 222,
|
399 |
+
"Ġbut": 223,
|
400 |
+
"Ġli": 224,
|
401 |
+
"Ġwhe": 225,
|
402 |
+
"Ġfrom": 226,
|
403 |
+
"ity": 227,
|
404 |
+
"Ġsaid": 228,
|
405 |
+
"qu": 229,
|
406 |
+
"um": 230,
|
407 |
+
"our": 231,
|
408 |
+
"art": 232,
|
409 |
+
"'t": 233,
|
410 |
+
"Ġus": 234,
|
411 |
+
"res": 235,
|
412 |
+
"very": 236,
|
413 |
+
"ie": 237,
|
414 |
+
"all": 238,
|
415 |
+
"Ġall": 239,
|
416 |
+
"one": 240,
|
417 |
+
"Ġpl": 241,
|
418 |
+
"ine": 242,
|
419 |
+
"os": 243,
|
420 |
+
"ear": 244,
|
421 |
+
"ort": 245,
|
422 |
+
"Ġpe": 246,
|
423 |
+
"we": 247,
|
424 |
+
"oug": 248,
|
425 |
+
"nt": 249,
|
426 |
+
"ment": 250,
|
427 |
+
"Ġabout": 251,
|
428 |
+
"ap": 252,
|
429 |
+
"Ġby": 253,
|
430 |
+
"Ġout": 254,
|
431 |
+
"king": 255,
|
432 |
+
"ople": 256,
|
433 |
+
"Ġmore": 257,
|
434 |
+
"Ġtheir": 258,
|
435 |
+
"iv": 259,
|
436 |
+
"Ġwill": 260,
|
437 |
+
"el": 261,
|
438 |
+
"ast": 262,
|
439 |
+
"Ġwho": 263,
|
440 |
+
"Ġma": 264,
|
441 |
+
"Ġte": 265,
|
442 |
+
"Ġhas": 266,
|
443 |
+
"Ġint": 267,
|
444 |
+
"Ġpeople": 268,
|
445 |
+
"ard": 269,
|
446 |
+
"Ġup": 270,
|
447 |
+
"Ġmy": 271,
|
448 |
+
"Ġle": 272,
|
449 |
+
"Ġwhat": 273,
|
450 |
+
"Ġthere": 274,
|
451 |
+
"ack": 275,
|
452 |
+
"ound": 276,
|
453 |
+
"ind": 277,
|
454 |
+
"fe": 278,
|
455 |
+
"und": 279,
|
456 |
+
"ty": 280,
|
457 |
+
"Ġtim": 281,
|
458 |
+
"Ġun": 282,
|
459 |
+
"ther": 283,
|
460 |
+
"mp": 284,
|
461 |
+
"Ġar": 285,
|
462 |
+
"Ġthem": 286,
|
463 |
+
"Ġen": 287,
|
464 |
+
"Ġlike": 288,
|
465 |
+
"Ġtwo": 289,
|
466 |
+
"but": 290,
|
467 |
+
"ci": 291,
|
468 |
+
"ven": 292,
|
469 |
+
"ure": 293,
|
470 |
+
"ood": 294,
|
471 |
+
"now": 295,
|
472 |
+
"ays": 296,
|
473 |
+
"ong": 297,
|
474 |
+
"ag": 298,
|
475 |
+
"Ġyear": 299,
|
476 |
+
"ich": 300,
|
477 |
+
"Ġhad": 301,
|
478 |
+
"so": 302,
|
479 |
+
"Ġwould": 303,
|
480 |
+
"Ġget": 304,
|
481 |
+
"ud": 305,
|
482 |
+
"Ġwere": 306,
|
483 |
+
"ough": 307,
|
484 |
+
"Ġfe": 308,
|
485 |
+
"Ġyour": 309,
|
486 |
+
"act": 310,
|
487 |
+
"Ġhis": 311,
|
488 |
+
"Ġgr": 312,
|
489 |
+
"ousand": 313,
|
490 |
+
"Ġthousand": 314,
|
491 |
+
"Ġpr": 315,
|
492 |
+
"Ġsome": 316,
|
493 |
+
"Ġbec": 317,
|
494 |
+
"are": 318,
|
495 |
+
"Ġman": 319,
|
496 |
+
"undred": 320,
|
497 |
+
"Ġour": 321,
|
498 |
+
"Ġhundred": 322,
|
499 |
+
"ame": 323,
|
500 |
+
"Ġjust": 324,
|
501 |
+
"em": 325,
|
502 |
+
"Ġcl": 326,
|
503 |
+
"ide": 327,
|
504 |
+
"ree": 328,
|
505 |
+
"Ġcomp": 329,
|
506 |
+
"Ġwhen": 330,
|
507 |
+
"ks": 331,
|
508 |
+
"Ġshe": 332,
|
509 |
+
"Ġco": 333,
|
510 |
+
"use": 334,
|
511 |
+
"Ġtime": 335,
|
512 |
+
"Ġbr": 336,
|
513 |
+
"ans": 337,
|
514 |
+
"age": 338,
|
515 |
+
"Ġthan": 339,
|
516 |
+
"ib": 340,
|
517 |
+
"Ġsp": 341,
|
518 |
+
"ace": 342,
|
519 |
+
"Ġper": 343,
|
520 |
+
"Ġno": 344,
|
521 |
+
"Ġif": 345,
|
522 |
+
"Ġwhich": 346,
|
523 |
+
"reat": 347,
|
524 |
+
"Ġother": 348,
|
525 |
+
"ions": 349,
|
526 |
+
"Ġad": 350,
|
527 |
+
"ore": 351,
|
528 |
+
"Ġbeen": 352,
|
529 |
+
"Ġlo": 353,
|
530 |
+
"Ġta": 354,
|
531 |
+
"Ġknow": 355,
|
532 |
+
"Ġam": 356,
|
533 |
+
"Ġqu": 357,
|
534 |
+
"ice": 358,
|
535 |
+
"hing": 359,
|
536 |
+
"Ġnew": 360,
|
537 |
+
"ip": 361,
|
538 |
+
"Ġpo": 362,
|
539 |
+
"ause": 363,
|
540 |
+
"ink": 364,
|
541 |
+
"per": 365,
|
542 |
+
"ry": 366,
|
543 |
+
"Ġhow": 367,
|
544 |
+
"for": 368,
|
545 |
+
"ild": 369,
|
546 |
+
"Ġher": 370,
|
547 |
+
"te": 371,
|
548 |
+
"able": 372,
|
549 |
+
"Ġany": 373,
|
550 |
+
"Ġdis": 374,
|
551 |
+
"Ġag": 375,
|
552 |
+
"og": 376,
|
553 |
+
"ose": 377,
|
554 |
+
"ings": 378,
|
555 |
+
"Ġwant": 379,
|
556 |
+
"iz": 380,
|
557 |
+
"Ġinto": 381,
|
558 |
+
"Ġro": 382,
|
559 |
+
"ite": 383,
|
560 |
+
"ult": 384,
|
561 |
+
"Ġaf": 385,
|
562 |
+
"Ġac": 386,
|
563 |
+
"Ġpart": 387,
|
564 |
+
"ical": 388,
|
565 |
+
"od": 389,
|
566 |
+
"ence": 390,
|
567 |
+
"Ġres": 391,
|
568 |
+
"Ġevery": 392,
|
569 |
+
"Ġcould": 393,
|
570 |
+
"Ġover": 394,
|
571 |
+
"ook": 395,
|
572 |
+
"Ġvery": 396,
|
573 |
+
"ount": 397,
|
574 |
+
"Ġimp": 398,
|
575 |
+
"ix": 399,
|
576 |
+
"Ġcont": 400,
|
577 |
+
"ren": 401,
|
578 |
+
"ass": 402,
|
579 |
+
"Ġdr": 403,
|
580 |
+
"pl": 404,
|
581 |
+
"Ġbecause": 405,
|
582 |
+
"Ġwork": 406,
|
583 |
+
"own": 407,
|
584 |
+
"ated": 408,
|
585 |
+
"ck": 409,
|
586 |
+
"ue": 410,
|
587 |
+
"Ġoff": 411,
|
588 |
+
"Ġthink": 412,
|
589 |
+
"Ġspe": 413,
|
590 |
+
"Ġsc": 414,
|
591 |
+
"ance": 415,
|
592 |
+
"Ġneed": 416,
|
593 |
+
"Ġyears": 417,
|
594 |
+
"ach": 418,
|
595 |
+
"Ġway": 419,
|
596 |
+
"int": 420,
|
597 |
+
"pt": 421,
|
598 |
+
"Ġnow": 422,
|
599 |
+
"vel": 423,
|
600 |
+
"Ġgoing": 424,
|
601 |
+
"nder": 425,
|
602 |
+
"Ġbl": 426,
|
603 |
+
"Ġsee": 427,
|
604 |
+
"'re": 428,
|
605 |
+
"ect": 429,
|
606 |
+
"ress": 430,
|
607 |
+
"Ġonly": 431,
|
608 |
+
"enty": 432,
|
609 |
+
"Ġworld": 433,
|
610 |
+
"Ġmake": 434,
|
611 |
+
"ang": 435,
|
612 |
+
"Ġback": 436,
|
613 |
+
"ep": 437,
|
614 |
+
"Ġdon": 438,
|
615 |
+
"uch": 439,
|
616 |
+
"ations": 440,
|
617 |
+
"Ġthree": 441,
|
618 |
+
"ire": 442,
|
619 |
+
"ia": 443,
|
620 |
+
"Ġdid": 444,
|
621 |
+
"Ġalso": 445,
|
622 |
+
"sel": 446,
|
623 |
+
"Ġcr": 447,
|
624 |
+
"Ġdif": 448,
|
625 |
+
"itt": 449,
|
626 |
+
"Ġstr": 450,
|
627 |
+
"omet": 451,
|
628 |
+
"Ġthese": 452,
|
629 |
+
"ile": 453,
|
630 |
+
"Ġbet": 454,
|
631 |
+
"Ġmost": 455,
|
632 |
+
"Ġact": 456,
|
633 |
+
"Ġfir": 457,
|
634 |
+
"ens": 458,
|
635 |
+
"other": 459,
|
636 |
+
"wh": 460,
|
637 |
+
"ign": 461,
|
638 |
+
"ents": 462,
|
639 |
+
"ves": 463,
|
640 |
+
"they": 464,
|
641 |
+
"Ġpre": 465,
|
642 |
+
"ater": 466,
|
643 |
+
"ving": 467,
|
644 |
+
"Ġwhere": 468,
|
645 |
+
"Ġfl": 469,
|
646 |
+
"Ġthr": 470,
|
647 |
+
"ife": 471,
|
648 |
+
"Ġfive": 472,
|
649 |
+
"ub": 473,
|
650 |
+
"Ġinc": 474,
|
651 |
+
"Ġmuch": 475,
|
652 |
+
"ick": 476,
|
653 |
+
"Ġgood": 477,
|
654 |
+
"ors": 478,
|
655 |
+
"ial": 479,
|
656 |
+
"Ġnine": 480,
|
657 |
+
"ber": 481,
|
658 |
+
"Ġeven": 482,
|
659 |
+
"cess": 483,
|
660 |
+
"this": 484,
|
661 |
+
"du": 485,
|
662 |
+
"Ġmar": 486,
|
663 |
+
"cent": 487,
|
664 |
+
"ug": 488,
|
665 |
+
"Ġhim": 489,
|
666 |
+
"Ġfirst": 490,
|
667 |
+
"wn": 491,
|
668 |
+
"ory": 492,
|
669 |
+
"Ġthen": 493,
|
670 |
+
"Ġsix": 494,
|
671 |
+
"Ġcomm": 495,
|
672 |
+
"ade": 496,
|
673 |
+
"Ġits": 497,
|
674 |
+
"ak": 498,
|
675 |
+
"Ġsay": 499
|
676 |
+
},
|
677 |
+
"merges": [
|
678 |
+
"Ġ t",
|
679 |
+
"Ġ a",
|
680 |
+
"h e",
|
681 |
+
"i n",
|
682 |
+
"r e",
|
683 |
+
"Ġ s",
|
684 |
+
"Ġt he",
|
685 |
+
"Ġ o",
|
686 |
+
"Ġ w",
|
687 |
+
"e r",
|
688 |
+
"n d",
|
689 |
+
"Ġ c",
|
690 |
+
"a t",
|
691 |
+
"Ġ b",
|
692 |
+
"i t",
|
693 |
+
"o u",
|
694 |
+
"Ġ f",
|
695 |
+
"o n",
|
696 |
+
"Ġ m",
|
697 |
+
"e n",
|
698 |
+
"Ġ p",
|
699 |
+
"i s",
|
700 |
+
"in g",
|
701 |
+
"Ġt o",
|
702 |
+
"e s",
|
703 |
+
"Ġt h",
|
704 |
+
"Ġ h",
|
705 |
+
"o r",
|
706 |
+
"a n",
|
707 |
+
"Ġ d",
|
708 |
+
"e d",
|
709 |
+
"Ġo f",
|
710 |
+
"Ġa nd",
|
711 |
+
"Ġ in",
|
712 |
+
"a l",
|
713 |
+
"a r",
|
714 |
+
"Ġ l",
|
715 |
+
"a s",
|
716 |
+
"Ġ n",
|
717 |
+
"o m",
|
718 |
+
"i c",
|
719 |
+
"Ġ g",
|
720 |
+
"Ġ e",
|
721 |
+
"l e",
|
722 |
+
"v e",
|
723 |
+
"Ġb e",
|
724 |
+
"l l",
|
725 |
+
"i on",
|
726 |
+
"l y",
|
727 |
+
"en t",
|
728 |
+
"o t",
|
729 |
+
"u t",
|
730 |
+
"u s",
|
731 |
+
"Ġ re",
|
732 |
+
"Ġ i",
|
733 |
+
"Ġo n",
|
734 |
+
"Ġth at",
|
735 |
+
"Ġ is",
|
736 |
+
"Ġ y",
|
737 |
+
"o w",
|
738 |
+
"e t",
|
739 |
+
"i d",
|
740 |
+
"Ġ it",
|
741 |
+
"a c",
|
742 |
+
"a y",
|
743 |
+
"Ġh a",
|
744 |
+
"l d",
|
745 |
+
"t he",
|
746 |
+
"Ġ he",
|
747 |
+
"Ġw e",
|
748 |
+
"r o",
|
749 |
+
"v er",
|
750 |
+
"Ġs t",
|
751 |
+
"i g",
|
752 |
+
"Ġy ou",
|
753 |
+
"s t",
|
754 |
+
"Ġf or",
|
755 |
+
"Ġw h",
|
756 |
+
"i r",
|
757 |
+
"s e",
|
758 |
+
"u r",
|
759 |
+
"i m",
|
760 |
+
"c t",
|
761 |
+
"a m",
|
762 |
+
"it h",
|
763 |
+
"a nd",
|
764 |
+
"k e",
|
765 |
+
"a d",
|
766 |
+
"u n",
|
767 |
+
"Ġa n",
|
768 |
+
"' s",
|
769 |
+
"Ġa re",
|
770 |
+
"Ġw ith",
|
771 |
+
"Ġa s",
|
772 |
+
"Ġ r",
|
773 |
+
"Ġw as",
|
774 |
+
"c h",
|
775 |
+
"Ġs e",
|
776 |
+
"t h",
|
777 |
+
"o o",
|
778 |
+
"c e",
|
779 |
+
"i f",
|
780 |
+
"Ġm o",
|
781 |
+
"h t",
|
782 |
+
"o p",
|
783 |
+
"i ll",
|
784 |
+
"Ġha ve",
|
785 |
+
"at ion",
|
786 |
+
"er s",
|
787 |
+
"Ġn e",
|
788 |
+
"i l",
|
789 |
+
"o l",
|
790 |
+
"Ġn ot",
|
791 |
+
"Ġd e",
|
792 |
+
"Ġc om",
|
793 |
+
"Ġf r",
|
794 |
+
"t er",
|
795 |
+
"re d",
|
796 |
+
"u l",
|
797 |
+
"Ġd o",
|
798 |
+
"Ġc h",
|
799 |
+
"g e",
|
800 |
+
"i ve",
|
801 |
+
"ou ld",
|
802 |
+
"ig ht",
|
803 |
+
"Ġon e",
|
804 |
+
"Ġ j",
|
805 |
+
"Ġa t",
|
806 |
+
"Ġo r",
|
807 |
+
"Ġc on",
|
808 |
+
"Ġthe y",
|
809 |
+
"Ġs a",
|
810 |
+
"Ġ k",
|
811 |
+
"an t",
|
812 |
+
"es s",
|
813 |
+
"Ġp ro",
|
814 |
+
"ou s",
|
815 |
+
"p e",
|
816 |
+
"Ġc an",
|
817 |
+
"Ġe x",
|
818 |
+
"Ġa b",
|
819 |
+
"Ġth is",
|
820 |
+
"a in",
|
821 |
+
"Ġ u",
|
822 |
+
"Ġs h",
|
823 |
+
"Ġw or",
|
824 |
+
"es t",
|
825 |
+
"at e",
|
826 |
+
"Ġt r",
|
827 |
+
"Ġ v",
|
828 |
+
"ou t",
|
829 |
+
"is t",
|
830 |
+
"a b",
|
831 |
+
"us t",
|
832 |
+
"om e",
|
833 |
+
"Ġs u",
|
834 |
+
"Ġm e",
|
835 |
+
"Ġt w",
|
836 |
+
"al ly",
|
837 |
+
"Ġs o",
|
838 |
+
"Ġa l",
|
839 |
+
"i es",
|
840 |
+
"p p",
|
841 |
+
"he r",
|
842 |
+
"Ġg o",
|
843 |
+
"Ġb ut",
|
844 |
+
"Ġl i",
|
845 |
+
"Ġw he",
|
846 |
+
"Ġfr om",
|
847 |
+
"it y",
|
848 |
+
"Ġsa id",
|
849 |
+
"q u",
|
850 |
+
"u m",
|
851 |
+
"ou r",
|
852 |
+
"ar t",
|
853 |
+
"' t",
|
854 |
+
"Ġ us",
|
855 |
+
"re s",
|
856 |
+
"ver y",
|
857 |
+
"i e",
|
858 |
+
"al l",
|
859 |
+
"Ġa ll",
|
860 |
+
"on e",
|
861 |
+
"Ġp l",
|
862 |
+
"in e",
|
863 |
+
"o s",
|
864 |
+
"e ar",
|
865 |
+
"or t",
|
866 |
+
"Ġp e",
|
867 |
+
"w e",
|
868 |
+
"ou g",
|
869 |
+
"n t",
|
870 |
+
"m ent",
|
871 |
+
"Ġab out",
|
872 |
+
"a p",
|
873 |
+
"Ġb y",
|
874 |
+
"Ġo ut",
|
875 |
+
"k ing",
|
876 |
+
"op le",
|
877 |
+
"Ġmo re",
|
878 |
+
"Ġthe ir",
|
879 |
+
"i v",
|
880 |
+
"Ġw ill",
|
881 |
+
"e l",
|
882 |
+
"as t",
|
883 |
+
"Ġwh o",
|
884 |
+
"Ġm a",
|
885 |
+
"Ġt e",
|
886 |
+
"Ġh as",
|
887 |
+
"Ġin t",
|
888 |
+
"Ġpe ople",
|
889 |
+
"ar d",
|
890 |
+
"Ġu p",
|
891 |
+
"Ġm y",
|
892 |
+
"Ġl e",
|
893 |
+
"Ġwh at",
|
894 |
+
"Ġthe re",
|
895 |
+
"ac k",
|
896 |
+
"ou nd",
|
897 |
+
"in d",
|
898 |
+
"f e",
|
899 |
+
"u nd",
|
900 |
+
"t y",
|
901 |
+
"Ġt im",
|
902 |
+
"Ġ un",
|
903 |
+
"the r",
|
904 |
+
"m p",
|
905 |
+
"Ġa r",
|
906 |
+
"Ġthe m",
|
907 |
+
"Ġ en",
|
908 |
+
"Ġli ke",
|
909 |
+
"Ġtw o",
|
910 |
+
"b ut",
|
911 |
+
"c i",
|
912 |
+
"v en",
|
913 |
+
"u re",
|
914 |
+
"oo d",
|
915 |
+
"n ow",
|
916 |
+
"ay s",
|
917 |
+
"on g",
|
918 |
+
"a g",
|
919 |
+
"Ġy ear",
|
920 |
+
"ic h",
|
921 |
+
"Ġha d",
|
922 |
+
"s o",
|
923 |
+
"Ġw ould",
|
924 |
+
"Ġg et",
|
925 |
+
"u d",
|
926 |
+
"Ġwe re",
|
927 |
+
"oug h",
|
928 |
+
"Ġf e",
|
929 |
+
"Ġyou r",
|
930 |
+
"ac t",
|
931 |
+
"Ġh is",
|
932 |
+
"Ġg r",
|
933 |
+
"ous and",
|
934 |
+
"Ġth ousand",
|
935 |
+
"Ġp r",
|
936 |
+
"Ġs ome",
|
937 |
+
"Ġbe c",
|
938 |
+
"a re",
|
939 |
+
"Ġm an",
|
940 |
+
"und red",
|
941 |
+
"Ġo ur",
|
942 |
+
"Ġh undred",
|
943 |
+
"am e",
|
944 |
+
"Ġj ust",
|
945 |
+
"e m",
|
946 |
+
"Ġc l",
|
947 |
+
"id e",
|
948 |
+
"re e",
|
949 |
+
"Ġcom p",
|
950 |
+
"Ġwhe n",
|
951 |
+
"k s",
|
952 |
+
"Ġs he",
|
953 |
+
"Ġc o",
|
954 |
+
"us e",
|
955 |
+
"Ġtim e",
|
956 |
+
"Ġb r",
|
957 |
+
"an s",
|
958 |
+
"a ge",
|
959 |
+
"Ġth an",
|
960 |
+
"i b",
|
961 |
+
"Ġs p",
|
962 |
+
"ac e",
|
963 |
+
"Ġp er",
|
964 |
+
"Ġn o",
|
965 |
+
"Ġi f",
|
966 |
+
"Ġwh ich",
|
967 |
+
"re at",
|
968 |
+
"Ġo ther",
|
969 |
+
"ion s",
|
970 |
+
"Ġa d",
|
971 |
+
"o re",
|
972 |
+
"Ġbe en",
|
973 |
+
"Ġl o",
|
974 |
+
"Ġt a",
|
975 |
+
"Ġk now",
|
976 |
+
"Ġa m",
|
977 |
+
"Ġ qu",
|
978 |
+
"ic e",
|
979 |
+
"h ing",
|
980 |
+
"Ġne w",
|
981 |
+
"i p",
|
982 |
+
"Ġp o",
|
983 |
+
"a use",
|
984 |
+
"in k",
|
985 |
+
"p er",
|
986 |
+
"r y",
|
987 |
+
"Ġh ow",
|
988 |
+
"f or",
|
989 |
+
"i ld",
|
990 |
+
"Ġhe r",
|
991 |
+
"t e",
|
992 |
+
"ab le",
|
993 |
+
"Ġan y",
|
994 |
+
"Ġd is",
|
995 |
+
"Ġa g",
|
996 |
+
"o g",
|
997 |
+
"o se",
|
998 |
+
"ing s",
|
999 |
+
"Ġw ant",
|
1000 |
+
"i z",
|
1001 |
+
"Ġint o",
|
1002 |
+
"Ġ ro",
|
1003 |
+
"it e",
|
1004 |
+
"ul t",
|
1005 |
+
"Ġa f",
|
1006 |
+
"Ġa c",
|
1007 |
+
"Ġp art",
|
1008 |
+
"ic al",
|
1009 |
+
"o d",
|
1010 |
+
"en ce",
|
1011 |
+
"Ġre s",
|
1012 |
+
"Ġe very",
|
1013 |
+
"Ġc ould",
|
1014 |
+
"Ġo ver",
|
1015 |
+
"oo k",
|
1016 |
+
"Ġ very",
|
1017 |
+
"ou nt",
|
1018 |
+
"Ġi mp",
|
1019 |
+
"i x",
|
1020 |
+
"Ġcon t",
|
1021 |
+
"re n",
|
1022 |
+
"as s",
|
1023 |
+
"Ġd r",
|
1024 |
+
"p l",
|
1025 |
+
"Ġbec ause",
|
1026 |
+
"Ġwor k",
|
1027 |
+
"ow n",
|
1028 |
+
"at ed",
|
1029 |
+
"c k",
|
1030 |
+
"u e",
|
1031 |
+
"Ġof f",
|
1032 |
+
"Ġth ink",
|
1033 |
+
"Ġs pe",
|
1034 |
+
"Ġs c",
|
1035 |
+
"an ce",
|
1036 |
+
"Ġne ed",
|
1037 |
+
"Ġyear s",
|
1038 |
+
"ac h",
|
1039 |
+
"Ġw ay",
|
1040 |
+
"in t",
|
1041 |
+
"p t",
|
1042 |
+
"Ġn ow",
|
1043 |
+
"ve l",
|
1044 |
+
"Ġgo ing",
|
1045 |
+
"nd er",
|
1046 |
+
"Ġb l",
|
1047 |
+
"Ġse e",
|
1048 |
+
"' re",
|
1049 |
+
"e ct",
|
1050 |
+
"res s",
|
1051 |
+
"Ġon ly",
|
1052 |
+
"ent y",
|
1053 |
+
"Ġwor ld",
|
1054 |
+
"Ġma ke",
|
1055 |
+
"an g",
|
1056 |
+
"Ġb ack",
|
1057 |
+
"e p",
|
1058 |
+
"Ġd on",
|
1059 |
+
"u ch",
|
1060 |
+
"ation s",
|
1061 |
+
"Ġth ree",
|
1062 |
+
"i re",
|
1063 |
+
"i a",
|
1064 |
+
"Ġd id",
|
1065 |
+
"Ġal so",
|
1066 |
+
"se l",
|
1067 |
+
"Ġc r",
|
1068 |
+
"Ġd if",
|
1069 |
+
"it t",
|
1070 |
+
"Ġst r",
|
1071 |
+
"om et",
|
1072 |
+
"Ġthe se",
|
1073 |
+
"i le",
|
1074 |
+
"Ġbe t",
|
1075 |
+
"Ġmo st",
|
1076 |
+
"Ġa ct",
|
1077 |
+
"Ġf ir",
|
1078 |
+
"en s",
|
1079 |
+
"ot her",
|
1080 |
+
"w h",
|
1081 |
+
"ig n",
|
1082 |
+
"ent s",
|
1083 |
+
"v es",
|
1084 |
+
"the y",
|
1085 |
+
"Ġp re",
|
1086 |
+
"at er",
|
1087 |
+
"v ing",
|
1088 |
+
"Ġwhe re",
|
1089 |
+
"Ġf l",
|
1090 |
+
"Ġth r",
|
1091 |
+
"if e",
|
1092 |
+
"Ġf ive",
|
1093 |
+
"u b",
|
1094 |
+
"Ġin c",
|
1095 |
+
"Ġm uch",
|
1096 |
+
"ic k",
|
1097 |
+
"Ġg ood",
|
1098 |
+
"or s",
|
1099 |
+
"i al",
|
1100 |
+
"Ġn ine",
|
1101 |
+
"b er",
|
1102 |
+
"Ġe ven",
|
1103 |
+
"c ess",
|
1104 |
+
"th is",
|
1105 |
+
"d u",
|
1106 |
+
"Ġm ar",
|
1107 |
+
"c ent",
|
1108 |
+
"u g",
|
1109 |
+
"Ġh im",
|
1110 |
+
"Ġfir st",
|
1111 |
+
"w n",
|
1112 |
+
"or y",
|
1113 |
+
"Ġthe n",
|
1114 |
+
"Ġs ix",
|
1115 |
+
"Ġcom m",
|
1116 |
+
"ad e",
|
1117 |
+
"Ġit s",
|
1118 |
+
"a k",
|
1119 |
+
"Ġs ay"
|
1120 |
+
]
|
1121 |
+
}
|
1122 |
+
}
|
tokenizer_config.json
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bos_token": "<s>",
|
3 |
+
"clean_up_tokenization_spaces": true,
|
4 |
+
"eos_token": "</s>",
|
5 |
+
"mask_token": "<mask>",
|
6 |
+
"model_max_length": 1000000000000000019884624838656,
|
7 |
+
"pad_token": "<pad>",
|
8 |
+
"tokenizer_class": "PreTrainedTokenizerFast",
|
9 |
+
"unk_token": "<unk>"
|
10 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:01807756249285683b70e9732fbdd56686c51339cb403e603a676152faa671ab
|
3 |
+
size 4539
|