Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- .ipynb_checkpoints/Untitled-checkpoint.ipynb +6 -0
- Untitled.ipynb +33 -0
- config.json +30 -0
- generation_config.json +9 -0
- model-00001-of-00004.safetensors +3 -0
- model-00002-of-00004.safetensors +3 -0
- model-00003-of-00004.safetensors +3 -0
- model-00004-of-00004.safetensors +3 -0
- model.safetensors.index.json +298 -0
- optimizer.pt +3 -0
- rng_state.pth +3 -0
- scheduler.pt +3 -0
- special_tokens_map.json +23 -0
- tokenizer.json +3 -0
- tokenizer_config.json +2062 -0
- trainer_state.json +1785 -0
- training_args.bin +3 -0
.gitattributes
CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
.ipynb_checkpoints/Untitled-checkpoint.ipynb
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"cells": [],
|
3 |
+
"metadata": {},
|
4 |
+
"nbformat": 4,
|
5 |
+
"nbformat_minor": 5
|
6 |
+
}
|
Untitled.ipynb
ADDED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"cells": [
|
3 |
+
{
|
4 |
+
"cell_type": "code",
|
5 |
+
"execution_count": null,
|
6 |
+
"id": "96daac70-9a25-4835-b7a3-fc7e77fea729",
|
7 |
+
"metadata": {},
|
8 |
+
"outputs": [],
|
9 |
+
"source": []
|
10 |
+
}
|
11 |
+
],
|
12 |
+
"metadata": {
|
13 |
+
"kernelspec": {
|
14 |
+
"display_name": "Python 3 (ipykernel)",
|
15 |
+
"language": "python",
|
16 |
+
"name": "python3"
|
17 |
+
},
|
18 |
+
"language_info": {
|
19 |
+
"codemirror_mode": {
|
20 |
+
"name": "ipython",
|
21 |
+
"version": 3
|
22 |
+
},
|
23 |
+
"file_extension": ".py",
|
24 |
+
"mimetype": "text/x-python",
|
25 |
+
"name": "python",
|
26 |
+
"nbconvert_exporter": "python",
|
27 |
+
"pygments_lexer": "ipython3",
|
28 |
+
"version": "3.11.10"
|
29 |
+
}
|
30 |
+
},
|
31 |
+
"nbformat": 4,
|
32 |
+
"nbformat_minor": 5
|
33 |
+
}
|
config.json
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "meta-llama/Meta-Llama-3-8B",
|
3 |
+
"architectures": [
|
4 |
+
"LlamaForCausalLM"
|
5 |
+
],
|
6 |
+
"attention_bias": false,
|
7 |
+
"attention_dropout": 0.0,
|
8 |
+
"bos_token_id": 128000,
|
9 |
+
"eos_token_id": 128001,
|
10 |
+
"head_dim": 128,
|
11 |
+
"hidden_act": "silu",
|
12 |
+
"hidden_size": 4096,
|
13 |
+
"initializer_range": 0.02,
|
14 |
+
"intermediate_size": 14336,
|
15 |
+
"max_position_embeddings": 8192,
|
16 |
+
"mlp_bias": false,
|
17 |
+
"model_type": "llama",
|
18 |
+
"num_attention_heads": 32,
|
19 |
+
"num_hidden_layers": 32,
|
20 |
+
"num_key_value_heads": 8,
|
21 |
+
"pretraining_tp": 1,
|
22 |
+
"rms_norm_eps": 1e-05,
|
23 |
+
"rope_scaling": null,
|
24 |
+
"rope_theta": 500000.0,
|
25 |
+
"tie_word_embeddings": false,
|
26 |
+
"torch_dtype": "bfloat16",
|
27 |
+
"transformers_version": "4.45.1",
|
28 |
+
"use_cache": false,
|
29 |
+
"vocab_size": 128256
|
30 |
+
}
|
generation_config.json
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bos_token_id": 128000,
|
3 |
+
"do_sample": true,
|
4 |
+
"eos_token_id": 128001,
|
5 |
+
"max_length": 4096,
|
6 |
+
"temperature": 0.6,
|
7 |
+
"top_p": 0.9,
|
8 |
+
"transformers_version": "4.45.1"
|
9 |
+
}
|
model-00001-of-00004.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1c89cd671c48a03214d1f637ce9d305b739be28f4a50494196a84e4097ec0de4
|
3 |
+
size 4976698672
|
model-00002-of-00004.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:75d64933a47f967500510ea74561b613492ecab48db77ddff2c4516bd7801cc4
|
3 |
+
size 4999802720
|
model-00003-of-00004.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:57450ec804d36c755c0b5f07105b47fdeb4e54ba1af0b7643d0b756455311500
|
3 |
+
size 4915916176
|
model-00004-of-00004.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:94a9b886ce223db75be1d22f51dde36268c52b2e704afc53ec4bb44396bbb625
|
3 |
+
size 1168138808
|
model.safetensors.index.json
ADDED
@@ -0,0 +1,298 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"metadata": {
|
3 |
+
"total_size": 16060522496
|
4 |
+
},
|
5 |
+
"weight_map": {
|
6 |
+
"lm_head.weight": "model-00004-of-00004.safetensors",
|
7 |
+
"model.embed_tokens.weight": "model-00001-of-00004.safetensors",
|
8 |
+
"model.layers.0.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
9 |
+
"model.layers.0.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
10 |
+
"model.layers.0.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
11 |
+
"model.layers.0.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
12 |
+
"model.layers.0.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
13 |
+
"model.layers.0.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
14 |
+
"model.layers.0.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
15 |
+
"model.layers.0.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
16 |
+
"model.layers.0.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
17 |
+
"model.layers.1.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
18 |
+
"model.layers.1.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
19 |
+
"model.layers.1.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
20 |
+
"model.layers.1.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
21 |
+
"model.layers.1.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
22 |
+
"model.layers.1.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
23 |
+
"model.layers.1.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
24 |
+
"model.layers.1.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
25 |
+
"model.layers.1.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
26 |
+
"model.layers.10.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
27 |
+
"model.layers.10.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
28 |
+
"model.layers.10.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
29 |
+
"model.layers.10.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
30 |
+
"model.layers.10.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
31 |
+
"model.layers.10.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
32 |
+
"model.layers.10.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
33 |
+
"model.layers.10.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
34 |
+
"model.layers.10.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
35 |
+
"model.layers.11.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
36 |
+
"model.layers.11.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
37 |
+
"model.layers.11.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
38 |
+
"model.layers.11.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
39 |
+
"model.layers.11.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
40 |
+
"model.layers.11.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
41 |
+
"model.layers.11.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
42 |
+
"model.layers.11.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
43 |
+
"model.layers.11.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
44 |
+
"model.layers.12.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
45 |
+
"model.layers.12.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
46 |
+
"model.layers.12.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
47 |
+
"model.layers.12.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
48 |
+
"model.layers.12.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
49 |
+
"model.layers.12.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
50 |
+
"model.layers.12.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
51 |
+
"model.layers.12.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
52 |
+
"model.layers.12.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
53 |
+
"model.layers.13.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
54 |
+
"model.layers.13.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
55 |
+
"model.layers.13.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
56 |
+
"model.layers.13.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
57 |
+
"model.layers.13.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
58 |
+
"model.layers.13.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
59 |
+
"model.layers.13.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
60 |
+
"model.layers.13.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
61 |
+
"model.layers.13.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
62 |
+
"model.layers.14.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
63 |
+
"model.layers.14.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
64 |
+
"model.layers.14.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
65 |
+
"model.layers.14.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
66 |
+
"model.layers.14.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
67 |
+
"model.layers.14.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
68 |
+
"model.layers.14.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
69 |
+
"model.layers.14.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
70 |
+
"model.layers.14.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
71 |
+
"model.layers.15.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
72 |
+
"model.layers.15.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
73 |
+
"model.layers.15.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
74 |
+
"model.layers.15.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
75 |
+
"model.layers.15.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
76 |
+
"model.layers.15.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
77 |
+
"model.layers.15.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
78 |
+
"model.layers.15.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
79 |
+
"model.layers.15.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
80 |
+
"model.layers.16.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
81 |
+
"model.layers.16.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
82 |
+
"model.layers.16.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
83 |
+
"model.layers.16.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
84 |
+
"model.layers.16.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
85 |
+
"model.layers.16.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
86 |
+
"model.layers.16.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
87 |
+
"model.layers.16.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
88 |
+
"model.layers.16.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
89 |
+
"model.layers.17.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
90 |
+
"model.layers.17.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
91 |
+
"model.layers.17.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
92 |
+
"model.layers.17.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
93 |
+
"model.layers.17.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
94 |
+
"model.layers.17.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
95 |
+
"model.layers.17.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
96 |
+
"model.layers.17.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
97 |
+
"model.layers.17.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
98 |
+
"model.layers.18.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
99 |
+
"model.layers.18.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
100 |
+
"model.layers.18.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
101 |
+
"model.layers.18.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
102 |
+
"model.layers.18.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
103 |
+
"model.layers.18.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
104 |
+
"model.layers.18.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
105 |
+
"model.layers.18.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
106 |
+
"model.layers.18.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
107 |
+
"model.layers.19.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
108 |
+
"model.layers.19.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
109 |
+
"model.layers.19.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
110 |
+
"model.layers.19.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
111 |
+
"model.layers.19.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
112 |
+
"model.layers.19.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
113 |
+
"model.layers.19.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
114 |
+
"model.layers.19.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
115 |
+
"model.layers.19.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
116 |
+
"model.layers.2.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
117 |
+
"model.layers.2.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
118 |
+
"model.layers.2.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
119 |
+
"model.layers.2.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
120 |
+
"model.layers.2.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
121 |
+
"model.layers.2.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
122 |
+
"model.layers.2.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
123 |
+
"model.layers.2.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
124 |
+
"model.layers.2.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
125 |
+
"model.layers.20.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
126 |
+
"model.layers.20.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
127 |
+
"model.layers.20.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
128 |
+
"model.layers.20.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
129 |
+
"model.layers.20.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
130 |
+
"model.layers.20.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
131 |
+
"model.layers.20.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
132 |
+
"model.layers.20.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
133 |
+
"model.layers.20.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
134 |
+
"model.layers.21.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
135 |
+
"model.layers.21.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
136 |
+
"model.layers.21.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
137 |
+
"model.layers.21.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
138 |
+
"model.layers.21.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
139 |
+
"model.layers.21.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
140 |
+
"model.layers.21.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
141 |
+
"model.layers.21.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
142 |
+
"model.layers.21.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
143 |
+
"model.layers.22.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
144 |
+
"model.layers.22.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
145 |
+
"model.layers.22.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
146 |
+
"model.layers.22.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
147 |
+
"model.layers.22.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
148 |
+
"model.layers.22.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
149 |
+
"model.layers.22.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
150 |
+
"model.layers.22.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
151 |
+
"model.layers.22.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
152 |
+
"model.layers.23.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
153 |
+
"model.layers.23.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
154 |
+
"model.layers.23.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
155 |
+
"model.layers.23.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
156 |
+
"model.layers.23.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
157 |
+
"model.layers.23.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
158 |
+
"model.layers.23.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
159 |
+
"model.layers.23.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
160 |
+
"model.layers.23.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
161 |
+
"model.layers.24.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
162 |
+
"model.layers.24.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
163 |
+
"model.layers.24.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
164 |
+
"model.layers.24.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
165 |
+
"model.layers.24.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
166 |
+
"model.layers.24.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
167 |
+
"model.layers.24.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
168 |
+
"model.layers.24.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
169 |
+
"model.layers.24.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
170 |
+
"model.layers.25.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
171 |
+
"model.layers.25.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
172 |
+
"model.layers.25.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
173 |
+
"model.layers.25.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
174 |
+
"model.layers.25.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
175 |
+
"model.layers.25.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
176 |
+
"model.layers.25.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
177 |
+
"model.layers.25.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
178 |
+
"model.layers.25.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
179 |
+
"model.layers.26.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
180 |
+
"model.layers.26.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
181 |
+
"model.layers.26.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
182 |
+
"model.layers.26.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
183 |
+
"model.layers.26.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
184 |
+
"model.layers.26.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
185 |
+
"model.layers.26.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
186 |
+
"model.layers.26.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
187 |
+
"model.layers.26.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
188 |
+
"model.layers.27.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
189 |
+
"model.layers.27.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
190 |
+
"model.layers.27.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
191 |
+
"model.layers.27.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
192 |
+
"model.layers.27.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
193 |
+
"model.layers.27.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
194 |
+
"model.layers.27.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
195 |
+
"model.layers.27.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
196 |
+
"model.layers.27.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
197 |
+
"model.layers.28.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
198 |
+
"model.layers.28.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
199 |
+
"model.layers.28.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
200 |
+
"model.layers.28.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
201 |
+
"model.layers.28.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
202 |
+
"model.layers.28.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
203 |
+
"model.layers.28.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
204 |
+
"model.layers.28.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
205 |
+
"model.layers.28.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
206 |
+
"model.layers.29.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
207 |
+
"model.layers.29.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
208 |
+
"model.layers.29.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
209 |
+
"model.layers.29.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
210 |
+
"model.layers.29.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
211 |
+
"model.layers.29.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
212 |
+
"model.layers.29.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
213 |
+
"model.layers.29.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
214 |
+
"model.layers.29.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
215 |
+
"model.layers.3.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
216 |
+
"model.layers.3.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
217 |
+
"model.layers.3.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
218 |
+
"model.layers.3.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
219 |
+
"model.layers.3.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
220 |
+
"model.layers.3.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
221 |
+
"model.layers.3.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
222 |
+
"model.layers.3.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
223 |
+
"model.layers.3.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
224 |
+
"model.layers.30.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
225 |
+
"model.layers.30.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
226 |
+
"model.layers.30.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
227 |
+
"model.layers.30.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
228 |
+
"model.layers.30.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
229 |
+
"model.layers.30.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
230 |
+
"model.layers.30.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
231 |
+
"model.layers.30.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
232 |
+
"model.layers.30.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
233 |
+
"model.layers.31.input_layernorm.weight": "model-00004-of-00004.safetensors",
|
234 |
+
"model.layers.31.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
|
235 |
+
"model.layers.31.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
236 |
+
"model.layers.31.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
237 |
+
"model.layers.31.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
|
238 |
+
"model.layers.31.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
239 |
+
"model.layers.31.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
240 |
+
"model.layers.31.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
241 |
+
"model.layers.31.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
242 |
+
"model.layers.4.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
243 |
+
"model.layers.4.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
244 |
+
"model.layers.4.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
245 |
+
"model.layers.4.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
246 |
+
"model.layers.4.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
247 |
+
"model.layers.4.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
248 |
+
"model.layers.4.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
249 |
+
"model.layers.4.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
250 |
+
"model.layers.4.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
251 |
+
"model.layers.5.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
252 |
+
"model.layers.5.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
253 |
+
"model.layers.5.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
254 |
+
"model.layers.5.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
255 |
+
"model.layers.5.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
256 |
+
"model.layers.5.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
257 |
+
"model.layers.5.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
258 |
+
"model.layers.5.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
259 |
+
"model.layers.5.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
260 |
+
"model.layers.6.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
261 |
+
"model.layers.6.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
262 |
+
"model.layers.6.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
263 |
+
"model.layers.6.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
264 |
+
"model.layers.6.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
265 |
+
"model.layers.6.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
266 |
+
"model.layers.6.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
267 |
+
"model.layers.6.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
268 |
+
"model.layers.6.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
269 |
+
"model.layers.7.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
270 |
+
"model.layers.7.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
271 |
+
"model.layers.7.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
272 |
+
"model.layers.7.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
273 |
+
"model.layers.7.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
274 |
+
"model.layers.7.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
275 |
+
"model.layers.7.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
276 |
+
"model.layers.7.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
277 |
+
"model.layers.7.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
278 |
+
"model.layers.8.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
279 |
+
"model.layers.8.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
280 |
+
"model.layers.8.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
281 |
+
"model.layers.8.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
282 |
+
"model.layers.8.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
283 |
+
"model.layers.8.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
284 |
+
"model.layers.8.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
285 |
+
"model.layers.8.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
286 |
+
"model.layers.8.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
287 |
+
"model.layers.9.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
288 |
+
"model.layers.9.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
289 |
+
"model.layers.9.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
290 |
+
"model.layers.9.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
291 |
+
"model.layers.9.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
292 |
+
"model.layers.9.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
293 |
+
"model.layers.9.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
294 |
+
"model.layers.9.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
295 |
+
"model.layers.9.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
296 |
+
"model.norm.weight": "model-00004-of-00004.safetensors"
|
297 |
+
}
|
298 |
+
}
|
optimizer.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:661608458292c67de376f64d6512e99760753bf13d1a17145909a7188663430f
|
3 |
+
size 16311828180
|
rng_state.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:bdcf4c9074fee59c0f558518e07691b22ac2c7b11a1f53fb94e574bf69fe39cd
|
3 |
+
size 14244
|
scheduler.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cfc34f77da667297c0cddd9a839efccdf72eacaa710f997b090f352d16878f8c
|
3 |
+
size 1064
|
special_tokens_map.json
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bos_token": {
|
3 |
+
"content": "<|begin_of_text|>",
|
4 |
+
"lstrip": false,
|
5 |
+
"normalized": false,
|
6 |
+
"rstrip": false,
|
7 |
+
"single_word": false
|
8 |
+
},
|
9 |
+
"eos_token": {
|
10 |
+
"content": "<|end_of_text|>",
|
11 |
+
"lstrip": false,
|
12 |
+
"normalized": false,
|
13 |
+
"rstrip": false,
|
14 |
+
"single_word": false
|
15 |
+
},
|
16 |
+
"pad_token": {
|
17 |
+
"content": "<|end_of_text|>",
|
18 |
+
"lstrip": false,
|
19 |
+
"normalized": false,
|
20 |
+
"rstrip": false,
|
21 |
+
"single_word": false
|
22 |
+
}
|
23 |
+
}
|
tokenizer.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3c5cf44023714fb39b05e71e425f8d7b92805ff73f7988b083b8c87f0bf87393
|
3 |
+
size 17209961
|
tokenizer_config.json
ADDED
@@ -0,0 +1,2062 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"added_tokens_decoder": {
|
3 |
+
"128000": {
|
4 |
+
"content": "<|begin_of_text|>",
|
5 |
+
"lstrip": false,
|
6 |
+
"normalized": false,
|
7 |
+
"rstrip": false,
|
8 |
+
"single_word": false,
|
9 |
+
"special": true
|
10 |
+
},
|
11 |
+
"128001": {
|
12 |
+
"content": "<|end_of_text|>",
|
13 |
+
"lstrip": false,
|
14 |
+
"normalized": false,
|
15 |
+
"rstrip": false,
|
16 |
+
"single_word": false,
|
17 |
+
"special": true
|
18 |
+
},
|
19 |
+
"128002": {
|
20 |
+
"content": "<|reserved_special_token_0|>",
|
21 |
+
"lstrip": false,
|
22 |
+
"normalized": false,
|
23 |
+
"rstrip": false,
|
24 |
+
"single_word": false,
|
25 |
+
"special": true
|
26 |
+
},
|
27 |
+
"128003": {
|
28 |
+
"content": "<|reserved_special_token_1|>",
|
29 |
+
"lstrip": false,
|
30 |
+
"normalized": false,
|
31 |
+
"rstrip": false,
|
32 |
+
"single_word": false,
|
33 |
+
"special": true
|
34 |
+
},
|
35 |
+
"128004": {
|
36 |
+
"content": "<|reserved_special_token_2|>",
|
37 |
+
"lstrip": false,
|
38 |
+
"normalized": false,
|
39 |
+
"rstrip": false,
|
40 |
+
"single_word": false,
|
41 |
+
"special": true
|
42 |
+
},
|
43 |
+
"128005": {
|
44 |
+
"content": "<|reserved_special_token_3|>",
|
45 |
+
"lstrip": false,
|
46 |
+
"normalized": false,
|
47 |
+
"rstrip": false,
|
48 |
+
"single_word": false,
|
49 |
+
"special": true
|
50 |
+
},
|
51 |
+
"128006": {
|
52 |
+
"content": "<|start_header_id|>",
|
53 |
+
"lstrip": false,
|
54 |
+
"normalized": false,
|
55 |
+
"rstrip": false,
|
56 |
+
"single_word": false,
|
57 |
+
"special": true
|
58 |
+
},
|
59 |
+
"128007": {
|
60 |
+
"content": "<|end_header_id|>",
|
61 |
+
"lstrip": false,
|
62 |
+
"normalized": false,
|
63 |
+
"rstrip": false,
|
64 |
+
"single_word": false,
|
65 |
+
"special": true
|
66 |
+
},
|
67 |
+
"128008": {
|
68 |
+
"content": "<|reserved_special_token_4|>",
|
69 |
+
"lstrip": false,
|
70 |
+
"normalized": false,
|
71 |
+
"rstrip": false,
|
72 |
+
"single_word": false,
|
73 |
+
"special": true
|
74 |
+
},
|
75 |
+
"128009": {
|
76 |
+
"content": "<|eot_id|>",
|
77 |
+
"lstrip": false,
|
78 |
+
"normalized": false,
|
79 |
+
"rstrip": false,
|
80 |
+
"single_word": false,
|
81 |
+
"special": true
|
82 |
+
},
|
83 |
+
"128010": {
|
84 |
+
"content": "<|reserved_special_token_5|>",
|
85 |
+
"lstrip": false,
|
86 |
+
"normalized": false,
|
87 |
+
"rstrip": false,
|
88 |
+
"single_word": false,
|
89 |
+
"special": true
|
90 |
+
},
|
91 |
+
"128011": {
|
92 |
+
"content": "<|reserved_special_token_6|>",
|
93 |
+
"lstrip": false,
|
94 |
+
"normalized": false,
|
95 |
+
"rstrip": false,
|
96 |
+
"single_word": false,
|
97 |
+
"special": true
|
98 |
+
},
|
99 |
+
"128012": {
|
100 |
+
"content": "<|reserved_special_token_7|>",
|
101 |
+
"lstrip": false,
|
102 |
+
"normalized": false,
|
103 |
+
"rstrip": false,
|
104 |
+
"single_word": false,
|
105 |
+
"special": true
|
106 |
+
},
|
107 |
+
"128013": {
|
108 |
+
"content": "<|reserved_special_token_8|>",
|
109 |
+
"lstrip": false,
|
110 |
+
"normalized": false,
|
111 |
+
"rstrip": false,
|
112 |
+
"single_word": false,
|
113 |
+
"special": true
|
114 |
+
},
|
115 |
+
"128014": {
|
116 |
+
"content": "<|reserved_special_token_9|>",
|
117 |
+
"lstrip": false,
|
118 |
+
"normalized": false,
|
119 |
+
"rstrip": false,
|
120 |
+
"single_word": false,
|
121 |
+
"special": true
|
122 |
+
},
|
123 |
+
"128015": {
|
124 |
+
"content": "<|reserved_special_token_10|>",
|
125 |
+
"lstrip": false,
|
126 |
+
"normalized": false,
|
127 |
+
"rstrip": false,
|
128 |
+
"single_word": false,
|
129 |
+
"special": true
|
130 |
+
},
|
131 |
+
"128016": {
|
132 |
+
"content": "<|reserved_special_token_11|>",
|
133 |
+
"lstrip": false,
|
134 |
+
"normalized": false,
|
135 |
+
"rstrip": false,
|
136 |
+
"single_word": false,
|
137 |
+
"special": true
|
138 |
+
},
|
139 |
+
"128017": {
|
140 |
+
"content": "<|reserved_special_token_12|>",
|
141 |
+
"lstrip": false,
|
142 |
+
"normalized": false,
|
143 |
+
"rstrip": false,
|
144 |
+
"single_word": false,
|
145 |
+
"special": true
|
146 |
+
},
|
147 |
+
"128018": {
|
148 |
+
"content": "<|reserved_special_token_13|>",
|
149 |
+
"lstrip": false,
|
150 |
+
"normalized": false,
|
151 |
+
"rstrip": false,
|
152 |
+
"single_word": false,
|
153 |
+
"special": true
|
154 |
+
},
|
155 |
+
"128019": {
|
156 |
+
"content": "<|reserved_special_token_14|>",
|
157 |
+
"lstrip": false,
|
158 |
+
"normalized": false,
|
159 |
+
"rstrip": false,
|
160 |
+
"single_word": false,
|
161 |
+
"special": true
|
162 |
+
},
|
163 |
+
"128020": {
|
164 |
+
"content": "<|reserved_special_token_15|>",
|
165 |
+
"lstrip": false,
|
166 |
+
"normalized": false,
|
167 |
+
"rstrip": false,
|
168 |
+
"single_word": false,
|
169 |
+
"special": true
|
170 |
+
},
|
171 |
+
"128021": {
|
172 |
+
"content": "<|reserved_special_token_16|>",
|
173 |
+
"lstrip": false,
|
174 |
+
"normalized": false,
|
175 |
+
"rstrip": false,
|
176 |
+
"single_word": false,
|
177 |
+
"special": true
|
178 |
+
},
|
179 |
+
"128022": {
|
180 |
+
"content": "<|reserved_special_token_17|>",
|
181 |
+
"lstrip": false,
|
182 |
+
"normalized": false,
|
183 |
+
"rstrip": false,
|
184 |
+
"single_word": false,
|
185 |
+
"special": true
|
186 |
+
},
|
187 |
+
"128023": {
|
188 |
+
"content": "<|reserved_special_token_18|>",
|
189 |
+
"lstrip": false,
|
190 |
+
"normalized": false,
|
191 |
+
"rstrip": false,
|
192 |
+
"single_word": false,
|
193 |
+
"special": true
|
194 |
+
},
|
195 |
+
"128024": {
|
196 |
+
"content": "<|reserved_special_token_19|>",
|
197 |
+
"lstrip": false,
|
198 |
+
"normalized": false,
|
199 |
+
"rstrip": false,
|
200 |
+
"single_word": false,
|
201 |
+
"special": true
|
202 |
+
},
|
203 |
+
"128025": {
|
204 |
+
"content": "<|reserved_special_token_20|>",
|
205 |
+
"lstrip": false,
|
206 |
+
"normalized": false,
|
207 |
+
"rstrip": false,
|
208 |
+
"single_word": false,
|
209 |
+
"special": true
|
210 |
+
},
|
211 |
+
"128026": {
|
212 |
+
"content": "<|reserved_special_token_21|>",
|
213 |
+
"lstrip": false,
|
214 |
+
"normalized": false,
|
215 |
+
"rstrip": false,
|
216 |
+
"single_word": false,
|
217 |
+
"special": true
|
218 |
+
},
|
219 |
+
"128027": {
|
220 |
+
"content": "<|reserved_special_token_22|>",
|
221 |
+
"lstrip": false,
|
222 |
+
"normalized": false,
|
223 |
+
"rstrip": false,
|
224 |
+
"single_word": false,
|
225 |
+
"special": true
|
226 |
+
},
|
227 |
+
"128028": {
|
228 |
+
"content": "<|reserved_special_token_23|>",
|
229 |
+
"lstrip": false,
|
230 |
+
"normalized": false,
|
231 |
+
"rstrip": false,
|
232 |
+
"single_word": false,
|
233 |
+
"special": true
|
234 |
+
},
|
235 |
+
"128029": {
|
236 |
+
"content": "<|reserved_special_token_24|>",
|
237 |
+
"lstrip": false,
|
238 |
+
"normalized": false,
|
239 |
+
"rstrip": false,
|
240 |
+
"single_word": false,
|
241 |
+
"special": true
|
242 |
+
},
|
243 |
+
"128030": {
|
244 |
+
"content": "<|reserved_special_token_25|>",
|
245 |
+
"lstrip": false,
|
246 |
+
"normalized": false,
|
247 |
+
"rstrip": false,
|
248 |
+
"single_word": false,
|
249 |
+
"special": true
|
250 |
+
},
|
251 |
+
"128031": {
|
252 |
+
"content": "<|reserved_special_token_26|>",
|
253 |
+
"lstrip": false,
|
254 |
+
"normalized": false,
|
255 |
+
"rstrip": false,
|
256 |
+
"single_word": false,
|
257 |
+
"special": true
|
258 |
+
},
|
259 |
+
"128032": {
|
260 |
+
"content": "<|reserved_special_token_27|>",
|
261 |
+
"lstrip": false,
|
262 |
+
"normalized": false,
|
263 |
+
"rstrip": false,
|
264 |
+
"single_word": false,
|
265 |
+
"special": true
|
266 |
+
},
|
267 |
+
"128033": {
|
268 |
+
"content": "<|reserved_special_token_28|>",
|
269 |
+
"lstrip": false,
|
270 |
+
"normalized": false,
|
271 |
+
"rstrip": false,
|
272 |
+
"single_word": false,
|
273 |
+
"special": true
|
274 |
+
},
|
275 |
+
"128034": {
|
276 |
+
"content": "<|reserved_special_token_29|>",
|
277 |
+
"lstrip": false,
|
278 |
+
"normalized": false,
|
279 |
+
"rstrip": false,
|
280 |
+
"single_word": false,
|
281 |
+
"special": true
|
282 |
+
},
|
283 |
+
"128035": {
|
284 |
+
"content": "<|reserved_special_token_30|>",
|
285 |
+
"lstrip": false,
|
286 |
+
"normalized": false,
|
287 |
+
"rstrip": false,
|
288 |
+
"single_word": false,
|
289 |
+
"special": true
|
290 |
+
},
|
291 |
+
"128036": {
|
292 |
+
"content": "<|reserved_special_token_31|>",
|
293 |
+
"lstrip": false,
|
294 |
+
"normalized": false,
|
295 |
+
"rstrip": false,
|
296 |
+
"single_word": false,
|
297 |
+
"special": true
|
298 |
+
},
|
299 |
+
"128037": {
|
300 |
+
"content": "<|reserved_special_token_32|>",
|
301 |
+
"lstrip": false,
|
302 |
+
"normalized": false,
|
303 |
+
"rstrip": false,
|
304 |
+
"single_word": false,
|
305 |
+
"special": true
|
306 |
+
},
|
307 |
+
"128038": {
|
308 |
+
"content": "<|reserved_special_token_33|>",
|
309 |
+
"lstrip": false,
|
310 |
+
"normalized": false,
|
311 |
+
"rstrip": false,
|
312 |
+
"single_word": false,
|
313 |
+
"special": true
|
314 |
+
},
|
315 |
+
"128039": {
|
316 |
+
"content": "<|reserved_special_token_34|>",
|
317 |
+
"lstrip": false,
|
318 |
+
"normalized": false,
|
319 |
+
"rstrip": false,
|
320 |
+
"single_word": false,
|
321 |
+
"special": true
|
322 |
+
},
|
323 |
+
"128040": {
|
324 |
+
"content": "<|reserved_special_token_35|>",
|
325 |
+
"lstrip": false,
|
326 |
+
"normalized": false,
|
327 |
+
"rstrip": false,
|
328 |
+
"single_word": false,
|
329 |
+
"special": true
|
330 |
+
},
|
331 |
+
"128041": {
|
332 |
+
"content": "<|reserved_special_token_36|>",
|
333 |
+
"lstrip": false,
|
334 |
+
"normalized": false,
|
335 |
+
"rstrip": false,
|
336 |
+
"single_word": false,
|
337 |
+
"special": true
|
338 |
+
},
|
339 |
+
"128042": {
|
340 |
+
"content": "<|reserved_special_token_37|>",
|
341 |
+
"lstrip": false,
|
342 |
+
"normalized": false,
|
343 |
+
"rstrip": false,
|
344 |
+
"single_word": false,
|
345 |
+
"special": true
|
346 |
+
},
|
347 |
+
"128043": {
|
348 |
+
"content": "<|reserved_special_token_38|>",
|
349 |
+
"lstrip": false,
|
350 |
+
"normalized": false,
|
351 |
+
"rstrip": false,
|
352 |
+
"single_word": false,
|
353 |
+
"special": true
|
354 |
+
},
|
355 |
+
"128044": {
|
356 |
+
"content": "<|reserved_special_token_39|>",
|
357 |
+
"lstrip": false,
|
358 |
+
"normalized": false,
|
359 |
+
"rstrip": false,
|
360 |
+
"single_word": false,
|
361 |
+
"special": true
|
362 |
+
},
|
363 |
+
"128045": {
|
364 |
+
"content": "<|reserved_special_token_40|>",
|
365 |
+
"lstrip": false,
|
366 |
+
"normalized": false,
|
367 |
+
"rstrip": false,
|
368 |
+
"single_word": false,
|
369 |
+
"special": true
|
370 |
+
},
|
371 |
+
"128046": {
|
372 |
+
"content": "<|reserved_special_token_41|>",
|
373 |
+
"lstrip": false,
|
374 |
+
"normalized": false,
|
375 |
+
"rstrip": false,
|
376 |
+
"single_word": false,
|
377 |
+
"special": true
|
378 |
+
},
|
379 |
+
"128047": {
|
380 |
+
"content": "<|reserved_special_token_42|>",
|
381 |
+
"lstrip": false,
|
382 |
+
"normalized": false,
|
383 |
+
"rstrip": false,
|
384 |
+
"single_word": false,
|
385 |
+
"special": true
|
386 |
+
},
|
387 |
+
"128048": {
|
388 |
+
"content": "<|reserved_special_token_43|>",
|
389 |
+
"lstrip": false,
|
390 |
+
"normalized": false,
|
391 |
+
"rstrip": false,
|
392 |
+
"single_word": false,
|
393 |
+
"special": true
|
394 |
+
},
|
395 |
+
"128049": {
|
396 |
+
"content": "<|reserved_special_token_44|>",
|
397 |
+
"lstrip": false,
|
398 |
+
"normalized": false,
|
399 |
+
"rstrip": false,
|
400 |
+
"single_word": false,
|
401 |
+
"special": true
|
402 |
+
},
|
403 |
+
"128050": {
|
404 |
+
"content": "<|reserved_special_token_45|>",
|
405 |
+
"lstrip": false,
|
406 |
+
"normalized": false,
|
407 |
+
"rstrip": false,
|
408 |
+
"single_word": false,
|
409 |
+
"special": true
|
410 |
+
},
|
411 |
+
"128051": {
|
412 |
+
"content": "<|reserved_special_token_46|>",
|
413 |
+
"lstrip": false,
|
414 |
+
"normalized": false,
|
415 |
+
"rstrip": false,
|
416 |
+
"single_word": false,
|
417 |
+
"special": true
|
418 |
+
},
|
419 |
+
"128052": {
|
420 |
+
"content": "<|reserved_special_token_47|>",
|
421 |
+
"lstrip": false,
|
422 |
+
"normalized": false,
|
423 |
+
"rstrip": false,
|
424 |
+
"single_word": false,
|
425 |
+
"special": true
|
426 |
+
},
|
427 |
+
"128053": {
|
428 |
+
"content": "<|reserved_special_token_48|>",
|
429 |
+
"lstrip": false,
|
430 |
+
"normalized": false,
|
431 |
+
"rstrip": false,
|
432 |
+
"single_word": false,
|
433 |
+
"special": true
|
434 |
+
},
|
435 |
+
"128054": {
|
436 |
+
"content": "<|reserved_special_token_49|>",
|
437 |
+
"lstrip": false,
|
438 |
+
"normalized": false,
|
439 |
+
"rstrip": false,
|
440 |
+
"single_word": false,
|
441 |
+
"special": true
|
442 |
+
},
|
443 |
+
"128055": {
|
444 |
+
"content": "<|reserved_special_token_50|>",
|
445 |
+
"lstrip": false,
|
446 |
+
"normalized": false,
|
447 |
+
"rstrip": false,
|
448 |
+
"single_word": false,
|
449 |
+
"special": true
|
450 |
+
},
|
451 |
+
"128056": {
|
452 |
+
"content": "<|reserved_special_token_51|>",
|
453 |
+
"lstrip": false,
|
454 |
+
"normalized": false,
|
455 |
+
"rstrip": false,
|
456 |
+
"single_word": false,
|
457 |
+
"special": true
|
458 |
+
},
|
459 |
+
"128057": {
|
460 |
+
"content": "<|reserved_special_token_52|>",
|
461 |
+
"lstrip": false,
|
462 |
+
"normalized": false,
|
463 |
+
"rstrip": false,
|
464 |
+
"single_word": false,
|
465 |
+
"special": true
|
466 |
+
},
|
467 |
+
"128058": {
|
468 |
+
"content": "<|reserved_special_token_53|>",
|
469 |
+
"lstrip": false,
|
470 |
+
"normalized": false,
|
471 |
+
"rstrip": false,
|
472 |
+
"single_word": false,
|
473 |
+
"special": true
|
474 |
+
},
|
475 |
+
"128059": {
|
476 |
+
"content": "<|reserved_special_token_54|>",
|
477 |
+
"lstrip": false,
|
478 |
+
"normalized": false,
|
479 |
+
"rstrip": false,
|
480 |
+
"single_word": false,
|
481 |
+
"special": true
|
482 |
+
},
|
483 |
+
"128060": {
|
484 |
+
"content": "<|reserved_special_token_55|>",
|
485 |
+
"lstrip": false,
|
486 |
+
"normalized": false,
|
487 |
+
"rstrip": false,
|
488 |
+
"single_word": false,
|
489 |
+
"special": true
|
490 |
+
},
|
491 |
+
"128061": {
|
492 |
+
"content": "<|reserved_special_token_56|>",
|
493 |
+
"lstrip": false,
|
494 |
+
"normalized": false,
|
495 |
+
"rstrip": false,
|
496 |
+
"single_word": false,
|
497 |
+
"special": true
|
498 |
+
},
|
499 |
+
"128062": {
|
500 |
+
"content": "<|reserved_special_token_57|>",
|
501 |
+
"lstrip": false,
|
502 |
+
"normalized": false,
|
503 |
+
"rstrip": false,
|
504 |
+
"single_word": false,
|
505 |
+
"special": true
|
506 |
+
},
|
507 |
+
"128063": {
|
508 |
+
"content": "<|reserved_special_token_58|>",
|
509 |
+
"lstrip": false,
|
510 |
+
"normalized": false,
|
511 |
+
"rstrip": false,
|
512 |
+
"single_word": false,
|
513 |
+
"special": true
|
514 |
+
},
|
515 |
+
"128064": {
|
516 |
+
"content": "<|reserved_special_token_59|>",
|
517 |
+
"lstrip": false,
|
518 |
+
"normalized": false,
|
519 |
+
"rstrip": false,
|
520 |
+
"single_word": false,
|
521 |
+
"special": true
|
522 |
+
},
|
523 |
+
"128065": {
|
524 |
+
"content": "<|reserved_special_token_60|>",
|
525 |
+
"lstrip": false,
|
526 |
+
"normalized": false,
|
527 |
+
"rstrip": false,
|
528 |
+
"single_word": false,
|
529 |
+
"special": true
|
530 |
+
},
|
531 |
+
"128066": {
|
532 |
+
"content": "<|reserved_special_token_61|>",
|
533 |
+
"lstrip": false,
|
534 |
+
"normalized": false,
|
535 |
+
"rstrip": false,
|
536 |
+
"single_word": false,
|
537 |
+
"special": true
|
538 |
+
},
|
539 |
+
"128067": {
|
540 |
+
"content": "<|reserved_special_token_62|>",
|
541 |
+
"lstrip": false,
|
542 |
+
"normalized": false,
|
543 |
+
"rstrip": false,
|
544 |
+
"single_word": false,
|
545 |
+
"special": true
|
546 |
+
},
|
547 |
+
"128068": {
|
548 |
+
"content": "<|reserved_special_token_63|>",
|
549 |
+
"lstrip": false,
|
550 |
+
"normalized": false,
|
551 |
+
"rstrip": false,
|
552 |
+
"single_word": false,
|
553 |
+
"special": true
|
554 |
+
},
|
555 |
+
"128069": {
|
556 |
+
"content": "<|reserved_special_token_64|>",
|
557 |
+
"lstrip": false,
|
558 |
+
"normalized": false,
|
559 |
+
"rstrip": false,
|
560 |
+
"single_word": false,
|
561 |
+
"special": true
|
562 |
+
},
|
563 |
+
"128070": {
|
564 |
+
"content": "<|reserved_special_token_65|>",
|
565 |
+
"lstrip": false,
|
566 |
+
"normalized": false,
|
567 |
+
"rstrip": false,
|
568 |
+
"single_word": false,
|
569 |
+
"special": true
|
570 |
+
},
|
571 |
+
"128071": {
|
572 |
+
"content": "<|reserved_special_token_66|>",
|
573 |
+
"lstrip": false,
|
574 |
+
"normalized": false,
|
575 |
+
"rstrip": false,
|
576 |
+
"single_word": false,
|
577 |
+
"special": true
|
578 |
+
},
|
579 |
+
"128072": {
|
580 |
+
"content": "<|reserved_special_token_67|>",
|
581 |
+
"lstrip": false,
|
582 |
+
"normalized": false,
|
583 |
+
"rstrip": false,
|
584 |
+
"single_word": false,
|
585 |
+
"special": true
|
586 |
+
},
|
587 |
+
"128073": {
|
588 |
+
"content": "<|reserved_special_token_68|>",
|
589 |
+
"lstrip": false,
|
590 |
+
"normalized": false,
|
591 |
+
"rstrip": false,
|
592 |
+
"single_word": false,
|
593 |
+
"special": true
|
594 |
+
},
|
595 |
+
"128074": {
|
596 |
+
"content": "<|reserved_special_token_69|>",
|
597 |
+
"lstrip": false,
|
598 |
+
"normalized": false,
|
599 |
+
"rstrip": false,
|
600 |
+
"single_word": false,
|
601 |
+
"special": true
|
602 |
+
},
|
603 |
+
"128075": {
|
604 |
+
"content": "<|reserved_special_token_70|>",
|
605 |
+
"lstrip": false,
|
606 |
+
"normalized": false,
|
607 |
+
"rstrip": false,
|
608 |
+
"single_word": false,
|
609 |
+
"special": true
|
610 |
+
},
|
611 |
+
"128076": {
|
612 |
+
"content": "<|reserved_special_token_71|>",
|
613 |
+
"lstrip": false,
|
614 |
+
"normalized": false,
|
615 |
+
"rstrip": false,
|
616 |
+
"single_word": false,
|
617 |
+
"special": true
|
618 |
+
},
|
619 |
+
"128077": {
|
620 |
+
"content": "<|reserved_special_token_72|>",
|
621 |
+
"lstrip": false,
|
622 |
+
"normalized": false,
|
623 |
+
"rstrip": false,
|
624 |
+
"single_word": false,
|
625 |
+
"special": true
|
626 |
+
},
|
627 |
+
"128078": {
|
628 |
+
"content": "<|reserved_special_token_73|>",
|
629 |
+
"lstrip": false,
|
630 |
+
"normalized": false,
|
631 |
+
"rstrip": false,
|
632 |
+
"single_word": false,
|
633 |
+
"special": true
|
634 |
+
},
|
635 |
+
"128079": {
|
636 |
+
"content": "<|reserved_special_token_74|>",
|
637 |
+
"lstrip": false,
|
638 |
+
"normalized": false,
|
639 |
+
"rstrip": false,
|
640 |
+
"single_word": false,
|
641 |
+
"special": true
|
642 |
+
},
|
643 |
+
"128080": {
|
644 |
+
"content": "<|reserved_special_token_75|>",
|
645 |
+
"lstrip": false,
|
646 |
+
"normalized": false,
|
647 |
+
"rstrip": false,
|
648 |
+
"single_word": false,
|
649 |
+
"special": true
|
650 |
+
},
|
651 |
+
"128081": {
|
652 |
+
"content": "<|reserved_special_token_76|>",
|
653 |
+
"lstrip": false,
|
654 |
+
"normalized": false,
|
655 |
+
"rstrip": false,
|
656 |
+
"single_word": false,
|
657 |
+
"special": true
|
658 |
+
},
|
659 |
+
"128082": {
|
660 |
+
"content": "<|reserved_special_token_77|>",
|
661 |
+
"lstrip": false,
|
662 |
+
"normalized": false,
|
663 |
+
"rstrip": false,
|
664 |
+
"single_word": false,
|
665 |
+
"special": true
|
666 |
+
},
|
667 |
+
"128083": {
|
668 |
+
"content": "<|reserved_special_token_78|>",
|
669 |
+
"lstrip": false,
|
670 |
+
"normalized": false,
|
671 |
+
"rstrip": false,
|
672 |
+
"single_word": false,
|
673 |
+
"special": true
|
674 |
+
},
|
675 |
+
"128084": {
|
676 |
+
"content": "<|reserved_special_token_79|>",
|
677 |
+
"lstrip": false,
|
678 |
+
"normalized": false,
|
679 |
+
"rstrip": false,
|
680 |
+
"single_word": false,
|
681 |
+
"special": true
|
682 |
+
},
|
683 |
+
"128085": {
|
684 |
+
"content": "<|reserved_special_token_80|>",
|
685 |
+
"lstrip": false,
|
686 |
+
"normalized": false,
|
687 |
+
"rstrip": false,
|
688 |
+
"single_word": false,
|
689 |
+
"special": true
|
690 |
+
},
|
691 |
+
"128086": {
|
692 |
+
"content": "<|reserved_special_token_81|>",
|
693 |
+
"lstrip": false,
|
694 |
+
"normalized": false,
|
695 |
+
"rstrip": false,
|
696 |
+
"single_word": false,
|
697 |
+
"special": true
|
698 |
+
},
|
699 |
+
"128087": {
|
700 |
+
"content": "<|reserved_special_token_82|>",
|
701 |
+
"lstrip": false,
|
702 |
+
"normalized": false,
|
703 |
+
"rstrip": false,
|
704 |
+
"single_word": false,
|
705 |
+
"special": true
|
706 |
+
},
|
707 |
+
"128088": {
|
708 |
+
"content": "<|reserved_special_token_83|>",
|
709 |
+
"lstrip": false,
|
710 |
+
"normalized": false,
|
711 |
+
"rstrip": false,
|
712 |
+
"single_word": false,
|
713 |
+
"special": true
|
714 |
+
},
|
715 |
+
"128089": {
|
716 |
+
"content": "<|reserved_special_token_84|>",
|
717 |
+
"lstrip": false,
|
718 |
+
"normalized": false,
|
719 |
+
"rstrip": false,
|
720 |
+
"single_word": false,
|
721 |
+
"special": true
|
722 |
+
},
|
723 |
+
"128090": {
|
724 |
+
"content": "<|reserved_special_token_85|>",
|
725 |
+
"lstrip": false,
|
726 |
+
"normalized": false,
|
727 |
+
"rstrip": false,
|
728 |
+
"single_word": false,
|
729 |
+
"special": true
|
730 |
+
},
|
731 |
+
"128091": {
|
732 |
+
"content": "<|reserved_special_token_86|>",
|
733 |
+
"lstrip": false,
|
734 |
+
"normalized": false,
|
735 |
+
"rstrip": false,
|
736 |
+
"single_word": false,
|
737 |
+
"special": true
|
738 |
+
},
|
739 |
+
"128092": {
|
740 |
+
"content": "<|reserved_special_token_87|>",
|
741 |
+
"lstrip": false,
|
742 |
+
"normalized": false,
|
743 |
+
"rstrip": false,
|
744 |
+
"single_word": false,
|
745 |
+
"special": true
|
746 |
+
},
|
747 |
+
"128093": {
|
748 |
+
"content": "<|reserved_special_token_88|>",
|
749 |
+
"lstrip": false,
|
750 |
+
"normalized": false,
|
751 |
+
"rstrip": false,
|
752 |
+
"single_word": false,
|
753 |
+
"special": true
|
754 |
+
},
|
755 |
+
"128094": {
|
756 |
+
"content": "<|reserved_special_token_89|>",
|
757 |
+
"lstrip": false,
|
758 |
+
"normalized": false,
|
759 |
+
"rstrip": false,
|
760 |
+
"single_word": false,
|
761 |
+
"special": true
|
762 |
+
},
|
763 |
+
"128095": {
|
764 |
+
"content": "<|reserved_special_token_90|>",
|
765 |
+
"lstrip": false,
|
766 |
+
"normalized": false,
|
767 |
+
"rstrip": false,
|
768 |
+
"single_word": false,
|
769 |
+
"special": true
|
770 |
+
},
|
771 |
+
"128096": {
|
772 |
+
"content": "<|reserved_special_token_91|>",
|
773 |
+
"lstrip": false,
|
774 |
+
"normalized": false,
|
775 |
+
"rstrip": false,
|
776 |
+
"single_word": false,
|
777 |
+
"special": true
|
778 |
+
},
|
779 |
+
"128097": {
|
780 |
+
"content": "<|reserved_special_token_92|>",
|
781 |
+
"lstrip": false,
|
782 |
+
"normalized": false,
|
783 |
+
"rstrip": false,
|
784 |
+
"single_word": false,
|
785 |
+
"special": true
|
786 |
+
},
|
787 |
+
"128098": {
|
788 |
+
"content": "<|reserved_special_token_93|>",
|
789 |
+
"lstrip": false,
|
790 |
+
"normalized": false,
|
791 |
+
"rstrip": false,
|
792 |
+
"single_word": false,
|
793 |
+
"special": true
|
794 |
+
},
|
795 |
+
"128099": {
|
796 |
+
"content": "<|reserved_special_token_94|>",
|
797 |
+
"lstrip": false,
|
798 |
+
"normalized": false,
|
799 |
+
"rstrip": false,
|
800 |
+
"single_word": false,
|
801 |
+
"special": true
|
802 |
+
},
|
803 |
+
"128100": {
|
804 |
+
"content": "<|reserved_special_token_95|>",
|
805 |
+
"lstrip": false,
|
806 |
+
"normalized": false,
|
807 |
+
"rstrip": false,
|
808 |
+
"single_word": false,
|
809 |
+
"special": true
|
810 |
+
},
|
811 |
+
"128101": {
|
812 |
+
"content": "<|reserved_special_token_96|>",
|
813 |
+
"lstrip": false,
|
814 |
+
"normalized": false,
|
815 |
+
"rstrip": false,
|
816 |
+
"single_word": false,
|
817 |
+
"special": true
|
818 |
+
},
|
819 |
+
"128102": {
|
820 |
+
"content": "<|reserved_special_token_97|>",
|
821 |
+
"lstrip": false,
|
822 |
+
"normalized": false,
|
823 |
+
"rstrip": false,
|
824 |
+
"single_word": false,
|
825 |
+
"special": true
|
826 |
+
},
|
827 |
+
"128103": {
|
828 |
+
"content": "<|reserved_special_token_98|>",
|
829 |
+
"lstrip": false,
|
830 |
+
"normalized": false,
|
831 |
+
"rstrip": false,
|
832 |
+
"single_word": false,
|
833 |
+
"special": true
|
834 |
+
},
|
835 |
+
"128104": {
|
836 |
+
"content": "<|reserved_special_token_99|>",
|
837 |
+
"lstrip": false,
|
838 |
+
"normalized": false,
|
839 |
+
"rstrip": false,
|
840 |
+
"single_word": false,
|
841 |
+
"special": true
|
842 |
+
},
|
843 |
+
"128105": {
|
844 |
+
"content": "<|reserved_special_token_100|>",
|
845 |
+
"lstrip": false,
|
846 |
+
"normalized": false,
|
847 |
+
"rstrip": false,
|
848 |
+
"single_word": false,
|
849 |
+
"special": true
|
850 |
+
},
|
851 |
+
"128106": {
|
852 |
+
"content": "<|reserved_special_token_101|>",
|
853 |
+
"lstrip": false,
|
854 |
+
"normalized": false,
|
855 |
+
"rstrip": false,
|
856 |
+
"single_word": false,
|
857 |
+
"special": true
|
858 |
+
},
|
859 |
+
"128107": {
|
860 |
+
"content": "<|reserved_special_token_102|>",
|
861 |
+
"lstrip": false,
|
862 |
+
"normalized": false,
|
863 |
+
"rstrip": false,
|
864 |
+
"single_word": false,
|
865 |
+
"special": true
|
866 |
+
},
|
867 |
+
"128108": {
|
868 |
+
"content": "<|reserved_special_token_103|>",
|
869 |
+
"lstrip": false,
|
870 |
+
"normalized": false,
|
871 |
+
"rstrip": false,
|
872 |
+
"single_word": false,
|
873 |
+
"special": true
|
874 |
+
},
|
875 |
+
"128109": {
|
876 |
+
"content": "<|reserved_special_token_104|>",
|
877 |
+
"lstrip": false,
|
878 |
+
"normalized": false,
|
879 |
+
"rstrip": false,
|
880 |
+
"single_word": false,
|
881 |
+
"special": true
|
882 |
+
},
|
883 |
+
"128110": {
|
884 |
+
"content": "<|reserved_special_token_105|>",
|
885 |
+
"lstrip": false,
|
886 |
+
"normalized": false,
|
887 |
+
"rstrip": false,
|
888 |
+
"single_word": false,
|
889 |
+
"special": true
|
890 |
+
},
|
891 |
+
"128111": {
|
892 |
+
"content": "<|reserved_special_token_106|>",
|
893 |
+
"lstrip": false,
|
894 |
+
"normalized": false,
|
895 |
+
"rstrip": false,
|
896 |
+
"single_word": false,
|
897 |
+
"special": true
|
898 |
+
},
|
899 |
+
"128112": {
|
900 |
+
"content": "<|reserved_special_token_107|>",
|
901 |
+
"lstrip": false,
|
902 |
+
"normalized": false,
|
903 |
+
"rstrip": false,
|
904 |
+
"single_word": false,
|
905 |
+
"special": true
|
906 |
+
},
|
907 |
+
"128113": {
|
908 |
+
"content": "<|reserved_special_token_108|>",
|
909 |
+
"lstrip": false,
|
910 |
+
"normalized": false,
|
911 |
+
"rstrip": false,
|
912 |
+
"single_word": false,
|
913 |
+
"special": true
|
914 |
+
},
|
915 |
+
"128114": {
|
916 |
+
"content": "<|reserved_special_token_109|>",
|
917 |
+
"lstrip": false,
|
918 |
+
"normalized": false,
|
919 |
+
"rstrip": false,
|
920 |
+
"single_word": false,
|
921 |
+
"special": true
|
922 |
+
},
|
923 |
+
"128115": {
|
924 |
+
"content": "<|reserved_special_token_110|>",
|
925 |
+
"lstrip": false,
|
926 |
+
"normalized": false,
|
927 |
+
"rstrip": false,
|
928 |
+
"single_word": false,
|
929 |
+
"special": true
|
930 |
+
},
|
931 |
+
"128116": {
|
932 |
+
"content": "<|reserved_special_token_111|>",
|
933 |
+
"lstrip": false,
|
934 |
+
"normalized": false,
|
935 |
+
"rstrip": false,
|
936 |
+
"single_word": false,
|
937 |
+
"special": true
|
938 |
+
},
|
939 |
+
"128117": {
|
940 |
+
"content": "<|reserved_special_token_112|>",
|
941 |
+
"lstrip": false,
|
942 |
+
"normalized": false,
|
943 |
+
"rstrip": false,
|
944 |
+
"single_word": false,
|
945 |
+
"special": true
|
946 |
+
},
|
947 |
+
"128118": {
|
948 |
+
"content": "<|reserved_special_token_113|>",
|
949 |
+
"lstrip": false,
|
950 |
+
"normalized": false,
|
951 |
+
"rstrip": false,
|
952 |
+
"single_word": false,
|
953 |
+
"special": true
|
954 |
+
},
|
955 |
+
"128119": {
|
956 |
+
"content": "<|reserved_special_token_114|>",
|
957 |
+
"lstrip": false,
|
958 |
+
"normalized": false,
|
959 |
+
"rstrip": false,
|
960 |
+
"single_word": false,
|
961 |
+
"special": true
|
962 |
+
},
|
963 |
+
"128120": {
|
964 |
+
"content": "<|reserved_special_token_115|>",
|
965 |
+
"lstrip": false,
|
966 |
+
"normalized": false,
|
967 |
+
"rstrip": false,
|
968 |
+
"single_word": false,
|
969 |
+
"special": true
|
970 |
+
},
|
971 |
+
"128121": {
|
972 |
+
"content": "<|reserved_special_token_116|>",
|
973 |
+
"lstrip": false,
|
974 |
+
"normalized": false,
|
975 |
+
"rstrip": false,
|
976 |
+
"single_word": false,
|
977 |
+
"special": true
|
978 |
+
},
|
979 |
+
"128122": {
|
980 |
+
"content": "<|reserved_special_token_117|>",
|
981 |
+
"lstrip": false,
|
982 |
+
"normalized": false,
|
983 |
+
"rstrip": false,
|
984 |
+
"single_word": false,
|
985 |
+
"special": true
|
986 |
+
},
|
987 |
+
"128123": {
|
988 |
+
"content": "<|reserved_special_token_118|>",
|
989 |
+
"lstrip": false,
|
990 |
+
"normalized": false,
|
991 |
+
"rstrip": false,
|
992 |
+
"single_word": false,
|
993 |
+
"special": true
|
994 |
+
},
|
995 |
+
"128124": {
|
996 |
+
"content": "<|reserved_special_token_119|>",
|
997 |
+
"lstrip": false,
|
998 |
+
"normalized": false,
|
999 |
+
"rstrip": false,
|
1000 |
+
"single_word": false,
|
1001 |
+
"special": true
|
1002 |
+
},
|
1003 |
+
"128125": {
|
1004 |
+
"content": "<|reserved_special_token_120|>",
|
1005 |
+
"lstrip": false,
|
1006 |
+
"normalized": false,
|
1007 |
+
"rstrip": false,
|
1008 |
+
"single_word": false,
|
1009 |
+
"special": true
|
1010 |
+
},
|
1011 |
+
"128126": {
|
1012 |
+
"content": "<|reserved_special_token_121|>",
|
1013 |
+
"lstrip": false,
|
1014 |
+
"normalized": false,
|
1015 |
+
"rstrip": false,
|
1016 |
+
"single_word": false,
|
1017 |
+
"special": true
|
1018 |
+
},
|
1019 |
+
"128127": {
|
1020 |
+
"content": "<|reserved_special_token_122|>",
|
1021 |
+
"lstrip": false,
|
1022 |
+
"normalized": false,
|
1023 |
+
"rstrip": false,
|
1024 |
+
"single_word": false,
|
1025 |
+
"special": true
|
1026 |
+
},
|
1027 |
+
"128128": {
|
1028 |
+
"content": "<|reserved_special_token_123|>",
|
1029 |
+
"lstrip": false,
|
1030 |
+
"normalized": false,
|
1031 |
+
"rstrip": false,
|
1032 |
+
"single_word": false,
|
1033 |
+
"special": true
|
1034 |
+
},
|
1035 |
+
"128129": {
|
1036 |
+
"content": "<|reserved_special_token_124|>",
|
1037 |
+
"lstrip": false,
|
1038 |
+
"normalized": false,
|
1039 |
+
"rstrip": false,
|
1040 |
+
"single_word": false,
|
1041 |
+
"special": true
|
1042 |
+
},
|
1043 |
+
"128130": {
|
1044 |
+
"content": "<|reserved_special_token_125|>",
|
1045 |
+
"lstrip": false,
|
1046 |
+
"normalized": false,
|
1047 |
+
"rstrip": false,
|
1048 |
+
"single_word": false,
|
1049 |
+
"special": true
|
1050 |
+
},
|
1051 |
+
"128131": {
|
1052 |
+
"content": "<|reserved_special_token_126|>",
|
1053 |
+
"lstrip": false,
|
1054 |
+
"normalized": false,
|
1055 |
+
"rstrip": false,
|
1056 |
+
"single_word": false,
|
1057 |
+
"special": true
|
1058 |
+
},
|
1059 |
+
"128132": {
|
1060 |
+
"content": "<|reserved_special_token_127|>",
|
1061 |
+
"lstrip": false,
|
1062 |
+
"normalized": false,
|
1063 |
+
"rstrip": false,
|
1064 |
+
"single_word": false,
|
1065 |
+
"special": true
|
1066 |
+
},
|
1067 |
+
"128133": {
|
1068 |
+
"content": "<|reserved_special_token_128|>",
|
1069 |
+
"lstrip": false,
|
1070 |
+
"normalized": false,
|
1071 |
+
"rstrip": false,
|
1072 |
+
"single_word": false,
|
1073 |
+
"special": true
|
1074 |
+
},
|
1075 |
+
"128134": {
|
1076 |
+
"content": "<|reserved_special_token_129|>",
|
1077 |
+
"lstrip": false,
|
1078 |
+
"normalized": false,
|
1079 |
+
"rstrip": false,
|
1080 |
+
"single_word": false,
|
1081 |
+
"special": true
|
1082 |
+
},
|
1083 |
+
"128135": {
|
1084 |
+
"content": "<|reserved_special_token_130|>",
|
1085 |
+
"lstrip": false,
|
1086 |
+
"normalized": false,
|
1087 |
+
"rstrip": false,
|
1088 |
+
"single_word": false,
|
1089 |
+
"special": true
|
1090 |
+
},
|
1091 |
+
"128136": {
|
1092 |
+
"content": "<|reserved_special_token_131|>",
|
1093 |
+
"lstrip": false,
|
1094 |
+
"normalized": false,
|
1095 |
+
"rstrip": false,
|
1096 |
+
"single_word": false,
|
1097 |
+
"special": true
|
1098 |
+
},
|
1099 |
+
"128137": {
|
1100 |
+
"content": "<|reserved_special_token_132|>",
|
1101 |
+
"lstrip": false,
|
1102 |
+
"normalized": false,
|
1103 |
+
"rstrip": false,
|
1104 |
+
"single_word": false,
|
1105 |
+
"special": true
|
1106 |
+
},
|
1107 |
+
"128138": {
|
1108 |
+
"content": "<|reserved_special_token_133|>",
|
1109 |
+
"lstrip": false,
|
1110 |
+
"normalized": false,
|
1111 |
+
"rstrip": false,
|
1112 |
+
"single_word": false,
|
1113 |
+
"special": true
|
1114 |
+
},
|
1115 |
+
"128139": {
|
1116 |
+
"content": "<|reserved_special_token_134|>",
|
1117 |
+
"lstrip": false,
|
1118 |
+
"normalized": false,
|
1119 |
+
"rstrip": false,
|
1120 |
+
"single_word": false,
|
1121 |
+
"special": true
|
1122 |
+
},
|
1123 |
+
"128140": {
|
1124 |
+
"content": "<|reserved_special_token_135|>",
|
1125 |
+
"lstrip": false,
|
1126 |
+
"normalized": false,
|
1127 |
+
"rstrip": false,
|
1128 |
+
"single_word": false,
|
1129 |
+
"special": true
|
1130 |
+
},
|
1131 |
+
"128141": {
|
1132 |
+
"content": "<|reserved_special_token_136|>",
|
1133 |
+
"lstrip": false,
|
1134 |
+
"normalized": false,
|
1135 |
+
"rstrip": false,
|
1136 |
+
"single_word": false,
|
1137 |
+
"special": true
|
1138 |
+
},
|
1139 |
+
"128142": {
|
1140 |
+
"content": "<|reserved_special_token_137|>",
|
1141 |
+
"lstrip": false,
|
1142 |
+
"normalized": false,
|
1143 |
+
"rstrip": false,
|
1144 |
+
"single_word": false,
|
1145 |
+
"special": true
|
1146 |
+
},
|
1147 |
+
"128143": {
|
1148 |
+
"content": "<|reserved_special_token_138|>",
|
1149 |
+
"lstrip": false,
|
1150 |
+
"normalized": false,
|
1151 |
+
"rstrip": false,
|
1152 |
+
"single_word": false,
|
1153 |
+
"special": true
|
1154 |
+
},
|
1155 |
+
"128144": {
|
1156 |
+
"content": "<|reserved_special_token_139|>",
|
1157 |
+
"lstrip": false,
|
1158 |
+
"normalized": false,
|
1159 |
+
"rstrip": false,
|
1160 |
+
"single_word": false,
|
1161 |
+
"special": true
|
1162 |
+
},
|
1163 |
+
"128145": {
|
1164 |
+
"content": "<|reserved_special_token_140|>",
|
1165 |
+
"lstrip": false,
|
1166 |
+
"normalized": false,
|
1167 |
+
"rstrip": false,
|
1168 |
+
"single_word": false,
|
1169 |
+
"special": true
|
1170 |
+
},
|
1171 |
+
"128146": {
|
1172 |
+
"content": "<|reserved_special_token_141|>",
|
1173 |
+
"lstrip": false,
|
1174 |
+
"normalized": false,
|
1175 |
+
"rstrip": false,
|
1176 |
+
"single_word": false,
|
1177 |
+
"special": true
|
1178 |
+
},
|
1179 |
+
"128147": {
|
1180 |
+
"content": "<|reserved_special_token_142|>",
|
1181 |
+
"lstrip": false,
|
1182 |
+
"normalized": false,
|
1183 |
+
"rstrip": false,
|
1184 |
+
"single_word": false,
|
1185 |
+
"special": true
|
1186 |
+
},
|
1187 |
+
"128148": {
|
1188 |
+
"content": "<|reserved_special_token_143|>",
|
1189 |
+
"lstrip": false,
|
1190 |
+
"normalized": false,
|
1191 |
+
"rstrip": false,
|
1192 |
+
"single_word": false,
|
1193 |
+
"special": true
|
1194 |
+
},
|
1195 |
+
"128149": {
|
1196 |
+
"content": "<|reserved_special_token_144|>",
|
1197 |
+
"lstrip": false,
|
1198 |
+
"normalized": false,
|
1199 |
+
"rstrip": false,
|
1200 |
+
"single_word": false,
|
1201 |
+
"special": true
|
1202 |
+
},
|
1203 |
+
"128150": {
|
1204 |
+
"content": "<|reserved_special_token_145|>",
|
1205 |
+
"lstrip": false,
|
1206 |
+
"normalized": false,
|
1207 |
+
"rstrip": false,
|
1208 |
+
"single_word": false,
|
1209 |
+
"special": true
|
1210 |
+
},
|
1211 |
+
"128151": {
|
1212 |
+
"content": "<|reserved_special_token_146|>",
|
1213 |
+
"lstrip": false,
|
1214 |
+
"normalized": false,
|
1215 |
+
"rstrip": false,
|
1216 |
+
"single_word": false,
|
1217 |
+
"special": true
|
1218 |
+
},
|
1219 |
+
"128152": {
|
1220 |
+
"content": "<|reserved_special_token_147|>",
|
1221 |
+
"lstrip": false,
|
1222 |
+
"normalized": false,
|
1223 |
+
"rstrip": false,
|
1224 |
+
"single_word": false,
|
1225 |
+
"special": true
|
1226 |
+
},
|
1227 |
+
"128153": {
|
1228 |
+
"content": "<|reserved_special_token_148|>",
|
1229 |
+
"lstrip": false,
|
1230 |
+
"normalized": false,
|
1231 |
+
"rstrip": false,
|
1232 |
+
"single_word": false,
|
1233 |
+
"special": true
|
1234 |
+
},
|
1235 |
+
"128154": {
|
1236 |
+
"content": "<|reserved_special_token_149|>",
|
1237 |
+
"lstrip": false,
|
1238 |
+
"normalized": false,
|
1239 |
+
"rstrip": false,
|
1240 |
+
"single_word": false,
|
1241 |
+
"special": true
|
1242 |
+
},
|
1243 |
+
"128155": {
|
1244 |
+
"content": "<|reserved_special_token_150|>",
|
1245 |
+
"lstrip": false,
|
1246 |
+
"normalized": false,
|
1247 |
+
"rstrip": false,
|
1248 |
+
"single_word": false,
|
1249 |
+
"special": true
|
1250 |
+
},
|
1251 |
+
"128156": {
|
1252 |
+
"content": "<|reserved_special_token_151|>",
|
1253 |
+
"lstrip": false,
|
1254 |
+
"normalized": false,
|
1255 |
+
"rstrip": false,
|
1256 |
+
"single_word": false,
|
1257 |
+
"special": true
|
1258 |
+
},
|
1259 |
+
"128157": {
|
1260 |
+
"content": "<|reserved_special_token_152|>",
|
1261 |
+
"lstrip": false,
|
1262 |
+
"normalized": false,
|
1263 |
+
"rstrip": false,
|
1264 |
+
"single_word": false,
|
1265 |
+
"special": true
|
1266 |
+
},
|
1267 |
+
"128158": {
|
1268 |
+
"content": "<|reserved_special_token_153|>",
|
1269 |
+
"lstrip": false,
|
1270 |
+
"normalized": false,
|
1271 |
+
"rstrip": false,
|
1272 |
+
"single_word": false,
|
1273 |
+
"special": true
|
1274 |
+
},
|
1275 |
+
"128159": {
|
1276 |
+
"content": "<|reserved_special_token_154|>",
|
1277 |
+
"lstrip": false,
|
1278 |
+
"normalized": false,
|
1279 |
+
"rstrip": false,
|
1280 |
+
"single_word": false,
|
1281 |
+
"special": true
|
1282 |
+
},
|
1283 |
+
"128160": {
|
1284 |
+
"content": "<|reserved_special_token_155|>",
|
1285 |
+
"lstrip": false,
|
1286 |
+
"normalized": false,
|
1287 |
+
"rstrip": false,
|
1288 |
+
"single_word": false,
|
1289 |
+
"special": true
|
1290 |
+
},
|
1291 |
+
"128161": {
|
1292 |
+
"content": "<|reserved_special_token_156|>",
|
1293 |
+
"lstrip": false,
|
1294 |
+
"normalized": false,
|
1295 |
+
"rstrip": false,
|
1296 |
+
"single_word": false,
|
1297 |
+
"special": true
|
1298 |
+
},
|
1299 |
+
"128162": {
|
1300 |
+
"content": "<|reserved_special_token_157|>",
|
1301 |
+
"lstrip": false,
|
1302 |
+
"normalized": false,
|
1303 |
+
"rstrip": false,
|
1304 |
+
"single_word": false,
|
1305 |
+
"special": true
|
1306 |
+
},
|
1307 |
+
"128163": {
|
1308 |
+
"content": "<|reserved_special_token_158|>",
|
1309 |
+
"lstrip": false,
|
1310 |
+
"normalized": false,
|
1311 |
+
"rstrip": false,
|
1312 |
+
"single_word": false,
|
1313 |
+
"special": true
|
1314 |
+
},
|
1315 |
+
"128164": {
|
1316 |
+
"content": "<|reserved_special_token_159|>",
|
1317 |
+
"lstrip": false,
|
1318 |
+
"normalized": false,
|
1319 |
+
"rstrip": false,
|
1320 |
+
"single_word": false,
|
1321 |
+
"special": true
|
1322 |
+
},
|
1323 |
+
"128165": {
|
1324 |
+
"content": "<|reserved_special_token_160|>",
|
1325 |
+
"lstrip": false,
|
1326 |
+
"normalized": false,
|
1327 |
+
"rstrip": false,
|
1328 |
+
"single_word": false,
|
1329 |
+
"special": true
|
1330 |
+
},
|
1331 |
+
"128166": {
|
1332 |
+
"content": "<|reserved_special_token_161|>",
|
1333 |
+
"lstrip": false,
|
1334 |
+
"normalized": false,
|
1335 |
+
"rstrip": false,
|
1336 |
+
"single_word": false,
|
1337 |
+
"special": true
|
1338 |
+
},
|
1339 |
+
"128167": {
|
1340 |
+
"content": "<|reserved_special_token_162|>",
|
1341 |
+
"lstrip": false,
|
1342 |
+
"normalized": false,
|
1343 |
+
"rstrip": false,
|
1344 |
+
"single_word": false,
|
1345 |
+
"special": true
|
1346 |
+
},
|
1347 |
+
"128168": {
|
1348 |
+
"content": "<|reserved_special_token_163|>",
|
1349 |
+
"lstrip": false,
|
1350 |
+
"normalized": false,
|
1351 |
+
"rstrip": false,
|
1352 |
+
"single_word": false,
|
1353 |
+
"special": true
|
1354 |
+
},
|
1355 |
+
"128169": {
|
1356 |
+
"content": "<|reserved_special_token_164|>",
|
1357 |
+
"lstrip": false,
|
1358 |
+
"normalized": false,
|
1359 |
+
"rstrip": false,
|
1360 |
+
"single_word": false,
|
1361 |
+
"special": true
|
1362 |
+
},
|
1363 |
+
"128170": {
|
1364 |
+
"content": "<|reserved_special_token_165|>",
|
1365 |
+
"lstrip": false,
|
1366 |
+
"normalized": false,
|
1367 |
+
"rstrip": false,
|
1368 |
+
"single_word": false,
|
1369 |
+
"special": true
|
1370 |
+
},
|
1371 |
+
"128171": {
|
1372 |
+
"content": "<|reserved_special_token_166|>",
|
1373 |
+
"lstrip": false,
|
1374 |
+
"normalized": false,
|
1375 |
+
"rstrip": false,
|
1376 |
+
"single_word": false,
|
1377 |
+
"special": true
|
1378 |
+
},
|
1379 |
+
"128172": {
|
1380 |
+
"content": "<|reserved_special_token_167|>",
|
1381 |
+
"lstrip": false,
|
1382 |
+
"normalized": false,
|
1383 |
+
"rstrip": false,
|
1384 |
+
"single_word": false,
|
1385 |
+
"special": true
|
1386 |
+
},
|
1387 |
+
"128173": {
|
1388 |
+
"content": "<|reserved_special_token_168|>",
|
1389 |
+
"lstrip": false,
|
1390 |
+
"normalized": false,
|
1391 |
+
"rstrip": false,
|
1392 |
+
"single_word": false,
|
1393 |
+
"special": true
|
1394 |
+
},
|
1395 |
+
"128174": {
|
1396 |
+
"content": "<|reserved_special_token_169|>",
|
1397 |
+
"lstrip": false,
|
1398 |
+
"normalized": false,
|
1399 |
+
"rstrip": false,
|
1400 |
+
"single_word": false,
|
1401 |
+
"special": true
|
1402 |
+
},
|
1403 |
+
"128175": {
|
1404 |
+
"content": "<|reserved_special_token_170|>",
|
1405 |
+
"lstrip": false,
|
1406 |
+
"normalized": false,
|
1407 |
+
"rstrip": false,
|
1408 |
+
"single_word": false,
|
1409 |
+
"special": true
|
1410 |
+
},
|
1411 |
+
"128176": {
|
1412 |
+
"content": "<|reserved_special_token_171|>",
|
1413 |
+
"lstrip": false,
|
1414 |
+
"normalized": false,
|
1415 |
+
"rstrip": false,
|
1416 |
+
"single_word": false,
|
1417 |
+
"special": true
|
1418 |
+
},
|
1419 |
+
"128177": {
|
1420 |
+
"content": "<|reserved_special_token_172|>",
|
1421 |
+
"lstrip": false,
|
1422 |
+
"normalized": false,
|
1423 |
+
"rstrip": false,
|
1424 |
+
"single_word": false,
|
1425 |
+
"special": true
|
1426 |
+
},
|
1427 |
+
"128178": {
|
1428 |
+
"content": "<|reserved_special_token_173|>",
|
1429 |
+
"lstrip": false,
|
1430 |
+
"normalized": false,
|
1431 |
+
"rstrip": false,
|
1432 |
+
"single_word": false,
|
1433 |
+
"special": true
|
1434 |
+
},
|
1435 |
+
"128179": {
|
1436 |
+
"content": "<|reserved_special_token_174|>",
|
1437 |
+
"lstrip": false,
|
1438 |
+
"normalized": false,
|
1439 |
+
"rstrip": false,
|
1440 |
+
"single_word": false,
|
1441 |
+
"special": true
|
1442 |
+
},
|
1443 |
+
"128180": {
|
1444 |
+
"content": "<|reserved_special_token_175|>",
|
1445 |
+
"lstrip": false,
|
1446 |
+
"normalized": false,
|
1447 |
+
"rstrip": false,
|
1448 |
+
"single_word": false,
|
1449 |
+
"special": true
|
1450 |
+
},
|
1451 |
+
"128181": {
|
1452 |
+
"content": "<|reserved_special_token_176|>",
|
1453 |
+
"lstrip": false,
|
1454 |
+
"normalized": false,
|
1455 |
+
"rstrip": false,
|
1456 |
+
"single_word": false,
|
1457 |
+
"special": true
|
1458 |
+
},
|
1459 |
+
"128182": {
|
1460 |
+
"content": "<|reserved_special_token_177|>",
|
1461 |
+
"lstrip": false,
|
1462 |
+
"normalized": false,
|
1463 |
+
"rstrip": false,
|
1464 |
+
"single_word": false,
|
1465 |
+
"special": true
|
1466 |
+
},
|
1467 |
+
"128183": {
|
1468 |
+
"content": "<|reserved_special_token_178|>",
|
1469 |
+
"lstrip": false,
|
1470 |
+
"normalized": false,
|
1471 |
+
"rstrip": false,
|
1472 |
+
"single_word": false,
|
1473 |
+
"special": true
|
1474 |
+
},
|
1475 |
+
"128184": {
|
1476 |
+
"content": "<|reserved_special_token_179|>",
|
1477 |
+
"lstrip": false,
|
1478 |
+
"normalized": false,
|
1479 |
+
"rstrip": false,
|
1480 |
+
"single_word": false,
|
1481 |
+
"special": true
|
1482 |
+
},
|
1483 |
+
"128185": {
|
1484 |
+
"content": "<|reserved_special_token_180|>",
|
1485 |
+
"lstrip": false,
|
1486 |
+
"normalized": false,
|
1487 |
+
"rstrip": false,
|
1488 |
+
"single_word": false,
|
1489 |
+
"special": true
|
1490 |
+
},
|
1491 |
+
"128186": {
|
1492 |
+
"content": "<|reserved_special_token_181|>",
|
1493 |
+
"lstrip": false,
|
1494 |
+
"normalized": false,
|
1495 |
+
"rstrip": false,
|
1496 |
+
"single_word": false,
|
1497 |
+
"special": true
|
1498 |
+
},
|
1499 |
+
"128187": {
|
1500 |
+
"content": "<|reserved_special_token_182|>",
|
1501 |
+
"lstrip": false,
|
1502 |
+
"normalized": false,
|
1503 |
+
"rstrip": false,
|
1504 |
+
"single_word": false,
|
1505 |
+
"special": true
|
1506 |
+
},
|
1507 |
+
"128188": {
|
1508 |
+
"content": "<|reserved_special_token_183|>",
|
1509 |
+
"lstrip": false,
|
1510 |
+
"normalized": false,
|
1511 |
+
"rstrip": false,
|
1512 |
+
"single_word": false,
|
1513 |
+
"special": true
|
1514 |
+
},
|
1515 |
+
"128189": {
|
1516 |
+
"content": "<|reserved_special_token_184|>",
|
1517 |
+
"lstrip": false,
|
1518 |
+
"normalized": false,
|
1519 |
+
"rstrip": false,
|
1520 |
+
"single_word": false,
|
1521 |
+
"special": true
|
1522 |
+
},
|
1523 |
+
"128190": {
|
1524 |
+
"content": "<|reserved_special_token_185|>",
|
1525 |
+
"lstrip": false,
|
1526 |
+
"normalized": false,
|
1527 |
+
"rstrip": false,
|
1528 |
+
"single_word": false,
|
1529 |
+
"special": true
|
1530 |
+
},
|
1531 |
+
"128191": {
|
1532 |
+
"content": "<|reserved_special_token_186|>",
|
1533 |
+
"lstrip": false,
|
1534 |
+
"normalized": false,
|
1535 |
+
"rstrip": false,
|
1536 |
+
"single_word": false,
|
1537 |
+
"special": true
|
1538 |
+
},
|
1539 |
+
"128192": {
|
1540 |
+
"content": "<|reserved_special_token_187|>",
|
1541 |
+
"lstrip": false,
|
1542 |
+
"normalized": false,
|
1543 |
+
"rstrip": false,
|
1544 |
+
"single_word": false,
|
1545 |
+
"special": true
|
1546 |
+
},
|
1547 |
+
"128193": {
|
1548 |
+
"content": "<|reserved_special_token_188|>",
|
1549 |
+
"lstrip": false,
|
1550 |
+
"normalized": false,
|
1551 |
+
"rstrip": false,
|
1552 |
+
"single_word": false,
|
1553 |
+
"special": true
|
1554 |
+
},
|
1555 |
+
"128194": {
|
1556 |
+
"content": "<|reserved_special_token_189|>",
|
1557 |
+
"lstrip": false,
|
1558 |
+
"normalized": false,
|
1559 |
+
"rstrip": false,
|
1560 |
+
"single_word": false,
|
1561 |
+
"special": true
|
1562 |
+
},
|
1563 |
+
"128195": {
|
1564 |
+
"content": "<|reserved_special_token_190|>",
|
1565 |
+
"lstrip": false,
|
1566 |
+
"normalized": false,
|
1567 |
+
"rstrip": false,
|
1568 |
+
"single_word": false,
|
1569 |
+
"special": true
|
1570 |
+
},
|
1571 |
+
"128196": {
|
1572 |
+
"content": "<|reserved_special_token_191|>",
|
1573 |
+
"lstrip": false,
|
1574 |
+
"normalized": false,
|
1575 |
+
"rstrip": false,
|
1576 |
+
"single_word": false,
|
1577 |
+
"special": true
|
1578 |
+
},
|
1579 |
+
"128197": {
|
1580 |
+
"content": "<|reserved_special_token_192|>",
|
1581 |
+
"lstrip": false,
|
1582 |
+
"normalized": false,
|
1583 |
+
"rstrip": false,
|
1584 |
+
"single_word": false,
|
1585 |
+
"special": true
|
1586 |
+
},
|
1587 |
+
"128198": {
|
1588 |
+
"content": "<|reserved_special_token_193|>",
|
1589 |
+
"lstrip": false,
|
1590 |
+
"normalized": false,
|
1591 |
+
"rstrip": false,
|
1592 |
+
"single_word": false,
|
1593 |
+
"special": true
|
1594 |
+
},
|
1595 |
+
"128199": {
|
1596 |
+
"content": "<|reserved_special_token_194|>",
|
1597 |
+
"lstrip": false,
|
1598 |
+
"normalized": false,
|
1599 |
+
"rstrip": false,
|
1600 |
+
"single_word": false,
|
1601 |
+
"special": true
|
1602 |
+
},
|
1603 |
+
"128200": {
|
1604 |
+
"content": "<|reserved_special_token_195|>",
|
1605 |
+
"lstrip": false,
|
1606 |
+
"normalized": false,
|
1607 |
+
"rstrip": false,
|
1608 |
+
"single_word": false,
|
1609 |
+
"special": true
|
1610 |
+
},
|
1611 |
+
"128201": {
|
1612 |
+
"content": "<|reserved_special_token_196|>",
|
1613 |
+
"lstrip": false,
|
1614 |
+
"normalized": false,
|
1615 |
+
"rstrip": false,
|
1616 |
+
"single_word": false,
|
1617 |
+
"special": true
|
1618 |
+
},
|
1619 |
+
"128202": {
|
1620 |
+
"content": "<|reserved_special_token_197|>",
|
1621 |
+
"lstrip": false,
|
1622 |
+
"normalized": false,
|
1623 |
+
"rstrip": false,
|
1624 |
+
"single_word": false,
|
1625 |
+
"special": true
|
1626 |
+
},
|
1627 |
+
"128203": {
|
1628 |
+
"content": "<|reserved_special_token_198|>",
|
1629 |
+
"lstrip": false,
|
1630 |
+
"normalized": false,
|
1631 |
+
"rstrip": false,
|
1632 |
+
"single_word": false,
|
1633 |
+
"special": true
|
1634 |
+
},
|
1635 |
+
"128204": {
|
1636 |
+
"content": "<|reserved_special_token_199|>",
|
1637 |
+
"lstrip": false,
|
1638 |
+
"normalized": false,
|
1639 |
+
"rstrip": false,
|
1640 |
+
"single_word": false,
|
1641 |
+
"special": true
|
1642 |
+
},
|
1643 |
+
"128205": {
|
1644 |
+
"content": "<|reserved_special_token_200|>",
|
1645 |
+
"lstrip": false,
|
1646 |
+
"normalized": false,
|
1647 |
+
"rstrip": false,
|
1648 |
+
"single_word": false,
|
1649 |
+
"special": true
|
1650 |
+
},
|
1651 |
+
"128206": {
|
1652 |
+
"content": "<|reserved_special_token_201|>",
|
1653 |
+
"lstrip": false,
|
1654 |
+
"normalized": false,
|
1655 |
+
"rstrip": false,
|
1656 |
+
"single_word": false,
|
1657 |
+
"special": true
|
1658 |
+
},
|
1659 |
+
"128207": {
|
1660 |
+
"content": "<|reserved_special_token_202|>",
|
1661 |
+
"lstrip": false,
|
1662 |
+
"normalized": false,
|
1663 |
+
"rstrip": false,
|
1664 |
+
"single_word": false,
|
1665 |
+
"special": true
|
1666 |
+
},
|
1667 |
+
"128208": {
|
1668 |
+
"content": "<|reserved_special_token_203|>",
|
1669 |
+
"lstrip": false,
|
1670 |
+
"normalized": false,
|
1671 |
+
"rstrip": false,
|
1672 |
+
"single_word": false,
|
1673 |
+
"special": true
|
1674 |
+
},
|
1675 |
+
"128209": {
|
1676 |
+
"content": "<|reserved_special_token_204|>",
|
1677 |
+
"lstrip": false,
|
1678 |
+
"normalized": false,
|
1679 |
+
"rstrip": false,
|
1680 |
+
"single_word": false,
|
1681 |
+
"special": true
|
1682 |
+
},
|
1683 |
+
"128210": {
|
1684 |
+
"content": "<|reserved_special_token_205|>",
|
1685 |
+
"lstrip": false,
|
1686 |
+
"normalized": false,
|
1687 |
+
"rstrip": false,
|
1688 |
+
"single_word": false,
|
1689 |
+
"special": true
|
1690 |
+
},
|
1691 |
+
"128211": {
|
1692 |
+
"content": "<|reserved_special_token_206|>",
|
1693 |
+
"lstrip": false,
|
1694 |
+
"normalized": false,
|
1695 |
+
"rstrip": false,
|
1696 |
+
"single_word": false,
|
1697 |
+
"special": true
|
1698 |
+
},
|
1699 |
+
"128212": {
|
1700 |
+
"content": "<|reserved_special_token_207|>",
|
1701 |
+
"lstrip": false,
|
1702 |
+
"normalized": false,
|
1703 |
+
"rstrip": false,
|
1704 |
+
"single_word": false,
|
1705 |
+
"special": true
|
1706 |
+
},
|
1707 |
+
"128213": {
|
1708 |
+
"content": "<|reserved_special_token_208|>",
|
1709 |
+
"lstrip": false,
|
1710 |
+
"normalized": false,
|
1711 |
+
"rstrip": false,
|
1712 |
+
"single_word": false,
|
1713 |
+
"special": true
|
1714 |
+
},
|
1715 |
+
"128214": {
|
1716 |
+
"content": "<|reserved_special_token_209|>",
|
1717 |
+
"lstrip": false,
|
1718 |
+
"normalized": false,
|
1719 |
+
"rstrip": false,
|
1720 |
+
"single_word": false,
|
1721 |
+
"special": true
|
1722 |
+
},
|
1723 |
+
"128215": {
|
1724 |
+
"content": "<|reserved_special_token_210|>",
|
1725 |
+
"lstrip": false,
|
1726 |
+
"normalized": false,
|
1727 |
+
"rstrip": false,
|
1728 |
+
"single_word": false,
|
1729 |
+
"special": true
|
1730 |
+
},
|
1731 |
+
"128216": {
|
1732 |
+
"content": "<|reserved_special_token_211|>",
|
1733 |
+
"lstrip": false,
|
1734 |
+
"normalized": false,
|
1735 |
+
"rstrip": false,
|
1736 |
+
"single_word": false,
|
1737 |
+
"special": true
|
1738 |
+
},
|
1739 |
+
"128217": {
|
1740 |
+
"content": "<|reserved_special_token_212|>",
|
1741 |
+
"lstrip": false,
|
1742 |
+
"normalized": false,
|
1743 |
+
"rstrip": false,
|
1744 |
+
"single_word": false,
|
1745 |
+
"special": true
|
1746 |
+
},
|
1747 |
+
"128218": {
|
1748 |
+
"content": "<|reserved_special_token_213|>",
|
1749 |
+
"lstrip": false,
|
1750 |
+
"normalized": false,
|
1751 |
+
"rstrip": false,
|
1752 |
+
"single_word": false,
|
1753 |
+
"special": true
|
1754 |
+
},
|
1755 |
+
"128219": {
|
1756 |
+
"content": "<|reserved_special_token_214|>",
|
1757 |
+
"lstrip": false,
|
1758 |
+
"normalized": false,
|
1759 |
+
"rstrip": false,
|
1760 |
+
"single_word": false,
|
1761 |
+
"special": true
|
1762 |
+
},
|
1763 |
+
"128220": {
|
1764 |
+
"content": "<|reserved_special_token_215|>",
|
1765 |
+
"lstrip": false,
|
1766 |
+
"normalized": false,
|
1767 |
+
"rstrip": false,
|
1768 |
+
"single_word": false,
|
1769 |
+
"special": true
|
1770 |
+
},
|
1771 |
+
"128221": {
|
1772 |
+
"content": "<|reserved_special_token_216|>",
|
1773 |
+
"lstrip": false,
|
1774 |
+
"normalized": false,
|
1775 |
+
"rstrip": false,
|
1776 |
+
"single_word": false,
|
1777 |
+
"special": true
|
1778 |
+
},
|
1779 |
+
"128222": {
|
1780 |
+
"content": "<|reserved_special_token_217|>",
|
1781 |
+
"lstrip": false,
|
1782 |
+
"normalized": false,
|
1783 |
+
"rstrip": false,
|
1784 |
+
"single_word": false,
|
1785 |
+
"special": true
|
1786 |
+
},
|
1787 |
+
"128223": {
|
1788 |
+
"content": "<|reserved_special_token_218|>",
|
1789 |
+
"lstrip": false,
|
1790 |
+
"normalized": false,
|
1791 |
+
"rstrip": false,
|
1792 |
+
"single_word": false,
|
1793 |
+
"special": true
|
1794 |
+
},
|
1795 |
+
"128224": {
|
1796 |
+
"content": "<|reserved_special_token_219|>",
|
1797 |
+
"lstrip": false,
|
1798 |
+
"normalized": false,
|
1799 |
+
"rstrip": false,
|
1800 |
+
"single_word": false,
|
1801 |
+
"special": true
|
1802 |
+
},
|
1803 |
+
"128225": {
|
1804 |
+
"content": "<|reserved_special_token_220|>",
|
1805 |
+
"lstrip": false,
|
1806 |
+
"normalized": false,
|
1807 |
+
"rstrip": false,
|
1808 |
+
"single_word": false,
|
1809 |
+
"special": true
|
1810 |
+
},
|
1811 |
+
"128226": {
|
1812 |
+
"content": "<|reserved_special_token_221|>",
|
1813 |
+
"lstrip": false,
|
1814 |
+
"normalized": false,
|
1815 |
+
"rstrip": false,
|
1816 |
+
"single_word": false,
|
1817 |
+
"special": true
|
1818 |
+
},
|
1819 |
+
"128227": {
|
1820 |
+
"content": "<|reserved_special_token_222|>",
|
1821 |
+
"lstrip": false,
|
1822 |
+
"normalized": false,
|
1823 |
+
"rstrip": false,
|
1824 |
+
"single_word": false,
|
1825 |
+
"special": true
|
1826 |
+
},
|
1827 |
+
"128228": {
|
1828 |
+
"content": "<|reserved_special_token_223|>",
|
1829 |
+
"lstrip": false,
|
1830 |
+
"normalized": false,
|
1831 |
+
"rstrip": false,
|
1832 |
+
"single_word": false,
|
1833 |
+
"special": true
|
1834 |
+
},
|
1835 |
+
"128229": {
|
1836 |
+
"content": "<|reserved_special_token_224|>",
|
1837 |
+
"lstrip": false,
|
1838 |
+
"normalized": false,
|
1839 |
+
"rstrip": false,
|
1840 |
+
"single_word": false,
|
1841 |
+
"special": true
|
1842 |
+
},
|
1843 |
+
"128230": {
|
1844 |
+
"content": "<|reserved_special_token_225|>",
|
1845 |
+
"lstrip": false,
|
1846 |
+
"normalized": false,
|
1847 |
+
"rstrip": false,
|
1848 |
+
"single_word": false,
|
1849 |
+
"special": true
|
1850 |
+
},
|
1851 |
+
"128231": {
|
1852 |
+
"content": "<|reserved_special_token_226|>",
|
1853 |
+
"lstrip": false,
|
1854 |
+
"normalized": false,
|
1855 |
+
"rstrip": false,
|
1856 |
+
"single_word": false,
|
1857 |
+
"special": true
|
1858 |
+
},
|
1859 |
+
"128232": {
|
1860 |
+
"content": "<|reserved_special_token_227|>",
|
1861 |
+
"lstrip": false,
|
1862 |
+
"normalized": false,
|
1863 |
+
"rstrip": false,
|
1864 |
+
"single_word": false,
|
1865 |
+
"special": true
|
1866 |
+
},
|
1867 |
+
"128233": {
|
1868 |
+
"content": "<|reserved_special_token_228|>",
|
1869 |
+
"lstrip": false,
|
1870 |
+
"normalized": false,
|
1871 |
+
"rstrip": false,
|
1872 |
+
"single_word": false,
|
1873 |
+
"special": true
|
1874 |
+
},
|
1875 |
+
"128234": {
|
1876 |
+
"content": "<|reserved_special_token_229|>",
|
1877 |
+
"lstrip": false,
|
1878 |
+
"normalized": false,
|
1879 |
+
"rstrip": false,
|
1880 |
+
"single_word": false,
|
1881 |
+
"special": true
|
1882 |
+
},
|
1883 |
+
"128235": {
|
1884 |
+
"content": "<|reserved_special_token_230|>",
|
1885 |
+
"lstrip": false,
|
1886 |
+
"normalized": false,
|
1887 |
+
"rstrip": false,
|
1888 |
+
"single_word": false,
|
1889 |
+
"special": true
|
1890 |
+
},
|
1891 |
+
"128236": {
|
1892 |
+
"content": "<|reserved_special_token_231|>",
|
1893 |
+
"lstrip": false,
|
1894 |
+
"normalized": false,
|
1895 |
+
"rstrip": false,
|
1896 |
+
"single_word": false,
|
1897 |
+
"special": true
|
1898 |
+
},
|
1899 |
+
"128237": {
|
1900 |
+
"content": "<|reserved_special_token_232|>",
|
1901 |
+
"lstrip": false,
|
1902 |
+
"normalized": false,
|
1903 |
+
"rstrip": false,
|
1904 |
+
"single_word": false,
|
1905 |
+
"special": true
|
1906 |
+
},
|
1907 |
+
"128238": {
|
1908 |
+
"content": "<|reserved_special_token_233|>",
|
1909 |
+
"lstrip": false,
|
1910 |
+
"normalized": false,
|
1911 |
+
"rstrip": false,
|
1912 |
+
"single_word": false,
|
1913 |
+
"special": true
|
1914 |
+
},
|
1915 |
+
"128239": {
|
1916 |
+
"content": "<|reserved_special_token_234|>",
|
1917 |
+
"lstrip": false,
|
1918 |
+
"normalized": false,
|
1919 |
+
"rstrip": false,
|
1920 |
+
"single_word": false,
|
1921 |
+
"special": true
|
1922 |
+
},
|
1923 |
+
"128240": {
|
1924 |
+
"content": "<|reserved_special_token_235|>",
|
1925 |
+
"lstrip": false,
|
1926 |
+
"normalized": false,
|
1927 |
+
"rstrip": false,
|
1928 |
+
"single_word": false,
|
1929 |
+
"special": true
|
1930 |
+
},
|
1931 |
+
"128241": {
|
1932 |
+
"content": "<|reserved_special_token_236|>",
|
1933 |
+
"lstrip": false,
|
1934 |
+
"normalized": false,
|
1935 |
+
"rstrip": false,
|
1936 |
+
"single_word": false,
|
1937 |
+
"special": true
|
1938 |
+
},
|
1939 |
+
"128242": {
|
1940 |
+
"content": "<|reserved_special_token_237|>",
|
1941 |
+
"lstrip": false,
|
1942 |
+
"normalized": false,
|
1943 |
+
"rstrip": false,
|
1944 |
+
"single_word": false,
|
1945 |
+
"special": true
|
1946 |
+
},
|
1947 |
+
"128243": {
|
1948 |
+
"content": "<|reserved_special_token_238|>",
|
1949 |
+
"lstrip": false,
|
1950 |
+
"normalized": false,
|
1951 |
+
"rstrip": false,
|
1952 |
+
"single_word": false,
|
1953 |
+
"special": true
|
1954 |
+
},
|
1955 |
+
"128244": {
|
1956 |
+
"content": "<|reserved_special_token_239|>",
|
1957 |
+
"lstrip": false,
|
1958 |
+
"normalized": false,
|
1959 |
+
"rstrip": false,
|
1960 |
+
"single_word": false,
|
1961 |
+
"special": true
|
1962 |
+
},
|
1963 |
+
"128245": {
|
1964 |
+
"content": "<|reserved_special_token_240|>",
|
1965 |
+
"lstrip": false,
|
1966 |
+
"normalized": false,
|
1967 |
+
"rstrip": false,
|
1968 |
+
"single_word": false,
|
1969 |
+
"special": true
|
1970 |
+
},
|
1971 |
+
"128246": {
|
1972 |
+
"content": "<|reserved_special_token_241|>",
|
1973 |
+
"lstrip": false,
|
1974 |
+
"normalized": false,
|
1975 |
+
"rstrip": false,
|
1976 |
+
"single_word": false,
|
1977 |
+
"special": true
|
1978 |
+
},
|
1979 |
+
"128247": {
|
1980 |
+
"content": "<|reserved_special_token_242|>",
|
1981 |
+
"lstrip": false,
|
1982 |
+
"normalized": false,
|
1983 |
+
"rstrip": false,
|
1984 |
+
"single_word": false,
|
1985 |
+
"special": true
|
1986 |
+
},
|
1987 |
+
"128248": {
|
1988 |
+
"content": "<|reserved_special_token_243|>",
|
1989 |
+
"lstrip": false,
|
1990 |
+
"normalized": false,
|
1991 |
+
"rstrip": false,
|
1992 |
+
"single_word": false,
|
1993 |
+
"special": true
|
1994 |
+
},
|
1995 |
+
"128249": {
|
1996 |
+
"content": "<|reserved_special_token_244|>",
|
1997 |
+
"lstrip": false,
|
1998 |
+
"normalized": false,
|
1999 |
+
"rstrip": false,
|
2000 |
+
"single_word": false,
|
2001 |
+
"special": true
|
2002 |
+
},
|
2003 |
+
"128250": {
|
2004 |
+
"content": "<|reserved_special_token_245|>",
|
2005 |
+
"lstrip": false,
|
2006 |
+
"normalized": false,
|
2007 |
+
"rstrip": false,
|
2008 |
+
"single_word": false,
|
2009 |
+
"special": true
|
2010 |
+
},
|
2011 |
+
"128251": {
|
2012 |
+
"content": "<|reserved_special_token_246|>",
|
2013 |
+
"lstrip": false,
|
2014 |
+
"normalized": false,
|
2015 |
+
"rstrip": false,
|
2016 |
+
"single_word": false,
|
2017 |
+
"special": true
|
2018 |
+
},
|
2019 |
+
"128252": {
|
2020 |
+
"content": "<|reserved_special_token_247|>",
|
2021 |
+
"lstrip": false,
|
2022 |
+
"normalized": false,
|
2023 |
+
"rstrip": false,
|
2024 |
+
"single_word": false,
|
2025 |
+
"special": true
|
2026 |
+
},
|
2027 |
+
"128253": {
|
2028 |
+
"content": "<|reserved_special_token_248|>",
|
2029 |
+
"lstrip": false,
|
2030 |
+
"normalized": false,
|
2031 |
+
"rstrip": false,
|
2032 |
+
"single_word": false,
|
2033 |
+
"special": true
|
2034 |
+
},
|
2035 |
+
"128254": {
|
2036 |
+
"content": "<|reserved_special_token_249|>",
|
2037 |
+
"lstrip": false,
|
2038 |
+
"normalized": false,
|
2039 |
+
"rstrip": false,
|
2040 |
+
"single_word": false,
|
2041 |
+
"special": true
|
2042 |
+
},
|
2043 |
+
"128255": {
|
2044 |
+
"content": "<|reserved_special_token_250|>",
|
2045 |
+
"lstrip": false,
|
2046 |
+
"normalized": false,
|
2047 |
+
"rstrip": false,
|
2048 |
+
"single_word": false,
|
2049 |
+
"special": true
|
2050 |
+
}
|
2051 |
+
},
|
2052 |
+
"bos_token": "<|begin_of_text|>",
|
2053 |
+
"clean_up_tokenization_spaces": true,
|
2054 |
+
"eos_token": "<|end_of_text|>",
|
2055 |
+
"model_input_names": [
|
2056 |
+
"input_ids",
|
2057 |
+
"attention_mask"
|
2058 |
+
],
|
2059 |
+
"model_max_length": 1000000000000000019884624838656,
|
2060 |
+
"pad_token": "<|end_of_text|>",
|
2061 |
+
"tokenizer_class": "PreTrainedTokenizerFast"
|
2062 |
+
}
|
trainer_state.json
ADDED
@@ -0,0 +1,1785 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"best_metric": null,
|
3 |
+
"best_model_checkpoint": null,
|
4 |
+
"epoch": 0.3333613374779467,
|
5 |
+
"eval_steps": 248,
|
6 |
+
"global_step": 248,
|
7 |
+
"is_hyper_param_search": false,
|
8 |
+
"is_local_process_zero": true,
|
9 |
+
"is_world_process_zero": true,
|
10 |
+
"log_history": [
|
11 |
+
{
|
12 |
+
"epoch": 0.0013441989414433337,
|
13 |
+
"grad_norm": 9.1875,
|
14 |
+
"learning_rate": 1.0000000000000002e-06,
|
15 |
+
"loss": 1.0378,
|
16 |
+
"step": 1
|
17 |
+
},
|
18 |
+
{
|
19 |
+
"epoch": 0.0013441989414433337,
|
20 |
+
"eval_loss": 3.0436718463897705,
|
21 |
+
"eval_runtime": 5734.1832,
|
22 |
+
"eval_samples_per_second": 3.861,
|
23 |
+
"eval_steps_per_second": 0.483,
|
24 |
+
"step": 1
|
25 |
+
},
|
26 |
+
{
|
27 |
+
"epoch": 0.0026883978828866673,
|
28 |
+
"grad_norm": 10.3125,
|
29 |
+
"learning_rate": 2.0000000000000003e-06,
|
30 |
+
"loss": 1.1143,
|
31 |
+
"step": 2
|
32 |
+
},
|
33 |
+
{
|
34 |
+
"epoch": 0.004032596824330001,
|
35 |
+
"grad_norm": 8.75,
|
36 |
+
"learning_rate": 3e-06,
|
37 |
+
"loss": 1.0933,
|
38 |
+
"step": 3
|
39 |
+
},
|
40 |
+
{
|
41 |
+
"epoch": 0.005376795765773335,
|
42 |
+
"grad_norm": 6.40625,
|
43 |
+
"learning_rate": 4.000000000000001e-06,
|
44 |
+
"loss": 1.1014,
|
45 |
+
"step": 4
|
46 |
+
},
|
47 |
+
{
|
48 |
+
"epoch": 0.006720994707216668,
|
49 |
+
"grad_norm": 5.34375,
|
50 |
+
"learning_rate": 5e-06,
|
51 |
+
"loss": 1.0504,
|
52 |
+
"step": 5
|
53 |
+
},
|
54 |
+
{
|
55 |
+
"epoch": 0.008065193648660002,
|
56 |
+
"grad_norm": 3.453125,
|
57 |
+
"learning_rate": 6e-06,
|
58 |
+
"loss": 1.0031,
|
59 |
+
"step": 6
|
60 |
+
},
|
61 |
+
{
|
62 |
+
"epoch": 0.009409392590103335,
|
63 |
+
"grad_norm": 3.0,
|
64 |
+
"learning_rate": 7e-06,
|
65 |
+
"loss": 1.0001,
|
66 |
+
"step": 7
|
67 |
+
},
|
68 |
+
{
|
69 |
+
"epoch": 0.01075359153154667,
|
70 |
+
"grad_norm": 2.640625,
|
71 |
+
"learning_rate": 8.000000000000001e-06,
|
72 |
+
"loss": 1.0196,
|
73 |
+
"step": 8
|
74 |
+
},
|
75 |
+
{
|
76 |
+
"epoch": 0.012097790472990002,
|
77 |
+
"grad_norm": 2.21875,
|
78 |
+
"learning_rate": 9e-06,
|
79 |
+
"loss": 0.9207,
|
80 |
+
"step": 9
|
81 |
+
},
|
82 |
+
{
|
83 |
+
"epoch": 0.013441989414433336,
|
84 |
+
"grad_norm": 1.859375,
|
85 |
+
"learning_rate": 1e-05,
|
86 |
+
"loss": 0.9502,
|
87 |
+
"step": 10
|
88 |
+
},
|
89 |
+
{
|
90 |
+
"epoch": 0.01478618835587667,
|
91 |
+
"grad_norm": 2.34375,
|
92 |
+
"learning_rate": 9.999954076906038e-06,
|
93 |
+
"loss": 0.9674,
|
94 |
+
"step": 11
|
95 |
+
},
|
96 |
+
{
|
97 |
+
"epoch": 0.016130387297320005,
|
98 |
+
"grad_norm": 1.6953125,
|
99 |
+
"learning_rate": 9.99981630846772e-06,
|
100 |
+
"loss": 0.8617,
|
101 |
+
"step": 12
|
102 |
+
},
|
103 |
+
{
|
104 |
+
"epoch": 0.017474586238763336,
|
105 |
+
"grad_norm": 1.8046875,
|
106 |
+
"learning_rate": 9.999586697215748e-06,
|
107 |
+
"loss": 0.9222,
|
108 |
+
"step": 13
|
109 |
+
},
|
110 |
+
{
|
111 |
+
"epoch": 0.01881878518020667,
|
112 |
+
"grad_norm": 1.6484375,
|
113 |
+
"learning_rate": 9.999265247367909e-06,
|
114 |
+
"loss": 0.884,
|
115 |
+
"step": 14
|
116 |
+
},
|
117 |
+
{
|
118 |
+
"epoch": 0.020162984121650004,
|
119 |
+
"grad_norm": 1.7578125,
|
120 |
+
"learning_rate": 9.998851964828987e-06,
|
121 |
+
"loss": 0.9086,
|
122 |
+
"step": 15
|
123 |
+
},
|
124 |
+
{
|
125 |
+
"epoch": 0.02150718306309334,
|
126 |
+
"grad_norm": 1.6015625,
|
127 |
+
"learning_rate": 9.99834685719067e-06,
|
128 |
+
"loss": 0.8723,
|
129 |
+
"step": 16
|
130 |
+
},
|
131 |
+
{
|
132 |
+
"epoch": 0.022851382004536673,
|
133 |
+
"grad_norm": 1.7109375,
|
134 |
+
"learning_rate": 9.997749933731397e-06,
|
135 |
+
"loss": 0.8678,
|
136 |
+
"step": 17
|
137 |
+
},
|
138 |
+
{
|
139 |
+
"epoch": 0.024195580945980004,
|
140 |
+
"grad_norm": 1.5625,
|
141 |
+
"learning_rate": 9.997061205416203e-06,
|
142 |
+
"loss": 0.8497,
|
143 |
+
"step": 18
|
144 |
+
},
|
145 |
+
{
|
146 |
+
"epoch": 0.025539779887423338,
|
147 |
+
"grad_norm": 1.515625,
|
148 |
+
"learning_rate": 9.996280684896496e-06,
|
149 |
+
"loss": 0.8475,
|
150 |
+
"step": 19
|
151 |
+
},
|
152 |
+
{
|
153 |
+
"epoch": 0.026883978828866673,
|
154 |
+
"grad_norm": 1.625,
|
155 |
+
"learning_rate": 9.995408386509846e-06,
|
156 |
+
"loss": 0.8673,
|
157 |
+
"step": 20
|
158 |
+
},
|
159 |
+
{
|
160 |
+
"epoch": 0.028228177770310007,
|
161 |
+
"grad_norm": 1.5625,
|
162 |
+
"learning_rate": 9.99444432627971e-06,
|
163 |
+
"loss": 0.8704,
|
164 |
+
"step": 21
|
165 |
+
},
|
166 |
+
{
|
167 |
+
"epoch": 0.02957237671175334,
|
168 |
+
"grad_norm": 1.53125,
|
169 |
+
"learning_rate": 9.993388521915134e-06,
|
170 |
+
"loss": 0.813,
|
171 |
+
"step": 22
|
172 |
+
},
|
173 |
+
{
|
174 |
+
"epoch": 0.030916575653196672,
|
175 |
+
"grad_norm": 1.453125,
|
176 |
+
"learning_rate": 9.992240992810445e-06,
|
177 |
+
"loss": 0.8497,
|
178 |
+
"step": 23
|
179 |
+
},
|
180 |
+
{
|
181 |
+
"epoch": 0.03226077459464001,
|
182 |
+
"grad_norm": 1.453125,
|
183 |
+
"learning_rate": 9.991001760044877e-06,
|
184 |
+
"loss": 0.8027,
|
185 |
+
"step": 24
|
186 |
+
},
|
187 |
+
{
|
188 |
+
"epoch": 0.03360497353608334,
|
189 |
+
"grad_norm": 1.375,
|
190 |
+
"learning_rate": 9.989670846382189e-06,
|
191 |
+
"loss": 0.8099,
|
192 |
+
"step": 25
|
193 |
+
},
|
194 |
+
{
|
195 |
+
"epoch": 0.03494917247752667,
|
196 |
+
"grad_norm": 1.328125,
|
197 |
+
"learning_rate": 9.98824827627025e-06,
|
198 |
+
"loss": 0.7818,
|
199 |
+
"step": 26
|
200 |
+
},
|
201 |
+
{
|
202 |
+
"epoch": 0.03629337141897001,
|
203 |
+
"grad_norm": 1.5,
|
204 |
+
"learning_rate": 9.986734075840591e-06,
|
205 |
+
"loss": 0.8078,
|
206 |
+
"step": 27
|
207 |
+
},
|
208 |
+
{
|
209 |
+
"epoch": 0.03763757036041334,
|
210 |
+
"grad_norm": 1.5625,
|
211 |
+
"learning_rate": 9.985128272907917e-06,
|
212 |
+
"loss": 0.819,
|
213 |
+
"step": 28
|
214 |
+
},
|
215 |
+
{
|
216 |
+
"epoch": 0.03898176930185668,
|
217 |
+
"grad_norm": 1.34375,
|
218 |
+
"learning_rate": 9.983430896969606e-06,
|
219 |
+
"loss": 0.7949,
|
220 |
+
"step": 29
|
221 |
+
},
|
222 |
+
{
|
223 |
+
"epoch": 0.04032596824330001,
|
224 |
+
"grad_norm": 1.46875,
|
225 |
+
"learning_rate": 9.981641979205158e-06,
|
226 |
+
"loss": 0.8044,
|
227 |
+
"step": 30
|
228 |
+
},
|
229 |
+
{
|
230 |
+
"epoch": 0.04167016718474334,
|
231 |
+
"grad_norm": 1.4921875,
|
232 |
+
"learning_rate": 9.97976155247563e-06,
|
233 |
+
"loss": 0.8025,
|
234 |
+
"step": 31
|
235 |
+
},
|
236 |
+
{
|
237 |
+
"epoch": 0.04301436612618668,
|
238 |
+
"grad_norm": 1.3828125,
|
239 |
+
"learning_rate": 9.977789651323025e-06,
|
240 |
+
"loss": 0.7461,
|
241 |
+
"step": 32
|
242 |
+
},
|
243 |
+
{
|
244 |
+
"epoch": 0.04435856506763001,
|
245 |
+
"grad_norm": 1.40625,
|
246 |
+
"learning_rate": 9.975726311969664e-06,
|
247 |
+
"loss": 0.787,
|
248 |
+
"step": 33
|
249 |
+
},
|
250 |
+
{
|
251 |
+
"epoch": 0.045702764009073346,
|
252 |
+
"grad_norm": 1.4609375,
|
253 |
+
"learning_rate": 9.973571572317519e-06,
|
254 |
+
"loss": 0.7837,
|
255 |
+
"step": 34
|
256 |
+
},
|
257 |
+
{
|
258 |
+
"epoch": 0.04704696295051668,
|
259 |
+
"grad_norm": 1.4453125,
|
260 |
+
"learning_rate": 9.971325471947518e-06,
|
261 |
+
"loss": 0.8101,
|
262 |
+
"step": 35
|
263 |
+
},
|
264 |
+
{
|
265 |
+
"epoch": 0.04839116189196001,
|
266 |
+
"grad_norm": 1.4921875,
|
267 |
+
"learning_rate": 9.968988052118804e-06,
|
268 |
+
"loss": 0.783,
|
269 |
+
"step": 36
|
270 |
+
},
|
271 |
+
{
|
272 |
+
"epoch": 0.049735360833403346,
|
273 |
+
"grad_norm": 1.4609375,
|
274 |
+
"learning_rate": 9.966559355768005e-06,
|
275 |
+
"loss": 0.8141,
|
276 |
+
"step": 37
|
277 |
+
},
|
278 |
+
{
|
279 |
+
"epoch": 0.051079559774846676,
|
280 |
+
"grad_norm": 1.359375,
|
281 |
+
"learning_rate": 9.964039427508418e-06,
|
282 |
+
"loss": 0.7753,
|
283 |
+
"step": 38
|
284 |
+
},
|
285 |
+
{
|
286 |
+
"epoch": 0.052423758716290014,
|
287 |
+
"grad_norm": 1.375,
|
288 |
+
"learning_rate": 9.961428313629203e-06,
|
289 |
+
"loss": 0.773,
|
290 |
+
"step": 39
|
291 |
+
},
|
292 |
+
{
|
293 |
+
"epoch": 0.053767957657733345,
|
294 |
+
"grad_norm": 1.3515625,
|
295 |
+
"learning_rate": 9.958726062094533e-06,
|
296 |
+
"loss": 0.7557,
|
297 |
+
"step": 40
|
298 |
+
},
|
299 |
+
{
|
300 |
+
"epoch": 0.055112156599176676,
|
301 |
+
"grad_norm": 1.3203125,
|
302 |
+
"learning_rate": 9.955932722542709e-06,
|
303 |
+
"loss": 0.7241,
|
304 |
+
"step": 41
|
305 |
+
},
|
306 |
+
{
|
307 |
+
"epoch": 0.056456355540620014,
|
308 |
+
"grad_norm": 1.4296875,
|
309 |
+
"learning_rate": 9.953048346285245e-06,
|
310 |
+
"loss": 0.781,
|
311 |
+
"step": 42
|
312 |
+
},
|
313 |
+
{
|
314 |
+
"epoch": 0.057800554482063345,
|
315 |
+
"grad_norm": 1.3984375,
|
316 |
+
"learning_rate": 9.950072986305938e-06,
|
317 |
+
"loss": 0.7644,
|
318 |
+
"step": 43
|
319 |
+
},
|
320 |
+
{
|
321 |
+
"epoch": 0.05914475342350668,
|
322 |
+
"grad_norm": 1.3515625,
|
323 |
+
"learning_rate": 9.947006697259881e-06,
|
324 |
+
"loss": 0.7406,
|
325 |
+
"step": 44
|
326 |
+
},
|
327 |
+
{
|
328 |
+
"epoch": 0.06048895236495001,
|
329 |
+
"grad_norm": 1.3828125,
|
330 |
+
"learning_rate": 9.943849535472468e-06,
|
331 |
+
"loss": 0.762,
|
332 |
+
"step": 45
|
333 |
+
},
|
334 |
+
{
|
335 |
+
"epoch": 0.061833151306393344,
|
336 |
+
"grad_norm": 1.3046875,
|
337 |
+
"learning_rate": 9.940601558938348e-06,
|
338 |
+
"loss": 0.7448,
|
339 |
+
"step": 46
|
340 |
+
},
|
341 |
+
{
|
342 |
+
"epoch": 0.06317735024783667,
|
343 |
+
"grad_norm": 1.390625,
|
344 |
+
"learning_rate": 9.93726282732038e-06,
|
345 |
+
"loss": 0.7658,
|
346 |
+
"step": 47
|
347 |
+
},
|
348 |
+
{
|
349 |
+
"epoch": 0.06452154918928002,
|
350 |
+
"grad_norm": 1.4765625,
|
351 |
+
"learning_rate": 9.933833401948514e-06,
|
352 |
+
"loss": 0.7876,
|
353 |
+
"step": 48
|
354 |
+
},
|
355 |
+
{
|
356 |
+
"epoch": 0.06586574813072335,
|
357 |
+
"grad_norm": 1.3984375,
|
358 |
+
"learning_rate": 9.930313345818683e-06,
|
359 |
+
"loss": 0.8166,
|
360 |
+
"step": 49
|
361 |
+
},
|
362 |
+
{
|
363 |
+
"epoch": 0.06720994707216668,
|
364 |
+
"grad_norm": 1.421875,
|
365 |
+
"learning_rate": 9.92670272359163e-06,
|
366 |
+
"loss": 0.7927,
|
367 |
+
"step": 50
|
368 |
+
},
|
369 |
+
{
|
370 |
+
"epoch": 0.06855414601361001,
|
371 |
+
"grad_norm": 1.359375,
|
372 |
+
"learning_rate": 9.923001601591738e-06,
|
373 |
+
"loss": 0.7906,
|
374 |
+
"step": 51
|
375 |
+
},
|
376 |
+
{
|
377 |
+
"epoch": 0.06989834495505334,
|
378 |
+
"grad_norm": 1.296875,
|
379 |
+
"learning_rate": 9.919210047805791e-06,
|
380 |
+
"loss": 0.7576,
|
381 |
+
"step": 52
|
382 |
+
},
|
383 |
+
{
|
384 |
+
"epoch": 0.07124254389649669,
|
385 |
+
"grad_norm": 1.4453125,
|
386 |
+
"learning_rate": 9.915328131881745e-06,
|
387 |
+
"loss": 0.7847,
|
388 |
+
"step": 53
|
389 |
+
},
|
390 |
+
{
|
391 |
+
"epoch": 0.07258674283794002,
|
392 |
+
"grad_norm": 1.4375,
|
393 |
+
"learning_rate": 9.911355925127433e-06,
|
394 |
+
"loss": 0.7728,
|
395 |
+
"step": 54
|
396 |
+
},
|
397 |
+
{
|
398 |
+
"epoch": 0.07393094177938335,
|
399 |
+
"grad_norm": 1.4375,
|
400 |
+
"learning_rate": 9.907293500509268e-06,
|
401 |
+
"loss": 0.7947,
|
402 |
+
"step": 55
|
403 |
+
},
|
404 |
+
{
|
405 |
+
"epoch": 0.07527514072082668,
|
406 |
+
"grad_norm": 1.3515625,
|
407 |
+
"learning_rate": 9.903140932650891e-06,
|
408 |
+
"loss": 0.7503,
|
409 |
+
"step": 56
|
410 |
+
},
|
411 |
+
{
|
412 |
+
"epoch": 0.07661933966227001,
|
413 |
+
"grad_norm": 1.3671875,
|
414 |
+
"learning_rate": 9.898898297831808e-06,
|
415 |
+
"loss": 0.7519,
|
416 |
+
"step": 57
|
417 |
+
},
|
418 |
+
{
|
419 |
+
"epoch": 0.07796353860371336,
|
420 |
+
"grad_norm": 1.4296875,
|
421 |
+
"learning_rate": 9.894565673985986e-06,
|
422 |
+
"loss": 0.7438,
|
423 |
+
"step": 58
|
424 |
+
},
|
425 |
+
{
|
426 |
+
"epoch": 0.07930773754515669,
|
427 |
+
"grad_norm": 1.4375,
|
428 |
+
"learning_rate": 9.890143140700419e-06,
|
429 |
+
"loss": 0.7635,
|
430 |
+
"step": 59
|
431 |
+
},
|
432 |
+
{
|
433 |
+
"epoch": 0.08065193648660002,
|
434 |
+
"grad_norm": 1.375,
|
435 |
+
"learning_rate": 9.885630779213678e-06,
|
436 |
+
"loss": 0.7176,
|
437 |
+
"step": 60
|
438 |
+
},
|
439 |
+
{
|
440 |
+
"epoch": 0.08199613542804335,
|
441 |
+
"grad_norm": 1.4296875,
|
442 |
+
"learning_rate": 9.881028672414397e-06,
|
443 |
+
"loss": 0.7536,
|
444 |
+
"step": 61
|
445 |
+
},
|
446 |
+
{
|
447 |
+
"epoch": 0.08334033436948668,
|
448 |
+
"grad_norm": 1.4375,
|
449 |
+
"learning_rate": 9.876336904839772e-06,
|
450 |
+
"loss": 0.7572,
|
451 |
+
"step": 62
|
452 |
+
},
|
453 |
+
{
|
454 |
+
"epoch": 0.08468453331093002,
|
455 |
+
"grad_norm": 1.4609375,
|
456 |
+
"learning_rate": 9.871555562673996e-06,
|
457 |
+
"loss": 0.7767,
|
458 |
+
"step": 63
|
459 |
+
},
|
460 |
+
{
|
461 |
+
"epoch": 0.08602873225237335,
|
462 |
+
"grad_norm": 1.4921875,
|
463 |
+
"learning_rate": 9.86668473374668e-06,
|
464 |
+
"loss": 0.763,
|
465 |
+
"step": 64
|
466 |
+
},
|
467 |
+
{
|
468 |
+
"epoch": 0.08737293119381669,
|
469 |
+
"grad_norm": 1.3984375,
|
470 |
+
"learning_rate": 9.861724507531234e-06,
|
471 |
+
"loss": 0.7576,
|
472 |
+
"step": 65
|
473 |
+
},
|
474 |
+
{
|
475 |
+
"epoch": 0.08871713013526002,
|
476 |
+
"grad_norm": 1.421875,
|
477 |
+
"learning_rate": 9.856674975143237e-06,
|
478 |
+
"loss": 0.7342,
|
479 |
+
"step": 66
|
480 |
+
},
|
481 |
+
{
|
482 |
+
"epoch": 0.09006132907670335,
|
483 |
+
"grad_norm": 1.4453125,
|
484 |
+
"learning_rate": 9.851536229338747e-06,
|
485 |
+
"loss": 0.7487,
|
486 |
+
"step": 67
|
487 |
+
},
|
488 |
+
{
|
489 |
+
"epoch": 0.09140552801814669,
|
490 |
+
"grad_norm": 1.390625,
|
491 |
+
"learning_rate": 9.846308364512607e-06,
|
492 |
+
"loss": 0.7604,
|
493 |
+
"step": 68
|
494 |
+
},
|
495 |
+
{
|
496 |
+
"epoch": 0.09274972695959002,
|
497 |
+
"grad_norm": 1.5078125,
|
498 |
+
"learning_rate": 9.840991476696707e-06,
|
499 |
+
"loss": 0.7537,
|
500 |
+
"step": 69
|
501 |
+
},
|
502 |
+
{
|
503 |
+
"epoch": 0.09409392590103335,
|
504 |
+
"grad_norm": 1.4296875,
|
505 |
+
"learning_rate": 9.835585663558221e-06,
|
506 |
+
"loss": 0.7608,
|
507 |
+
"step": 70
|
508 |
+
},
|
509 |
+
{
|
510 |
+
"epoch": 0.09543812484247668,
|
511 |
+
"grad_norm": 1.4140625,
|
512 |
+
"learning_rate": 9.830091024397818e-06,
|
513 |
+
"loss": 0.7298,
|
514 |
+
"step": 71
|
515 |
+
},
|
516 |
+
{
|
517 |
+
"epoch": 0.09678232378392002,
|
518 |
+
"grad_norm": 1.4140625,
|
519 |
+
"learning_rate": 9.824507660147831e-06,
|
520 |
+
"loss": 0.7646,
|
521 |
+
"step": 72
|
522 |
+
},
|
523 |
+
{
|
524 |
+
"epoch": 0.09812652272536336,
|
525 |
+
"grad_norm": 1.3984375,
|
526 |
+
"learning_rate": 9.8188356733704e-06,
|
527 |
+
"loss": 0.7679,
|
528 |
+
"step": 73
|
529 |
+
},
|
530 |
+
{
|
531 |
+
"epoch": 0.09947072166680669,
|
532 |
+
"grad_norm": 1.4765625,
|
533 |
+
"learning_rate": 9.813075168255601e-06,
|
534 |
+
"loss": 0.7263,
|
535 |
+
"step": 74
|
536 |
+
},
|
537 |
+
{
|
538 |
+
"epoch": 0.10081492060825002,
|
539 |
+
"grad_norm": 1.484375,
|
540 |
+
"learning_rate": 9.807226250619522e-06,
|
541 |
+
"loss": 0.7589,
|
542 |
+
"step": 75
|
543 |
+
},
|
544 |
+
{
|
545 |
+
"epoch": 0.10215911954969335,
|
546 |
+
"grad_norm": 1.515625,
|
547 |
+
"learning_rate": 9.801289027902316e-06,
|
548 |
+
"loss": 0.7216,
|
549 |
+
"step": 76
|
550 |
+
},
|
551 |
+
{
|
552 |
+
"epoch": 0.10350331849113668,
|
553 |
+
"grad_norm": 1.4765625,
|
554 |
+
"learning_rate": 9.795263609166243e-06,
|
555 |
+
"loss": 0.7779,
|
556 |
+
"step": 77
|
557 |
+
},
|
558 |
+
{
|
559 |
+
"epoch": 0.10484751743258003,
|
560 |
+
"grad_norm": 1.4609375,
|
561 |
+
"learning_rate": 9.789150105093647e-06,
|
562 |
+
"loss": 0.6941,
|
563 |
+
"step": 78
|
564 |
+
},
|
565 |
+
{
|
566 |
+
"epoch": 0.10619171637402336,
|
567 |
+
"grad_norm": 1.46875,
|
568 |
+
"learning_rate": 9.78294862798494e-06,
|
569 |
+
"loss": 0.7362,
|
570 |
+
"step": 79
|
571 |
+
},
|
572 |
+
{
|
573 |
+
"epoch": 0.10753591531546669,
|
574 |
+
"grad_norm": 1.4296875,
|
575 |
+
"learning_rate": 9.776659291756528e-06,
|
576 |
+
"loss": 0.7103,
|
577 |
+
"step": 80
|
578 |
+
},
|
579 |
+
{
|
580 |
+
"epoch": 0.10888011425691002,
|
581 |
+
"grad_norm": 1.359375,
|
582 |
+
"learning_rate": 9.77028221193872e-06,
|
583 |
+
"loss": 0.6866,
|
584 |
+
"step": 81
|
585 |
+
},
|
586 |
+
{
|
587 |
+
"epoch": 0.11022431319835335,
|
588 |
+
"grad_norm": 1.53125,
|
589 |
+
"learning_rate": 9.763817505673614e-06,
|
590 |
+
"loss": 0.7517,
|
591 |
+
"step": 82
|
592 |
+
},
|
593 |
+
{
|
594 |
+
"epoch": 0.1115685121397967,
|
595 |
+
"grad_norm": 1.453125,
|
596 |
+
"learning_rate": 9.75726529171293e-06,
|
597 |
+
"loss": 0.7508,
|
598 |
+
"step": 83
|
599 |
+
},
|
600 |
+
{
|
601 |
+
"epoch": 0.11291271108124003,
|
602 |
+
"grad_norm": 1.5,
|
603 |
+
"learning_rate": 9.750625690415848e-06,
|
604 |
+
"loss": 0.7275,
|
605 |
+
"step": 84
|
606 |
+
},
|
607 |
+
{
|
608 |
+
"epoch": 0.11425691002268336,
|
609 |
+
"grad_norm": 1.484375,
|
610 |
+
"learning_rate": 9.74389882374678e-06,
|
611 |
+
"loss": 0.6994,
|
612 |
+
"step": 85
|
613 |
+
},
|
614 |
+
{
|
615 |
+
"epoch": 0.11560110896412669,
|
616 |
+
"grad_norm": 1.4453125,
|
617 |
+
"learning_rate": 9.737084815273137e-06,
|
618 |
+
"loss": 0.7365,
|
619 |
+
"step": 86
|
620 |
+
},
|
621 |
+
{
|
622 |
+
"epoch": 0.11694530790557002,
|
623 |
+
"grad_norm": 1.5078125,
|
624 |
+
"learning_rate": 9.730183790163061e-06,
|
625 |
+
"loss": 0.7294,
|
626 |
+
"step": 87
|
627 |
+
},
|
628 |
+
{
|
629 |
+
"epoch": 0.11828950684701336,
|
630 |
+
"grad_norm": 1.375,
|
631 |
+
"learning_rate": 9.72319587518312e-06,
|
632 |
+
"loss": 0.7226,
|
633 |
+
"step": 88
|
634 |
+
},
|
635 |
+
{
|
636 |
+
"epoch": 0.1196337057884567,
|
637 |
+
"grad_norm": 1.390625,
|
638 |
+
"learning_rate": 9.716121198695987e-06,
|
639 |
+
"loss": 0.7126,
|
640 |
+
"step": 89
|
641 |
+
},
|
642 |
+
{
|
643 |
+
"epoch": 0.12097790472990003,
|
644 |
+
"grad_norm": 1.484375,
|
645 |
+
"learning_rate": 9.708959890658074e-06,
|
646 |
+
"loss": 0.7118,
|
647 |
+
"step": 90
|
648 |
+
},
|
649 |
+
{
|
650 |
+
"epoch": 0.12232210367134336,
|
651 |
+
"grad_norm": 1.3515625,
|
652 |
+
"learning_rate": 9.70171208261715e-06,
|
653 |
+
"loss": 0.7164,
|
654 |
+
"step": 91
|
655 |
+
},
|
656 |
+
{
|
657 |
+
"epoch": 0.12366630261278669,
|
658 |
+
"grad_norm": 1.4765625,
|
659 |
+
"learning_rate": 9.69437790770992e-06,
|
660 |
+
"loss": 0.7015,
|
661 |
+
"step": 92
|
662 |
+
},
|
663 |
+
{
|
664 |
+
"epoch": 0.12501050155423002,
|
665 |
+
"grad_norm": 1.3828125,
|
666 |
+
"learning_rate": 9.68695750065959e-06,
|
667 |
+
"loss": 0.7212,
|
668 |
+
"step": 93
|
669 |
+
},
|
670 |
+
{
|
671 |
+
"epoch": 0.12635470049567335,
|
672 |
+
"grad_norm": 1.4140625,
|
673 |
+
"learning_rate": 9.679450997773378e-06,
|
674 |
+
"loss": 0.7301,
|
675 |
+
"step": 94
|
676 |
+
},
|
677 |
+
{
|
678 |
+
"epoch": 0.12769889943711668,
|
679 |
+
"grad_norm": 1.53125,
|
680 |
+
"learning_rate": 9.67185853694002e-06,
|
681 |
+
"loss": 0.7434,
|
682 |
+
"step": 95
|
683 |
+
},
|
684 |
+
{
|
685 |
+
"epoch": 0.12904309837856004,
|
686 |
+
"grad_norm": 1.3828125,
|
687 |
+
"learning_rate": 9.664180257627231e-06,
|
688 |
+
"loss": 0.7503,
|
689 |
+
"step": 96
|
690 |
+
},
|
691 |
+
{
|
692 |
+
"epoch": 0.13038729732000337,
|
693 |
+
"grad_norm": 1.3984375,
|
694 |
+
"learning_rate": 9.656416300879147e-06,
|
695 |
+
"loss": 0.704,
|
696 |
+
"step": 97
|
697 |
+
},
|
698 |
+
{
|
699 |
+
"epoch": 0.1317314962614467,
|
700 |
+
"grad_norm": 1.3515625,
|
701 |
+
"learning_rate": 9.648566809313738e-06,
|
702 |
+
"loss": 0.7091,
|
703 |
+
"step": 98
|
704 |
+
},
|
705 |
+
{
|
706 |
+
"epoch": 0.13307569520289003,
|
707 |
+
"grad_norm": 1.25,
|
708 |
+
"learning_rate": 9.640631927120177e-06,
|
709 |
+
"loss": 0.6939,
|
710 |
+
"step": 99
|
711 |
+
},
|
712 |
+
{
|
713 |
+
"epoch": 0.13441989414433336,
|
714 |
+
"grad_norm": 1.25,
|
715 |
+
"learning_rate": 9.632611800056202e-06,
|
716 |
+
"loss": 0.6645,
|
717 |
+
"step": 100
|
718 |
+
},
|
719 |
+
{
|
720 |
+
"epoch": 0.1357640930857767,
|
721 |
+
"grad_norm": 1.3671875,
|
722 |
+
"learning_rate": 9.62450657544543e-06,
|
723 |
+
"loss": 0.7314,
|
724 |
+
"step": 101
|
725 |
+
},
|
726 |
+
{
|
727 |
+
"epoch": 0.13710829202722002,
|
728 |
+
"grad_norm": 1.359375,
|
729 |
+
"learning_rate": 9.616316402174657e-06,
|
730 |
+
"loss": 0.7022,
|
731 |
+
"step": 102
|
732 |
+
},
|
733 |
+
{
|
734 |
+
"epoch": 0.13845249096866336,
|
735 |
+
"grad_norm": 1.390625,
|
736 |
+
"learning_rate": 9.608041430691126e-06,
|
737 |
+
"loss": 0.7015,
|
738 |
+
"step": 103
|
739 |
+
},
|
740 |
+
{
|
741 |
+
"epoch": 0.1397966899101067,
|
742 |
+
"grad_norm": 1.3046875,
|
743 |
+
"learning_rate": 9.59968181299975e-06,
|
744 |
+
"loss": 0.6831,
|
745 |
+
"step": 104
|
746 |
+
},
|
747 |
+
{
|
748 |
+
"epoch": 0.14114088885155002,
|
749 |
+
"grad_norm": 1.28125,
|
750 |
+
"learning_rate": 9.591237702660335e-06,
|
751 |
+
"loss": 0.6903,
|
752 |
+
"step": 105
|
753 |
+
},
|
754 |
+
{
|
755 |
+
"epoch": 0.14248508779299338,
|
756 |
+
"grad_norm": 1.2421875,
|
757 |
+
"learning_rate": 9.58270925478475e-06,
|
758 |
+
"loss": 0.7236,
|
759 |
+
"step": 106
|
760 |
+
},
|
761 |
+
{
|
762 |
+
"epoch": 0.1438292867344367,
|
763 |
+
"grad_norm": 1.3125,
|
764 |
+
"learning_rate": 9.574096626034077e-06,
|
765 |
+
"loss": 0.7375,
|
766 |
+
"step": 107
|
767 |
+
},
|
768 |
+
{
|
769 |
+
"epoch": 0.14517348567588004,
|
770 |
+
"grad_norm": 1.2421875,
|
771 |
+
"learning_rate": 9.565399974615744e-06,
|
772 |
+
"loss": 0.7051,
|
773 |
+
"step": 108
|
774 |
+
},
|
775 |
+
{
|
776 |
+
"epoch": 0.14651768461732337,
|
777 |
+
"grad_norm": 1.3515625,
|
778 |
+
"learning_rate": 9.556619460280605e-06,
|
779 |
+
"loss": 0.6961,
|
780 |
+
"step": 109
|
781 |
+
},
|
782 |
+
{
|
783 |
+
"epoch": 0.1478618835587667,
|
784 |
+
"grad_norm": 1.2890625,
|
785 |
+
"learning_rate": 9.547755244320013e-06,
|
786 |
+
"loss": 0.731,
|
787 |
+
"step": 110
|
788 |
+
},
|
789 |
+
{
|
790 |
+
"epoch": 0.14920608250021003,
|
791 |
+
"grad_norm": 1.3125,
|
792 |
+
"learning_rate": 9.53880748956286e-06,
|
793 |
+
"loss": 0.6992,
|
794 |
+
"step": 111
|
795 |
+
},
|
796 |
+
{
|
797 |
+
"epoch": 0.15055028144165336,
|
798 |
+
"grad_norm": 1.2578125,
|
799 |
+
"learning_rate": 9.529776360372576e-06,
|
800 |
+
"loss": 0.6954,
|
801 |
+
"step": 112
|
802 |
+
},
|
803 |
+
{
|
804 |
+
"epoch": 0.1518944803830967,
|
805 |
+
"grad_norm": 1.140625,
|
806 |
+
"learning_rate": 9.52066202264412e-06,
|
807 |
+
"loss": 0.6932,
|
808 |
+
"step": 113
|
809 |
+
},
|
810 |
+
{
|
811 |
+
"epoch": 0.15323867932454002,
|
812 |
+
"grad_norm": 1.1875,
|
813 |
+
"learning_rate": 9.511464643800926e-06,
|
814 |
+
"loss": 0.7117,
|
815 |
+
"step": 114
|
816 |
+
},
|
817 |
+
{
|
818 |
+
"epoch": 0.15458287826598335,
|
819 |
+
"grad_norm": 1.1875,
|
820 |
+
"learning_rate": 9.502184392791834e-06,
|
821 |
+
"loss": 0.6992,
|
822 |
+
"step": 115
|
823 |
+
},
|
824 |
+
{
|
825 |
+
"epoch": 0.1559270772074267,
|
826 |
+
"grad_norm": 1.09375,
|
827 |
+
"learning_rate": 9.492821440087978e-06,
|
828 |
+
"loss": 0.6744,
|
829 |
+
"step": 116
|
830 |
+
},
|
831 |
+
{
|
832 |
+
"epoch": 0.15727127614887004,
|
833 |
+
"grad_norm": 1.1796875,
|
834 |
+
"learning_rate": 9.48337595767966e-06,
|
835 |
+
"loss": 0.6553,
|
836 |
+
"step": 117
|
837 |
+
},
|
838 |
+
{
|
839 |
+
"epoch": 0.15861547509031337,
|
840 |
+
"grad_norm": 1.1484375,
|
841 |
+
"learning_rate": 9.473848119073188e-06,
|
842 |
+
"loss": 0.7206,
|
843 |
+
"step": 118
|
844 |
+
},
|
845 |
+
{
|
846 |
+
"epoch": 0.1599596740317567,
|
847 |
+
"grad_norm": 1.125,
|
848 |
+
"learning_rate": 9.4642380992877e-06,
|
849 |
+
"loss": 0.7014,
|
850 |
+
"step": 119
|
851 |
+
},
|
852 |
+
{
|
853 |
+
"epoch": 0.16130387297320004,
|
854 |
+
"grad_norm": 1.1171875,
|
855 |
+
"learning_rate": 9.454546074851927e-06,
|
856 |
+
"loss": 0.7249,
|
857 |
+
"step": 120
|
858 |
+
},
|
859 |
+
{
|
860 |
+
"epoch": 0.16264807191464337,
|
861 |
+
"grad_norm": 1.140625,
|
862 |
+
"learning_rate": 9.444772223800972e-06,
|
863 |
+
"loss": 0.7142,
|
864 |
+
"step": 121
|
865 |
+
},
|
866 |
+
{
|
867 |
+
"epoch": 0.1639922708560867,
|
868 |
+
"grad_norm": 1.0390625,
|
869 |
+
"learning_rate": 9.434916725673023e-06,
|
870 |
+
"loss": 0.6778,
|
871 |
+
"step": 122
|
872 |
+
},
|
873 |
+
{
|
874 |
+
"epoch": 0.16533646979753003,
|
875 |
+
"grad_norm": 1.0390625,
|
876 |
+
"learning_rate": 9.42497976150607e-06,
|
877 |
+
"loss": 0.6831,
|
878 |
+
"step": 123
|
879 |
+
},
|
880 |
+
{
|
881 |
+
"epoch": 0.16668066873897336,
|
882 |
+
"grad_norm": 1.0546875,
|
883 |
+
"learning_rate": 9.414961513834569e-06,
|
884 |
+
"loss": 0.6744,
|
885 |
+
"step": 124
|
886 |
+
},
|
887 |
+
{
|
888 |
+
"epoch": 0.1680248676804167,
|
889 |
+
"grad_norm": 1.1015625,
|
890 |
+
"learning_rate": 9.404862166686089e-06,
|
891 |
+
"loss": 0.7059,
|
892 |
+
"step": 125
|
893 |
+
},
|
894 |
+
{
|
895 |
+
"epoch": 0.16936906662186005,
|
896 |
+
"grad_norm": 1.0390625,
|
897 |
+
"learning_rate": 9.394681905577938e-06,
|
898 |
+
"loss": 0.7245,
|
899 |
+
"step": 126
|
900 |
+
},
|
901 |
+
{
|
902 |
+
"epoch": 0.17071326556330338,
|
903 |
+
"grad_norm": 1.0390625,
|
904 |
+
"learning_rate": 9.384420917513752e-06,
|
905 |
+
"loss": 0.7064,
|
906 |
+
"step": 127
|
907 |
+
},
|
908 |
+
{
|
909 |
+
"epoch": 0.1720574645047467,
|
910 |
+
"grad_norm": 1.0,
|
911 |
+
"learning_rate": 9.374079390980058e-06,
|
912 |
+
"loss": 0.7177,
|
913 |
+
"step": 128
|
914 |
+
},
|
915 |
+
{
|
916 |
+
"epoch": 0.17340166344619004,
|
917 |
+
"grad_norm": 1.0078125,
|
918 |
+
"learning_rate": 9.363657515942814e-06,
|
919 |
+
"loss": 0.7031,
|
920 |
+
"step": 129
|
921 |
+
},
|
922 |
+
{
|
923 |
+
"epoch": 0.17474586238763337,
|
924 |
+
"grad_norm": 0.96875,
|
925 |
+
"learning_rate": 9.35315548384392e-06,
|
926 |
+
"loss": 0.6752,
|
927 |
+
"step": 130
|
928 |
+
},
|
929 |
+
{
|
930 |
+
"epoch": 0.1760900613290767,
|
931 |
+
"grad_norm": 1.0,
|
932 |
+
"learning_rate": 9.342573487597696e-06,
|
933 |
+
"loss": 0.7189,
|
934 |
+
"step": 131
|
935 |
+
},
|
936 |
+
{
|
937 |
+
"epoch": 0.17743426027052003,
|
938 |
+
"grad_norm": 1.0234375,
|
939 |
+
"learning_rate": 9.331911721587345e-06,
|
940 |
+
"loss": 0.6873,
|
941 |
+
"step": 132
|
942 |
+
},
|
943 |
+
{
|
944 |
+
"epoch": 0.17877845921196336,
|
945 |
+
"grad_norm": 1.0,
|
946 |
+
"learning_rate": 9.321170381661383e-06,
|
947 |
+
"loss": 0.7056,
|
948 |
+
"step": 133
|
949 |
+
},
|
950 |
+
{
|
951 |
+
"epoch": 0.1801226581534067,
|
952 |
+
"grad_norm": 0.984375,
|
953 |
+
"learning_rate": 9.310349665130035e-06,
|
954 |
+
"loss": 0.7024,
|
955 |
+
"step": 134
|
956 |
+
},
|
957 |
+
{
|
958 |
+
"epoch": 0.18146685709485003,
|
959 |
+
"grad_norm": 1.015625,
|
960 |
+
"learning_rate": 9.299449770761612e-06,
|
961 |
+
"loss": 0.708,
|
962 |
+
"step": 135
|
963 |
+
},
|
964 |
+
{
|
965 |
+
"epoch": 0.18281105603629338,
|
966 |
+
"grad_norm": 0.8984375,
|
967 |
+
"learning_rate": 9.288470898778863e-06,
|
968 |
+
"loss": 0.6624,
|
969 |
+
"step": 136
|
970 |
+
},
|
971 |
+
{
|
972 |
+
"epoch": 0.18415525497773672,
|
973 |
+
"grad_norm": 0.984375,
|
974 |
+
"learning_rate": 9.277413250855296e-06,
|
975 |
+
"loss": 0.6622,
|
976 |
+
"step": 137
|
977 |
+
},
|
978 |
+
{
|
979 |
+
"epoch": 0.18549945391918005,
|
980 |
+
"grad_norm": 0.9609375,
|
981 |
+
"learning_rate": 9.266277030111474e-06,
|
982 |
+
"loss": 0.7074,
|
983 |
+
"step": 138
|
984 |
+
},
|
985 |
+
{
|
986 |
+
"epoch": 0.18684365286062338,
|
987 |
+
"grad_norm": 0.97265625,
|
988 |
+
"learning_rate": 9.25506244111128e-06,
|
989 |
+
"loss": 0.6745,
|
990 |
+
"step": 139
|
991 |
+
},
|
992 |
+
{
|
993 |
+
"epoch": 0.1881878518020667,
|
994 |
+
"grad_norm": 0.93359375,
|
995 |
+
"learning_rate": 9.243769689858167e-06,
|
996 |
+
"loss": 0.6627,
|
997 |
+
"step": 140
|
998 |
+
},
|
999 |
+
{
|
1000 |
+
"epoch": 0.18953205074351004,
|
1001 |
+
"grad_norm": 0.9609375,
|
1002 |
+
"learning_rate": 9.232398983791363e-06,
|
1003 |
+
"loss": 0.6563,
|
1004 |
+
"step": 141
|
1005 |
+
},
|
1006 |
+
{
|
1007 |
+
"epoch": 0.19087624968495337,
|
1008 |
+
"grad_norm": 1.0234375,
|
1009 |
+
"learning_rate": 9.220950531782069e-06,
|
1010 |
+
"loss": 0.688,
|
1011 |
+
"step": 142
|
1012 |
+
},
|
1013 |
+
{
|
1014 |
+
"epoch": 0.1922204486263967,
|
1015 |
+
"grad_norm": 1.046875,
|
1016 |
+
"learning_rate": 9.209424544129621e-06,
|
1017 |
+
"loss": 0.7021,
|
1018 |
+
"step": 143
|
1019 |
+
},
|
1020 |
+
{
|
1021 |
+
"epoch": 0.19356464756784003,
|
1022 |
+
"grad_norm": 0.87890625,
|
1023 |
+
"learning_rate": 9.197821232557625e-06,
|
1024 |
+
"loss": 0.6826,
|
1025 |
+
"step": 144
|
1026 |
+
},
|
1027 |
+
{
|
1028 |
+
"epoch": 0.19490884650928336,
|
1029 |
+
"grad_norm": 0.9140625,
|
1030 |
+
"learning_rate": 9.186140810210066e-06,
|
1031 |
+
"loss": 0.6904,
|
1032 |
+
"step": 145
|
1033 |
+
},
|
1034 |
+
{
|
1035 |
+
"epoch": 0.19625304545072672,
|
1036 |
+
"grad_norm": 1.0,
|
1037 |
+
"learning_rate": 9.1743834916474e-06,
|
1038 |
+
"loss": 0.6747,
|
1039 |
+
"step": 146
|
1040 |
+
},
|
1041 |
+
{
|
1042 |
+
"epoch": 0.19759724439217005,
|
1043 |
+
"grad_norm": 0.9609375,
|
1044 |
+
"learning_rate": 9.162549492842603e-06,
|
1045 |
+
"loss": 0.7073,
|
1046 |
+
"step": 147
|
1047 |
+
},
|
1048 |
+
{
|
1049 |
+
"epoch": 0.19894144333361338,
|
1050 |
+
"grad_norm": 0.9765625,
|
1051 |
+
"learning_rate": 9.150639031177211e-06,
|
1052 |
+
"loss": 0.6773,
|
1053 |
+
"step": 148
|
1054 |
+
},
|
1055 |
+
{
|
1056 |
+
"epoch": 0.2002856422750567,
|
1057 |
+
"grad_norm": 0.94921875,
|
1058 |
+
"learning_rate": 9.138652325437326e-06,
|
1059 |
+
"loss": 0.689,
|
1060 |
+
"step": 149
|
1061 |
+
},
|
1062 |
+
{
|
1063 |
+
"epoch": 0.20162984121650004,
|
1064 |
+
"grad_norm": 1.015625,
|
1065 |
+
"learning_rate": 9.12658959580959e-06,
|
1066 |
+
"loss": 0.6874,
|
1067 |
+
"step": 150
|
1068 |
+
},
|
1069 |
+
{
|
1070 |
+
"epoch": 0.20297404015794338,
|
1071 |
+
"grad_norm": 0.90234375,
|
1072 |
+
"learning_rate": 9.114451063877152e-06,
|
1073 |
+
"loss": 0.6617,
|
1074 |
+
"step": 151
|
1075 |
+
},
|
1076 |
+
{
|
1077 |
+
"epoch": 0.2043182390993867,
|
1078 |
+
"grad_norm": 1.0,
|
1079 |
+
"learning_rate": 9.102236952615588e-06,
|
1080 |
+
"loss": 0.6882,
|
1081 |
+
"step": 152
|
1082 |
+
},
|
1083 |
+
{
|
1084 |
+
"epoch": 0.20566243804083004,
|
1085 |
+
"grad_norm": 1.03125,
|
1086 |
+
"learning_rate": 9.08994748638881e-06,
|
1087 |
+
"loss": 0.6919,
|
1088 |
+
"step": 153
|
1089 |
+
},
|
1090 |
+
{
|
1091 |
+
"epoch": 0.20700663698227337,
|
1092 |
+
"grad_norm": 0.97265625,
|
1093 |
+
"learning_rate": 9.077582890944945e-06,
|
1094 |
+
"loss": 0.6713,
|
1095 |
+
"step": 154
|
1096 |
+
},
|
1097 |
+
{
|
1098 |
+
"epoch": 0.2083508359237167,
|
1099 |
+
"grad_norm": 0.921875,
|
1100 |
+
"learning_rate": 9.065143393412179e-06,
|
1101 |
+
"loss": 0.6504,
|
1102 |
+
"step": 155
|
1103 |
+
},
|
1104 |
+
{
|
1105 |
+
"epoch": 0.20969503486516006,
|
1106 |
+
"grad_norm": 0.98046875,
|
1107 |
+
"learning_rate": 9.052629222294605e-06,
|
1108 |
+
"loss": 0.6674,
|
1109 |
+
"step": 156
|
1110 |
+
},
|
1111 |
+
{
|
1112 |
+
"epoch": 0.2110392338066034,
|
1113 |
+
"grad_norm": 0.9375,
|
1114 |
+
"learning_rate": 9.040040607467999e-06,
|
1115 |
+
"loss": 0.7111,
|
1116 |
+
"step": 157
|
1117 |
+
},
|
1118 |
+
{
|
1119 |
+
"epoch": 0.21238343274804672,
|
1120 |
+
"grad_norm": 1.03125,
|
1121 |
+
"learning_rate": 9.02737778017562e-06,
|
1122 |
+
"loss": 0.6596,
|
1123 |
+
"step": 158
|
1124 |
+
},
|
1125 |
+
{
|
1126 |
+
"epoch": 0.21372763168949005,
|
1127 |
+
"grad_norm": 0.921875,
|
1128 |
+
"learning_rate": 9.014640973023951e-06,
|
1129 |
+
"loss": 0.6846,
|
1130 |
+
"step": 159
|
1131 |
+
},
|
1132 |
+
{
|
1133 |
+
"epoch": 0.21507183063093338,
|
1134 |
+
"grad_norm": 0.94921875,
|
1135 |
+
"learning_rate": 9.00183041997843e-06,
|
1136 |
+
"loss": 0.6788,
|
1137 |
+
"step": 160
|
1138 |
+
},
|
1139 |
+
{
|
1140 |
+
"epoch": 0.2164160295723767,
|
1141 |
+
"grad_norm": 0.890625,
|
1142 |
+
"learning_rate": 8.988946356359147e-06,
|
1143 |
+
"loss": 0.6888,
|
1144 |
+
"step": 161
|
1145 |
+
},
|
1146 |
+
{
|
1147 |
+
"epoch": 0.21776022851382004,
|
1148 |
+
"grad_norm": 0.92578125,
|
1149 |
+
"learning_rate": 8.97598901883653e-06,
|
1150 |
+
"loss": 0.6854,
|
1151 |
+
"step": 162
|
1152 |
+
},
|
1153 |
+
{
|
1154 |
+
"epoch": 0.21910442745526337,
|
1155 |
+
"grad_norm": 0.94140625,
|
1156 |
+
"learning_rate": 8.962958645426989e-06,
|
1157 |
+
"loss": 0.7137,
|
1158 |
+
"step": 163
|
1159 |
+
},
|
1160 |
+
{
|
1161 |
+
"epoch": 0.2204486263967067,
|
1162 |
+
"grad_norm": 0.8984375,
|
1163 |
+
"learning_rate": 8.949855475488549e-06,
|
1164 |
+
"loss": 0.7041,
|
1165 |
+
"step": 164
|
1166 |
+
},
|
1167 |
+
{
|
1168 |
+
"epoch": 0.22179282533815003,
|
1169 |
+
"grad_norm": 0.98046875,
|
1170 |
+
"learning_rate": 8.936679749716452e-06,
|
1171 |
+
"loss": 0.6573,
|
1172 |
+
"step": 165
|
1173 |
+
},
|
1174 |
+
{
|
1175 |
+
"epoch": 0.2231370242795934,
|
1176 |
+
"grad_norm": 0.8984375,
|
1177 |
+
"learning_rate": 8.923431710138735e-06,
|
1178 |
+
"loss": 0.6694,
|
1179 |
+
"step": 166
|
1180 |
+
},
|
1181 |
+
{
|
1182 |
+
"epoch": 0.22448122322103672,
|
1183 |
+
"grad_norm": 0.94140625,
|
1184 |
+
"learning_rate": 8.910111600111786e-06,
|
1185 |
+
"loss": 0.6904,
|
1186 |
+
"step": 167
|
1187 |
+
},
|
1188 |
+
{
|
1189 |
+
"epoch": 0.22582542216248006,
|
1190 |
+
"grad_norm": 0.953125,
|
1191 |
+
"learning_rate": 8.896719664315866e-06,
|
1192 |
+
"loss": 0.679,
|
1193 |
+
"step": 168
|
1194 |
+
},
|
1195 |
+
{
|
1196 |
+
"epoch": 0.22716962110392339,
|
1197 |
+
"grad_norm": 0.9140625,
|
1198 |
+
"learning_rate": 8.883256148750634e-06,
|
1199 |
+
"loss": 0.6631,
|
1200 |
+
"step": 169
|
1201 |
+
},
|
1202 |
+
{
|
1203 |
+
"epoch": 0.22851382004536672,
|
1204 |
+
"grad_norm": 0.9765625,
|
1205 |
+
"learning_rate": 8.869721300730596e-06,
|
1206 |
+
"loss": 0.6576,
|
1207 |
+
"step": 170
|
1208 |
+
},
|
1209 |
+
{
|
1210 |
+
"epoch": 0.22985801898681005,
|
1211 |
+
"grad_norm": 0.9296875,
|
1212 |
+
"learning_rate": 8.856115368880598e-06,
|
1213 |
+
"loss": 0.6714,
|
1214 |
+
"step": 171
|
1215 |
+
},
|
1216 |
+
{
|
1217 |
+
"epoch": 0.23120221792825338,
|
1218 |
+
"grad_norm": 0.97265625,
|
1219 |
+
"learning_rate": 8.842438603131232e-06,
|
1220 |
+
"loss": 0.6572,
|
1221 |
+
"step": 172
|
1222 |
+
},
|
1223 |
+
{
|
1224 |
+
"epoch": 0.2325464168696967,
|
1225 |
+
"grad_norm": 0.91796875,
|
1226 |
+
"learning_rate": 8.828691254714259e-06,
|
1227 |
+
"loss": 0.6798,
|
1228 |
+
"step": 173
|
1229 |
+
},
|
1230 |
+
{
|
1231 |
+
"epoch": 0.23389061581114004,
|
1232 |
+
"grad_norm": 0.90234375,
|
1233 |
+
"learning_rate": 8.814873576157988e-06,
|
1234 |
+
"loss": 0.6934,
|
1235 |
+
"step": 174
|
1236 |
+
},
|
1237 |
+
{
|
1238 |
+
"epoch": 0.23523481475258337,
|
1239 |
+
"grad_norm": 1.0390625,
|
1240 |
+
"learning_rate": 8.800985821282637e-06,
|
1241 |
+
"loss": 0.6648,
|
1242 |
+
"step": 175
|
1243 |
+
},
|
1244 |
+
{
|
1245 |
+
"epoch": 0.23657901369402673,
|
1246 |
+
"grad_norm": 0.8203125,
|
1247 |
+
"learning_rate": 8.787028245195676e-06,
|
1248 |
+
"loss": 0.6705,
|
1249 |
+
"step": 176
|
1250 |
+
},
|
1251 |
+
{
|
1252 |
+
"epoch": 0.23792321263547006,
|
1253 |
+
"grad_norm": 0.8984375,
|
1254 |
+
"learning_rate": 8.773001104287137e-06,
|
1255 |
+
"loss": 0.6661,
|
1256 |
+
"step": 177
|
1257 |
+
},
|
1258 |
+
{
|
1259 |
+
"epoch": 0.2392674115769134,
|
1260 |
+
"grad_norm": 0.94140625,
|
1261 |
+
"learning_rate": 8.758904656224904e-06,
|
1262 |
+
"loss": 0.6968,
|
1263 |
+
"step": 178
|
1264 |
+
},
|
1265 |
+
{
|
1266 |
+
"epoch": 0.24061161051835672,
|
1267 |
+
"grad_norm": 0.94140625,
|
1268 |
+
"learning_rate": 8.744739159949981e-06,
|
1269 |
+
"loss": 0.6817,
|
1270 |
+
"step": 179
|
1271 |
+
},
|
1272 |
+
{
|
1273 |
+
"epoch": 0.24195580945980005,
|
1274 |
+
"grad_norm": 0.9296875,
|
1275 |
+
"learning_rate": 8.730504875671732e-06,
|
1276 |
+
"loss": 0.6704,
|
1277 |
+
"step": 180
|
1278 |
+
},
|
1279 |
+
{
|
1280 |
+
"epoch": 0.24330000840124338,
|
1281 |
+
"grad_norm": 0.90625,
|
1282 |
+
"learning_rate": 8.71620206486311e-06,
|
1283 |
+
"loss": 0.6484,
|
1284 |
+
"step": 181
|
1285 |
+
},
|
1286 |
+
{
|
1287 |
+
"epoch": 0.24464420734268671,
|
1288 |
+
"grad_norm": 0.8515625,
|
1289 |
+
"learning_rate": 8.701830990255843e-06,
|
1290 |
+
"loss": 0.6711,
|
1291 |
+
"step": 182
|
1292 |
+
},
|
1293 |
+
{
|
1294 |
+
"epoch": 0.24598840628413005,
|
1295 |
+
"grad_norm": 1.0234375,
|
1296 |
+
"learning_rate": 8.687391915835617e-06,
|
1297 |
+
"loss": 0.6526,
|
1298 |
+
"step": 183
|
1299 |
+
},
|
1300 |
+
{
|
1301 |
+
"epoch": 0.24733260522557338,
|
1302 |
+
"grad_norm": 0.87890625,
|
1303 |
+
"learning_rate": 8.672885106837216e-06,
|
1304 |
+
"loss": 0.6907,
|
1305 |
+
"step": 184
|
1306 |
+
},
|
1307 |
+
{
|
1308 |
+
"epoch": 0.2486768041670167,
|
1309 |
+
"grad_norm": 0.9609375,
|
1310 |
+
"learning_rate": 8.658310829739666e-06,
|
1311 |
+
"loss": 0.7003,
|
1312 |
+
"step": 185
|
1313 |
+
},
|
1314 |
+
{
|
1315 |
+
"epoch": 0.25002100310846004,
|
1316 |
+
"grad_norm": 0.85546875,
|
1317 |
+
"learning_rate": 8.643669352261321e-06,
|
1318 |
+
"loss": 0.6353,
|
1319 |
+
"step": 186
|
1320 |
+
},
|
1321 |
+
{
|
1322 |
+
"epoch": 0.25136520204990337,
|
1323 |
+
"grad_norm": 0.921875,
|
1324 |
+
"learning_rate": 8.628960943354965e-06,
|
1325 |
+
"loss": 0.6566,
|
1326 |
+
"step": 187
|
1327 |
+
},
|
1328 |
+
{
|
1329 |
+
"epoch": 0.2527094009913467,
|
1330 |
+
"grad_norm": 0.92578125,
|
1331 |
+
"learning_rate": 8.614185873202852e-06,
|
1332 |
+
"loss": 0.6676,
|
1333 |
+
"step": 188
|
1334 |
+
},
|
1335 |
+
{
|
1336 |
+
"epoch": 0.25405359993279003,
|
1337 |
+
"grad_norm": 0.953125,
|
1338 |
+
"learning_rate": 8.599344413211755e-06,
|
1339 |
+
"loss": 0.6647,
|
1340 |
+
"step": 189
|
1341 |
+
},
|
1342 |
+
{
|
1343 |
+
"epoch": 0.25539779887423336,
|
1344 |
+
"grad_norm": 0.9140625,
|
1345 |
+
"learning_rate": 8.58443683600798e-06,
|
1346 |
+
"loss": 0.6771,
|
1347 |
+
"step": 190
|
1348 |
+
},
|
1349 |
+
{
|
1350 |
+
"epoch": 0.2567419978156767,
|
1351 |
+
"grad_norm": 0.90234375,
|
1352 |
+
"learning_rate": 8.569463415432356e-06,
|
1353 |
+
"loss": 0.6629,
|
1354 |
+
"step": 191
|
1355 |
+
},
|
1356 |
+
{
|
1357 |
+
"epoch": 0.2580861967571201,
|
1358 |
+
"grad_norm": 0.91015625,
|
1359 |
+
"learning_rate": 8.554424426535202e-06,
|
1360 |
+
"loss": 0.7327,
|
1361 |
+
"step": 192
|
1362 |
+
},
|
1363 |
+
{
|
1364 |
+
"epoch": 0.2594303956985634,
|
1365 |
+
"grad_norm": 0.94921875,
|
1366 |
+
"learning_rate": 8.539320145571277e-06,
|
1367 |
+
"loss": 0.6809,
|
1368 |
+
"step": 193
|
1369 |
+
},
|
1370 |
+
{
|
1371 |
+
"epoch": 0.26077459464000674,
|
1372 |
+
"grad_norm": 0.875,
|
1373 |
+
"learning_rate": 8.524150849994708e-06,
|
1374 |
+
"loss": 0.6895,
|
1375 |
+
"step": 194
|
1376 |
+
},
|
1377 |
+
{
|
1378 |
+
"epoch": 0.26211879358145007,
|
1379 |
+
"grad_norm": 0.9140625,
|
1380 |
+
"learning_rate": 8.50891681845389e-06,
|
1381 |
+
"loss": 0.6739,
|
1382 |
+
"step": 195
|
1383 |
+
},
|
1384 |
+
{
|
1385 |
+
"epoch": 0.2634629925228934,
|
1386 |
+
"grad_norm": 0.96875,
|
1387 |
+
"learning_rate": 8.493618330786365e-06,
|
1388 |
+
"loss": 0.7063,
|
1389 |
+
"step": 196
|
1390 |
+
},
|
1391 |
+
{
|
1392 |
+
"epoch": 0.26480719146433673,
|
1393 |
+
"grad_norm": 0.85546875,
|
1394 |
+
"learning_rate": 8.47825566801369e-06,
|
1395 |
+
"loss": 0.6676,
|
1396 |
+
"step": 197
|
1397 |
+
},
|
1398 |
+
{
|
1399 |
+
"epoch": 0.26615139040578006,
|
1400 |
+
"grad_norm": 0.81640625,
|
1401 |
+
"learning_rate": 8.462829112336266e-06,
|
1402 |
+
"loss": 0.6842,
|
1403 |
+
"step": 198
|
1404 |
+
},
|
1405 |
+
{
|
1406 |
+
"epoch": 0.2674955893472234,
|
1407 |
+
"grad_norm": 0.90625,
|
1408 |
+
"learning_rate": 8.44733894712816e-06,
|
1409 |
+
"loss": 0.7045,
|
1410 |
+
"step": 199
|
1411 |
+
},
|
1412 |
+
{
|
1413 |
+
"epoch": 0.2688397882886667,
|
1414 |
+
"grad_norm": 1.015625,
|
1415 |
+
"learning_rate": 8.431785456931898e-06,
|
1416 |
+
"loss": 0.6569,
|
1417 |
+
"step": 200
|
1418 |
+
},
|
1419 |
+
{
|
1420 |
+
"epoch": 0.27018398723011006,
|
1421 |
+
"grad_norm": 0.91015625,
|
1422 |
+
"learning_rate": 8.416168927453237e-06,
|
1423 |
+
"loss": 0.679,
|
1424 |
+
"step": 201
|
1425 |
+
},
|
1426 |
+
{
|
1427 |
+
"epoch": 0.2715281861715534,
|
1428 |
+
"grad_norm": 0.8671875,
|
1429 |
+
"learning_rate": 8.400489645555914e-06,
|
1430 |
+
"loss": 0.6452,
|
1431 |
+
"step": 202
|
1432 |
+
},
|
1433 |
+
{
|
1434 |
+
"epoch": 0.2728723851129967,
|
1435 |
+
"grad_norm": 0.9296875,
|
1436 |
+
"learning_rate": 8.384747899256386e-06,
|
1437 |
+
"loss": 0.6744,
|
1438 |
+
"step": 203
|
1439 |
+
},
|
1440 |
+
{
|
1441 |
+
"epoch": 0.27421658405444005,
|
1442 |
+
"grad_norm": 0.91015625,
|
1443 |
+
"learning_rate": 8.368943977718528e-06,
|
1444 |
+
"loss": 0.6501,
|
1445 |
+
"step": 204
|
1446 |
+
},
|
1447 |
+
{
|
1448 |
+
"epoch": 0.2755607829958834,
|
1449 |
+
"grad_norm": 0.890625,
|
1450 |
+
"learning_rate": 8.353078171248335e-06,
|
1451 |
+
"loss": 0.666,
|
1452 |
+
"step": 205
|
1453 |
+
},
|
1454 |
+
{
|
1455 |
+
"epoch": 0.2769049819373267,
|
1456 |
+
"grad_norm": 0.87109375,
|
1457 |
+
"learning_rate": 8.337150771288571e-06,
|
1458 |
+
"loss": 0.6663,
|
1459 |
+
"step": 206
|
1460 |
+
},
|
1461 |
+
{
|
1462 |
+
"epoch": 0.27824918087877004,
|
1463 |
+
"grad_norm": 0.9296875,
|
1464 |
+
"learning_rate": 8.32116207041343e-06,
|
1465 |
+
"loss": 0.6481,
|
1466 |
+
"step": 207
|
1467 |
+
},
|
1468 |
+
{
|
1469 |
+
"epoch": 0.2795933798202134,
|
1470 |
+
"grad_norm": 0.921875,
|
1471 |
+
"learning_rate": 8.30511236232316e-06,
|
1472 |
+
"loss": 0.6884,
|
1473 |
+
"step": 208
|
1474 |
+
},
|
1475 |
+
{
|
1476 |
+
"epoch": 0.2809375787616567,
|
1477 |
+
"grad_norm": 0.890625,
|
1478 |
+
"learning_rate": 8.289001941838659e-06,
|
1479 |
+
"loss": 0.6562,
|
1480 |
+
"step": 209
|
1481 |
+
},
|
1482 |
+
{
|
1483 |
+
"epoch": 0.28228177770310003,
|
1484 |
+
"grad_norm": 0.8984375,
|
1485 |
+
"learning_rate": 8.27283110489607e-06,
|
1486 |
+
"loss": 0.7106,
|
1487 |
+
"step": 210
|
1488 |
+
},
|
1489 |
+
{
|
1490 |
+
"epoch": 0.28362597664454336,
|
1491 |
+
"grad_norm": 0.98046875,
|
1492 |
+
"learning_rate": 8.256600148541339e-06,
|
1493 |
+
"loss": 0.689,
|
1494 |
+
"step": 211
|
1495 |
+
},
|
1496 |
+
{
|
1497 |
+
"epoch": 0.28497017558598675,
|
1498 |
+
"grad_norm": 0.96484375,
|
1499 |
+
"learning_rate": 8.240309370924758e-06,
|
1500 |
+
"loss": 0.6683,
|
1501 |
+
"step": 212
|
1502 |
+
},
|
1503 |
+
{
|
1504 |
+
"epoch": 0.2863143745274301,
|
1505 |
+
"grad_norm": 0.921875,
|
1506 |
+
"learning_rate": 8.223959071295492e-06,
|
1507 |
+
"loss": 0.6866,
|
1508 |
+
"step": 213
|
1509 |
+
},
|
1510 |
+
{
|
1511 |
+
"epoch": 0.2876585734688734,
|
1512 |
+
"grad_norm": 0.94140625,
|
1513 |
+
"learning_rate": 8.207549549996083e-06,
|
1514 |
+
"loss": 0.6688,
|
1515 |
+
"step": 214
|
1516 |
+
},
|
1517 |
+
{
|
1518 |
+
"epoch": 0.28900277241031674,
|
1519 |
+
"grad_norm": 0.91796875,
|
1520 |
+
"learning_rate": 8.191081108456922e-06,
|
1521 |
+
"loss": 0.6721,
|
1522 |
+
"step": 215
|
1523 |
+
},
|
1524 |
+
{
|
1525 |
+
"epoch": 0.2903469713517601,
|
1526 |
+
"grad_norm": 0.89453125,
|
1527 |
+
"learning_rate": 8.174554049190726e-06,
|
1528 |
+
"loss": 0.6579,
|
1529 |
+
"step": 216
|
1530 |
+
},
|
1531 |
+
{
|
1532 |
+
"epoch": 0.2916911702932034,
|
1533 |
+
"grad_norm": 0.9609375,
|
1534 |
+
"learning_rate": 8.157968675786971e-06,
|
1535 |
+
"loss": 0.6841,
|
1536 |
+
"step": 217
|
1537 |
+
},
|
1538 |
+
{
|
1539 |
+
"epoch": 0.29303536923464674,
|
1540 |
+
"grad_norm": 0.93359375,
|
1541 |
+
"learning_rate": 8.141325292906325e-06,
|
1542 |
+
"loss": 0.6739,
|
1543 |
+
"step": 218
|
1544 |
+
},
|
1545 |
+
{
|
1546 |
+
"epoch": 0.29437956817609007,
|
1547 |
+
"grad_norm": 0.875,
|
1548 |
+
"learning_rate": 8.124624206275041e-06,
|
1549 |
+
"loss": 0.6544,
|
1550 |
+
"step": 219
|
1551 |
+
},
|
1552 |
+
{
|
1553 |
+
"epoch": 0.2957237671175334,
|
1554 |
+
"grad_norm": 0.97265625,
|
1555 |
+
"learning_rate": 8.107865722679347e-06,
|
1556 |
+
"loss": 0.6525,
|
1557 |
+
"step": 220
|
1558 |
+
},
|
1559 |
+
{
|
1560 |
+
"epoch": 0.29706796605897673,
|
1561 |
+
"grad_norm": 0.890625,
|
1562 |
+
"learning_rate": 8.091050149959808e-06,
|
1563 |
+
"loss": 0.6394,
|
1564 |
+
"step": 221
|
1565 |
+
},
|
1566 |
+
{
|
1567 |
+
"epoch": 0.29841216500042006,
|
1568 |
+
"grad_norm": 0.87890625,
|
1569 |
+
"learning_rate": 8.074177797005677e-06,
|
1570 |
+
"loss": 0.6674,
|
1571 |
+
"step": 222
|
1572 |
+
},
|
1573 |
+
{
|
1574 |
+
"epoch": 0.2997563639418634,
|
1575 |
+
"grad_norm": 0.984375,
|
1576 |
+
"learning_rate": 8.057248973749216e-06,
|
1577 |
+
"loss": 0.6749,
|
1578 |
+
"step": 223
|
1579 |
+
},
|
1580 |
+
{
|
1581 |
+
"epoch": 0.3011005628833067,
|
1582 |
+
"grad_norm": 1.0234375,
|
1583 |
+
"learning_rate": 8.040263991159996e-06,
|
1584 |
+
"loss": 0.7223,
|
1585 |
+
"step": 224
|
1586 |
+
},
|
1587 |
+
{
|
1588 |
+
"epoch": 0.30244476182475005,
|
1589 |
+
"grad_norm": 0.859375,
|
1590 |
+
"learning_rate": 8.0232231612392e-06,
|
1591 |
+
"loss": 0.6861,
|
1592 |
+
"step": 225
|
1593 |
+
},
|
1594 |
+
{
|
1595 |
+
"epoch": 0.3037889607661934,
|
1596 |
+
"grad_norm": 0.9140625,
|
1597 |
+
"learning_rate": 8.006126797013884e-06,
|
1598 |
+
"loss": 0.6883,
|
1599 |
+
"step": 226
|
1600 |
+
},
|
1601 |
+
{
|
1602 |
+
"epoch": 0.3051331597076367,
|
1603 |
+
"grad_norm": 0.94140625,
|
1604 |
+
"learning_rate": 7.98897521253122e-06,
|
1605 |
+
"loss": 0.655,
|
1606 |
+
"step": 227
|
1607 |
+
},
|
1608 |
+
{
|
1609 |
+
"epoch": 0.30647735864908004,
|
1610 |
+
"grad_norm": 0.8984375,
|
1611 |
+
"learning_rate": 7.971768722852741e-06,
|
1612 |
+
"loss": 0.6696,
|
1613 |
+
"step": 228
|
1614 |
+
},
|
1615 |
+
{
|
1616 |
+
"epoch": 0.3078215575905234,
|
1617 |
+
"grad_norm": 0.875,
|
1618 |
+
"learning_rate": 7.954507644048544e-06,
|
1619 |
+
"loss": 0.6676,
|
1620 |
+
"step": 229
|
1621 |
+
},
|
1622 |
+
{
|
1623 |
+
"epoch": 0.3091657565319667,
|
1624 |
+
"grad_norm": 0.8828125,
|
1625 |
+
"learning_rate": 7.937192293191485e-06,
|
1626 |
+
"loss": 0.6508,
|
1627 |
+
"step": 230
|
1628 |
+
},
|
1629 |
+
{
|
1630 |
+
"epoch": 0.31050995547341004,
|
1631 |
+
"grad_norm": 0.9375,
|
1632 |
+
"learning_rate": 7.919822988351359e-06,
|
1633 |
+
"loss": 0.6676,
|
1634 |
+
"step": 231
|
1635 |
+
},
|
1636 |
+
{
|
1637 |
+
"epoch": 0.3118541544148534,
|
1638 |
+
"grad_norm": 0.859375,
|
1639 |
+
"learning_rate": 7.902400048589051e-06,
|
1640 |
+
"loss": 0.6512,
|
1641 |
+
"step": 232
|
1642 |
+
},
|
1643 |
+
{
|
1644 |
+
"epoch": 0.31319835335629675,
|
1645 |
+
"grad_norm": 0.94140625,
|
1646 |
+
"learning_rate": 7.884923793950684e-06,
|
1647 |
+
"loss": 0.6846,
|
1648 |
+
"step": 233
|
1649 |
+
},
|
1650 |
+
{
|
1651 |
+
"epoch": 0.3145425522977401,
|
1652 |
+
"grad_norm": 0.8515625,
|
1653 |
+
"learning_rate": 7.86739454546173e-06,
|
1654 |
+
"loss": 0.6644,
|
1655 |
+
"step": 234
|
1656 |
+
},
|
1657 |
+
{
|
1658 |
+
"epoch": 0.3158867512391834,
|
1659 |
+
"grad_norm": 0.8828125,
|
1660 |
+
"learning_rate": 7.849812625121122e-06,
|
1661 |
+
"loss": 0.6701,
|
1662 |
+
"step": 235
|
1663 |
+
},
|
1664 |
+
{
|
1665 |
+
"epoch": 0.31723095018062675,
|
1666 |
+
"grad_norm": 0.94921875,
|
1667 |
+
"learning_rate": 7.832178355895327e-06,
|
1668 |
+
"loss": 0.6749,
|
1669 |
+
"step": 236
|
1670 |
+
},
|
1671 |
+
{
|
1672 |
+
"epoch": 0.3185751491220701,
|
1673 |
+
"grad_norm": 0.87890625,
|
1674 |
+
"learning_rate": 7.81449206171243e-06,
|
1675 |
+
"loss": 0.6584,
|
1676 |
+
"step": 237
|
1677 |
+
},
|
1678 |
+
{
|
1679 |
+
"epoch": 0.3199193480635134,
|
1680 |
+
"grad_norm": 0.890625,
|
1681 |
+
"learning_rate": 7.796754067456168e-06,
|
1682 |
+
"loss": 0.6685,
|
1683 |
+
"step": 238
|
1684 |
+
},
|
1685 |
+
{
|
1686 |
+
"epoch": 0.32126354700495674,
|
1687 |
+
"grad_norm": 0.8671875,
|
1688 |
+
"learning_rate": 7.778964698959973e-06,
|
1689 |
+
"loss": 0.6659,
|
1690 |
+
"step": 239
|
1691 |
+
},
|
1692 |
+
{
|
1693 |
+
"epoch": 0.32260774594640007,
|
1694 |
+
"grad_norm": 0.8671875,
|
1695 |
+
"learning_rate": 7.761124283000982e-06,
|
1696 |
+
"loss": 0.6647,
|
1697 |
+
"step": 240
|
1698 |
+
},
|
1699 |
+
{
|
1700 |
+
"epoch": 0.3239519448878434,
|
1701 |
+
"grad_norm": 0.9140625,
|
1702 |
+
"learning_rate": 7.743233147294036e-06,
|
1703 |
+
"loss": 0.6793,
|
1704 |
+
"step": 241
|
1705 |
+
},
|
1706 |
+
{
|
1707 |
+
"epoch": 0.32529614382928673,
|
1708 |
+
"grad_norm": 0.87109375,
|
1709 |
+
"learning_rate": 7.725291620485653e-06,
|
1710 |
+
"loss": 0.6633,
|
1711 |
+
"step": 242
|
1712 |
+
},
|
1713 |
+
{
|
1714 |
+
"epoch": 0.32664034277073006,
|
1715 |
+
"grad_norm": 0.90625,
|
1716 |
+
"learning_rate": 7.707300032148004e-06,
|
1717 |
+
"loss": 0.6812,
|
1718 |
+
"step": 243
|
1719 |
+
},
|
1720 |
+
{
|
1721 |
+
"epoch": 0.3279845417121734,
|
1722 |
+
"grad_norm": 0.88671875,
|
1723 |
+
"learning_rate": 7.689258712772851e-06,
|
1724 |
+
"loss": 0.6734,
|
1725 |
+
"step": 244
|
1726 |
+
},
|
1727 |
+
{
|
1728 |
+
"epoch": 0.3293287406536167,
|
1729 |
+
"grad_norm": 0.859375,
|
1730 |
+
"learning_rate": 7.671167993765474e-06,
|
1731 |
+
"loss": 0.6775,
|
1732 |
+
"step": 245
|
1733 |
+
},
|
1734 |
+
{
|
1735 |
+
"epoch": 0.33067293959506006,
|
1736 |
+
"grad_norm": 0.84375,
|
1737 |
+
"learning_rate": 7.653028207438588e-06,
|
1738 |
+
"loss": 0.6723,
|
1739 |
+
"step": 246
|
1740 |
+
},
|
1741 |
+
{
|
1742 |
+
"epoch": 0.3320171385365034,
|
1743 |
+
"grad_norm": 0.90625,
|
1744 |
+
"learning_rate": 7.634839687006242e-06,
|
1745 |
+
"loss": 0.6814,
|
1746 |
+
"step": 247
|
1747 |
+
},
|
1748 |
+
{
|
1749 |
+
"epoch": 0.3333613374779467,
|
1750 |
+
"grad_norm": 0.984375,
|
1751 |
+
"learning_rate": 7.616602766577683e-06,
|
1752 |
+
"loss": 0.6816,
|
1753 |
+
"step": 248
|
1754 |
+
},
|
1755 |
+
{
|
1756 |
+
"epoch": 0.3333613374779467,
|
1757 |
+
"eval_loss": 2.7341208457946777,
|
1758 |
+
"eval_runtime": 5734.9058,
|
1759 |
+
"eval_samples_per_second": 3.861,
|
1760 |
+
"eval_steps_per_second": 0.483,
|
1761 |
+
"step": 248
|
1762 |
+
}
|
1763 |
+
],
|
1764 |
+
"logging_steps": 1,
|
1765 |
+
"max_steps": 743,
|
1766 |
+
"num_input_tokens_seen": 0,
|
1767 |
+
"num_train_epochs": 1,
|
1768 |
+
"save_steps": 248,
|
1769 |
+
"stateful_callbacks": {
|
1770 |
+
"TrainerControl": {
|
1771 |
+
"args": {
|
1772 |
+
"should_epoch_stop": false,
|
1773 |
+
"should_evaluate": false,
|
1774 |
+
"should_log": false,
|
1775 |
+
"should_save": true,
|
1776 |
+
"should_training_stop": false
|
1777 |
+
},
|
1778 |
+
"attributes": {}
|
1779 |
+
}
|
1780 |
+
},
|
1781 |
+
"total_flos": 5.854896016293102e+18,
|
1782 |
+
"train_batch_size": 8,
|
1783 |
+
"trial_name": null,
|
1784 |
+
"trial_params": null
|
1785 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b173f6d4a254e989afcf7bb9a2603e7d9477e1c72dba5e290942922b65a43ae5
|
3 |
+
size 6200
|