first commit
Browse files- README.md +60 -3
- added_tokens.json +10 -0
- all_results.json +13 -0
- config.json +26 -0
- eval.png +0 -0
- eval_results.json +8 -0
- generation_config.json +6 -0
- model-00001-of-00003.safetensors +3 -0
- model-00002-of-00003.safetensors +3 -0
- model-00003-of-00003.safetensors +3 -0
- model.safetensors.index.json +298 -0
- runs/Mar17_15-29-39_pt-c2eleuba-worker-0/events.out.tfevents.1710660722.pt-c2eleuba-worker-0.37.0 +3 -0
- runs/Mar17_15-29-39_pt-c2eleuba-worker-0/events.out.tfevents.1710666976.pt-c2eleuba-worker-0.37.1 +3 -0
- special_tokens_map.json +82 -0
- tokenizer.json +0 -0
- tokenizer.model +3 -0
- tokenizer_config.json +116 -0
- train_results.json +8 -0
- trainer_state.json +1580 -0
- training_args.bin +3 -0
README.md
CHANGED
@@ -1,3 +1,60 @@
|
|
1 |
-
---
|
2 |
-
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
base_model: Mistral-7B-v0.1
|
3 |
+
tags:
|
4 |
+
- math
|
5 |
+
model-index:
|
6 |
+
- name: Mistral-7B-v0.1-lce
|
7 |
+
results: []
|
8 |
+
license: apache-2.0
|
9 |
+
language:
|
10 |
+
- en
|
11 |
+
metrics:
|
12 |
+
- accuracy
|
13 |
+
pipeline_tag: text-generation
|
14 |
+
---
|
15 |
+
|
16 |
+
# Mistral-7B-Ours-SFT
|
17 |
+
|
18 |
+
This model is a fine-tuned version of Mistral-7B-v0.1.
|
19 |
+
It achieves the following results on the evaluation set:
|
20 |
+
|
21 |
+
- Loss: 0.2716
|
22 |
+
|
23 |
+
## Model description
|
24 |
+
|
25 |
+
This is a model fine-tuned for mathematical problem-solving.
|
26 |
+
|
27 |
+
## Intended uses & limitations
|
28 |
+
|
29 |
+
The model is intended for solving math problems.
|
30 |
+
|
31 |
+
## Training and evaluation data
|
32 |
+
|
33 |
+
![eval](eval.png)
|
34 |
+
|
35 |
+
## Training procedure
|
36 |
+
|
37 |
+
### Training hyperparameters
|
38 |
+
|
39 |
+
The following hyperparameters were used during training:
|
40 |
+
- learning_rate: 1e-05
|
41 |
+
- train_batch_size: 4
|
42 |
+
- eval_batch_size: 4
|
43 |
+
- seed: 42
|
44 |
+
- distributed_type: multi-GPU
|
45 |
+
- num_devices: 8
|
46 |
+
- gradient_accumulation_steps: 2
|
47 |
+
- total_train_batch_size: 64
|
48 |
+
- total_eval_batch_size: 32
|
49 |
+
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
|
50 |
+
- lr_scheduler_type: cosine
|
51 |
+
- lr_scheduler_warmup_ratio: 0.1
|
52 |
+
- num_epochs: 3
|
53 |
+
|
54 |
+
|
55 |
+
### Framework versions
|
56 |
+
|
57 |
+
- Transformers 4.38.2
|
58 |
+
- Pytorch 2.1.2
|
59 |
+
- Datasets 2.14.6
|
60 |
+
- Tokenizers 0.15.2
|
added_tokens.json
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"<|assistant|>": 32002,
|
3 |
+
"<|code|>": 32004,
|
4 |
+
"<|endofblock|>": 32006,
|
5 |
+
"<|endofmessage|>": 32007,
|
6 |
+
"<|execution|>": 32005,
|
7 |
+
"<|system|>": 32001,
|
8 |
+
"<|text|>": 32003,
|
9 |
+
"<|user|>": 32000
|
10 |
+
}
|
all_results.json
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"epoch": 3.0,
|
3 |
+
"eval_loss": 0.27156856656074524,
|
4 |
+
"eval_runtime": 0.7223,
|
5 |
+
"eval_samples": 80,
|
6 |
+
"eval_samples_per_second": 29.074,
|
7 |
+
"eval_steps_per_second": 1.384,
|
8 |
+
"train_loss": 0.3156235526196994,
|
9 |
+
"train_runtime": 6236.2054,
|
10 |
+
"train_samples": 81007,
|
11 |
+
"train_samples_per_second": 11.165,
|
12 |
+
"train_steps_per_second": 0.175
|
13 |
+
}
|
config.json
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "/mnt/cache/sharemath/models/mistral/Mistral-7B-v0.1",
|
3 |
+
"architectures": [
|
4 |
+
"MistralForCausalLM"
|
5 |
+
],
|
6 |
+
"attention_dropout": 0.0,
|
7 |
+
"bos_token_id": 1,
|
8 |
+
"eos_token_id": 2,
|
9 |
+
"hidden_act": "silu",
|
10 |
+
"hidden_size": 4096,
|
11 |
+
"initializer_range": 0.02,
|
12 |
+
"intermediate_size": 14336,
|
13 |
+
"max_position_embeddings": 32768,
|
14 |
+
"model_type": "mistral",
|
15 |
+
"num_attention_heads": 32,
|
16 |
+
"num_hidden_layers": 32,
|
17 |
+
"num_key_value_heads": 8,
|
18 |
+
"rms_norm_eps": 1e-05,
|
19 |
+
"rope_theta": 10000.0,
|
20 |
+
"sliding_window": 4096,
|
21 |
+
"tie_word_embeddings": false,
|
22 |
+
"torch_dtype": "bfloat16",
|
23 |
+
"transformers_version": "4.38.2",
|
24 |
+
"use_cache": true,
|
25 |
+
"vocab_size": 32128
|
26 |
+
}
|
eval.png
ADDED
eval_results.json
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"epoch": 3.0,
|
3 |
+
"eval_loss": 0.27156856656074524,
|
4 |
+
"eval_runtime": 0.7223,
|
5 |
+
"eval_samples": 80,
|
6 |
+
"eval_samples_per_second": 29.074,
|
7 |
+
"eval_steps_per_second": 1.384
|
8 |
+
}
|
generation_config.json
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_from_model_config": true,
|
3 |
+
"bos_token_id": 1,
|
4 |
+
"eos_token_id": 2,
|
5 |
+
"transformers_version": "4.38.2"
|
6 |
+
}
|
model-00001-of-00003.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:eef0869a7972dc32313f6a5aba9f053f6e6d5ca2bdb3b2b3866e936ca935b0bc
|
3 |
+
size 4944210912
|
model-00002-of-00003.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4d0fa4c27a22b5bf3f9eb332c1fe29873a2c03bd54a6dc8db2bb6d1d9a8d5e70
|
3 |
+
size 4999819336
|
model-00003-of-00003.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3c01197344bb85ee68718984d7c63cd3129aa6d907e86c61b77334cbb6fc2b5e
|
3 |
+
size 4541564920
|
model.safetensors.index.json
ADDED
@@ -0,0 +1,298 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"metadata": {
|
3 |
+
"total_size": 14485561344
|
4 |
+
},
|
5 |
+
"weight_map": {
|
6 |
+
"lm_head.weight": "model-00003-of-00003.safetensors",
|
7 |
+
"model.embed_tokens.weight": "model-00001-of-00003.safetensors",
|
8 |
+
"model.layers.0.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
9 |
+
"model.layers.0.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
10 |
+
"model.layers.0.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
11 |
+
"model.layers.0.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
12 |
+
"model.layers.0.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
13 |
+
"model.layers.0.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
14 |
+
"model.layers.0.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
15 |
+
"model.layers.0.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
16 |
+
"model.layers.0.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
17 |
+
"model.layers.1.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
18 |
+
"model.layers.1.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
19 |
+
"model.layers.1.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
20 |
+
"model.layers.1.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
21 |
+
"model.layers.1.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
22 |
+
"model.layers.1.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
23 |
+
"model.layers.1.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
24 |
+
"model.layers.1.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
25 |
+
"model.layers.1.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
26 |
+
"model.layers.10.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
27 |
+
"model.layers.10.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
28 |
+
"model.layers.10.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
29 |
+
"model.layers.10.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
30 |
+
"model.layers.10.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
31 |
+
"model.layers.10.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
32 |
+
"model.layers.10.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
33 |
+
"model.layers.10.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
34 |
+
"model.layers.10.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
35 |
+
"model.layers.11.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
36 |
+
"model.layers.11.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
37 |
+
"model.layers.11.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
38 |
+
"model.layers.11.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
39 |
+
"model.layers.11.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
40 |
+
"model.layers.11.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
41 |
+
"model.layers.11.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
42 |
+
"model.layers.11.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
43 |
+
"model.layers.11.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
44 |
+
"model.layers.12.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
45 |
+
"model.layers.12.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
46 |
+
"model.layers.12.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
47 |
+
"model.layers.12.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
48 |
+
"model.layers.12.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
49 |
+
"model.layers.12.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
50 |
+
"model.layers.12.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
51 |
+
"model.layers.12.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
52 |
+
"model.layers.12.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
53 |
+
"model.layers.13.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
54 |
+
"model.layers.13.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
55 |
+
"model.layers.13.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
56 |
+
"model.layers.13.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
57 |
+
"model.layers.13.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
58 |
+
"model.layers.13.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
59 |
+
"model.layers.13.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
60 |
+
"model.layers.13.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
61 |
+
"model.layers.13.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
62 |
+
"model.layers.14.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
63 |
+
"model.layers.14.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
64 |
+
"model.layers.14.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
65 |
+
"model.layers.14.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
66 |
+
"model.layers.14.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
67 |
+
"model.layers.14.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
68 |
+
"model.layers.14.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
69 |
+
"model.layers.14.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
70 |
+
"model.layers.14.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
71 |
+
"model.layers.15.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
72 |
+
"model.layers.15.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
73 |
+
"model.layers.15.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
74 |
+
"model.layers.15.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
75 |
+
"model.layers.15.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
76 |
+
"model.layers.15.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
77 |
+
"model.layers.15.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
78 |
+
"model.layers.15.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
79 |
+
"model.layers.15.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
80 |
+
"model.layers.16.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
81 |
+
"model.layers.16.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
82 |
+
"model.layers.16.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
83 |
+
"model.layers.16.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
84 |
+
"model.layers.16.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
85 |
+
"model.layers.16.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
86 |
+
"model.layers.16.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
87 |
+
"model.layers.16.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
88 |
+
"model.layers.16.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
89 |
+
"model.layers.17.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
90 |
+
"model.layers.17.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
91 |
+
"model.layers.17.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
92 |
+
"model.layers.17.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
93 |
+
"model.layers.17.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
94 |
+
"model.layers.17.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
95 |
+
"model.layers.17.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
96 |
+
"model.layers.17.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
97 |
+
"model.layers.17.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
98 |
+
"model.layers.18.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
99 |
+
"model.layers.18.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
100 |
+
"model.layers.18.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
101 |
+
"model.layers.18.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
102 |
+
"model.layers.18.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
103 |
+
"model.layers.18.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
104 |
+
"model.layers.18.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
105 |
+
"model.layers.18.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
106 |
+
"model.layers.18.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
107 |
+
"model.layers.19.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
108 |
+
"model.layers.19.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
109 |
+
"model.layers.19.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
110 |
+
"model.layers.19.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
111 |
+
"model.layers.19.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
112 |
+
"model.layers.19.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
113 |
+
"model.layers.19.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
114 |
+
"model.layers.19.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
115 |
+
"model.layers.19.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
116 |
+
"model.layers.2.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
117 |
+
"model.layers.2.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
118 |
+
"model.layers.2.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
119 |
+
"model.layers.2.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
120 |
+
"model.layers.2.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
121 |
+
"model.layers.2.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
122 |
+
"model.layers.2.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
123 |
+
"model.layers.2.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
124 |
+
"model.layers.2.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
125 |
+
"model.layers.20.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
126 |
+
"model.layers.20.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
127 |
+
"model.layers.20.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
128 |
+
"model.layers.20.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
129 |
+
"model.layers.20.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
130 |
+
"model.layers.20.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
131 |
+
"model.layers.20.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
132 |
+
"model.layers.20.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
133 |
+
"model.layers.20.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
134 |
+
"model.layers.21.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
135 |
+
"model.layers.21.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
136 |
+
"model.layers.21.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
137 |
+
"model.layers.21.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
138 |
+
"model.layers.21.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
139 |
+
"model.layers.21.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
140 |
+
"model.layers.21.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
141 |
+
"model.layers.21.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
142 |
+
"model.layers.21.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
143 |
+
"model.layers.22.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
144 |
+
"model.layers.22.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
145 |
+
"model.layers.22.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
146 |
+
"model.layers.22.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
147 |
+
"model.layers.22.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
148 |
+
"model.layers.22.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
149 |
+
"model.layers.22.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
150 |
+
"model.layers.22.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
151 |
+
"model.layers.22.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
152 |
+
"model.layers.23.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
153 |
+
"model.layers.23.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
154 |
+
"model.layers.23.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
155 |
+
"model.layers.23.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
156 |
+
"model.layers.23.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
157 |
+
"model.layers.23.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
158 |
+
"model.layers.23.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
159 |
+
"model.layers.23.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
160 |
+
"model.layers.23.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
161 |
+
"model.layers.24.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
162 |
+
"model.layers.24.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
163 |
+
"model.layers.24.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
164 |
+
"model.layers.24.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
165 |
+
"model.layers.24.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
166 |
+
"model.layers.24.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
167 |
+
"model.layers.24.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
168 |
+
"model.layers.24.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
169 |
+
"model.layers.24.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
170 |
+
"model.layers.25.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
171 |
+
"model.layers.25.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
172 |
+
"model.layers.25.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
173 |
+
"model.layers.25.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
174 |
+
"model.layers.25.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
175 |
+
"model.layers.25.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
176 |
+
"model.layers.25.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
177 |
+
"model.layers.25.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
178 |
+
"model.layers.25.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
179 |
+
"model.layers.26.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
180 |
+
"model.layers.26.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
181 |
+
"model.layers.26.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
182 |
+
"model.layers.26.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
183 |
+
"model.layers.26.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
184 |
+
"model.layers.26.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
185 |
+
"model.layers.26.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
186 |
+
"model.layers.26.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
187 |
+
"model.layers.26.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
188 |
+
"model.layers.27.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
189 |
+
"model.layers.27.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
190 |
+
"model.layers.27.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
191 |
+
"model.layers.27.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
192 |
+
"model.layers.27.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
193 |
+
"model.layers.27.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
194 |
+
"model.layers.27.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
195 |
+
"model.layers.27.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
196 |
+
"model.layers.27.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
197 |
+
"model.layers.28.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
198 |
+
"model.layers.28.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
199 |
+
"model.layers.28.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
200 |
+
"model.layers.28.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
201 |
+
"model.layers.28.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
202 |
+
"model.layers.28.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
203 |
+
"model.layers.28.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
204 |
+
"model.layers.28.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
205 |
+
"model.layers.28.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
206 |
+
"model.layers.29.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
207 |
+
"model.layers.29.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
208 |
+
"model.layers.29.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
209 |
+
"model.layers.29.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
210 |
+
"model.layers.29.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
211 |
+
"model.layers.29.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
212 |
+
"model.layers.29.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
213 |
+
"model.layers.29.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
214 |
+
"model.layers.29.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
215 |
+
"model.layers.3.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
216 |
+
"model.layers.3.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
217 |
+
"model.layers.3.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
218 |
+
"model.layers.3.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
219 |
+
"model.layers.3.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
220 |
+
"model.layers.3.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
221 |
+
"model.layers.3.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
222 |
+
"model.layers.3.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
223 |
+
"model.layers.3.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
224 |
+
"model.layers.30.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
225 |
+
"model.layers.30.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
226 |
+
"model.layers.30.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
227 |
+
"model.layers.30.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
228 |
+
"model.layers.30.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
229 |
+
"model.layers.30.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
230 |
+
"model.layers.30.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
231 |
+
"model.layers.30.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
232 |
+
"model.layers.30.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
233 |
+
"model.layers.31.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
234 |
+
"model.layers.31.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
235 |
+
"model.layers.31.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
236 |
+
"model.layers.31.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
237 |
+
"model.layers.31.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
238 |
+
"model.layers.31.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
239 |
+
"model.layers.31.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
240 |
+
"model.layers.31.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
241 |
+
"model.layers.31.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
242 |
+
"model.layers.4.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
243 |
+
"model.layers.4.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
244 |
+
"model.layers.4.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
245 |
+
"model.layers.4.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
246 |
+
"model.layers.4.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
247 |
+
"model.layers.4.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
248 |
+
"model.layers.4.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
249 |
+
"model.layers.4.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
250 |
+
"model.layers.4.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
251 |
+
"model.layers.5.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
252 |
+
"model.layers.5.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
253 |
+
"model.layers.5.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
254 |
+
"model.layers.5.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
255 |
+
"model.layers.5.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
256 |
+
"model.layers.5.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
257 |
+
"model.layers.5.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
258 |
+
"model.layers.5.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
259 |
+
"model.layers.5.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
260 |
+
"model.layers.6.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
261 |
+
"model.layers.6.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
262 |
+
"model.layers.6.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
263 |
+
"model.layers.6.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
264 |
+
"model.layers.6.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
265 |
+
"model.layers.6.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
266 |
+
"model.layers.6.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
267 |
+
"model.layers.6.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
268 |
+
"model.layers.6.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
269 |
+
"model.layers.7.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
270 |
+
"model.layers.7.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
271 |
+
"model.layers.7.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
272 |
+
"model.layers.7.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
273 |
+
"model.layers.7.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
274 |
+
"model.layers.7.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
275 |
+
"model.layers.7.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
276 |
+
"model.layers.7.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
277 |
+
"model.layers.7.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
278 |
+
"model.layers.8.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
279 |
+
"model.layers.8.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
280 |
+
"model.layers.8.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
281 |
+
"model.layers.8.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
282 |
+
"model.layers.8.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
283 |
+
"model.layers.8.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
284 |
+
"model.layers.8.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
285 |
+
"model.layers.8.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
286 |
+
"model.layers.8.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
287 |
+
"model.layers.9.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
288 |
+
"model.layers.9.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
289 |
+
"model.layers.9.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
290 |
+
"model.layers.9.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
291 |
+
"model.layers.9.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
292 |
+
"model.layers.9.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
293 |
+
"model.layers.9.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
294 |
+
"model.layers.9.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
295 |
+
"model.layers.9.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
296 |
+
"model.norm.weight": "model-00003-of-00003.safetensors"
|
297 |
+
}
|
298 |
+
}
|
runs/Mar17_15-29-39_pt-c2eleuba-worker-0/events.out.tfevents.1710660722.pt-c2eleuba-worker-0.37.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:668294157c380c2e6ece132929d74d6ffbb109b37246280604cd8b48936ceefc
|
3 |
+
size 51919
|
runs/Mar17_15-29-39_pt-c2eleuba-worker-0/events.out.tfevents.1710666976.pt-c2eleuba-worker-0.37.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:15f72179de1bd13685522d5f4b3dac6459042220606d1fdfd21530cca60b4fe0
|
3 |
+
size 359
|
special_tokens_map.json
ADDED
@@ -0,0 +1,82 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"additional_special_tokens": [
|
3 |
+
{
|
4 |
+
"content": "<|user|>",
|
5 |
+
"lstrip": false,
|
6 |
+
"normalized": false,
|
7 |
+
"rstrip": false,
|
8 |
+
"single_word": false
|
9 |
+
},
|
10 |
+
{
|
11 |
+
"content": "<|system|>",
|
12 |
+
"lstrip": false,
|
13 |
+
"normalized": false,
|
14 |
+
"rstrip": false,
|
15 |
+
"single_word": false
|
16 |
+
},
|
17 |
+
{
|
18 |
+
"content": "<|assistant|>",
|
19 |
+
"lstrip": false,
|
20 |
+
"normalized": false,
|
21 |
+
"rstrip": false,
|
22 |
+
"single_word": false
|
23 |
+
},
|
24 |
+
{
|
25 |
+
"content": "<|text|>",
|
26 |
+
"lstrip": false,
|
27 |
+
"normalized": false,
|
28 |
+
"rstrip": false,
|
29 |
+
"single_word": false
|
30 |
+
},
|
31 |
+
{
|
32 |
+
"content": "<|code|>",
|
33 |
+
"lstrip": false,
|
34 |
+
"normalized": false,
|
35 |
+
"rstrip": false,
|
36 |
+
"single_word": false
|
37 |
+
},
|
38 |
+
{
|
39 |
+
"content": "<|execution|>",
|
40 |
+
"lstrip": false,
|
41 |
+
"normalized": false,
|
42 |
+
"rstrip": false,
|
43 |
+
"single_word": false
|
44 |
+
},
|
45 |
+
{
|
46 |
+
"content": "<|endofblock|>",
|
47 |
+
"lstrip": false,
|
48 |
+
"normalized": false,
|
49 |
+
"rstrip": false,
|
50 |
+
"single_word": false
|
51 |
+
},
|
52 |
+
{
|
53 |
+
"content": "<|endofmessage|>",
|
54 |
+
"lstrip": false,
|
55 |
+
"normalized": false,
|
56 |
+
"rstrip": false,
|
57 |
+
"single_word": false
|
58 |
+
}
|
59 |
+
],
|
60 |
+
"bos_token": {
|
61 |
+
"content": "<s>",
|
62 |
+
"lstrip": false,
|
63 |
+
"normalized": true,
|
64 |
+
"rstrip": false,
|
65 |
+
"single_word": false
|
66 |
+
},
|
67 |
+
"eos_token": {
|
68 |
+
"content": "</s>",
|
69 |
+
"lstrip": false,
|
70 |
+
"normalized": true,
|
71 |
+
"rstrip": false,
|
72 |
+
"single_word": false
|
73 |
+
},
|
74 |
+
"pad_token": "</s>",
|
75 |
+
"unk_token": {
|
76 |
+
"content": "<unk>",
|
77 |
+
"lstrip": false,
|
78 |
+
"normalized": true,
|
79 |
+
"rstrip": false,
|
80 |
+
"single_word": false
|
81 |
+
}
|
82 |
+
}
|
tokenizer.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
tokenizer.model
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:dadfd56d766715c61d2ef780a525ab43b8e6da4de6865bda3d95fdef5e134055
|
3 |
+
size 493443
|
tokenizer_config.json
ADDED
@@ -0,0 +1,116 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"add_bos_token": true,
|
3 |
+
"add_eos_token": false,
|
4 |
+
"added_tokens_decoder": {
|
5 |
+
"0": {
|
6 |
+
"content": "<unk>",
|
7 |
+
"lstrip": false,
|
8 |
+
"normalized": true,
|
9 |
+
"rstrip": false,
|
10 |
+
"single_word": false,
|
11 |
+
"special": true
|
12 |
+
},
|
13 |
+
"1": {
|
14 |
+
"content": "<s>",
|
15 |
+
"lstrip": false,
|
16 |
+
"normalized": true,
|
17 |
+
"rstrip": false,
|
18 |
+
"single_word": false,
|
19 |
+
"special": true
|
20 |
+
},
|
21 |
+
"2": {
|
22 |
+
"content": "</s>",
|
23 |
+
"lstrip": false,
|
24 |
+
"normalized": true,
|
25 |
+
"rstrip": false,
|
26 |
+
"single_word": false,
|
27 |
+
"special": true
|
28 |
+
},
|
29 |
+
"32000": {
|
30 |
+
"content": "<|user|>",
|
31 |
+
"lstrip": false,
|
32 |
+
"normalized": false,
|
33 |
+
"rstrip": false,
|
34 |
+
"single_word": false,
|
35 |
+
"special": true
|
36 |
+
},
|
37 |
+
"32001": {
|
38 |
+
"content": "<|system|>",
|
39 |
+
"lstrip": false,
|
40 |
+
"normalized": false,
|
41 |
+
"rstrip": false,
|
42 |
+
"single_word": false,
|
43 |
+
"special": true
|
44 |
+
},
|
45 |
+
"32002": {
|
46 |
+
"content": "<|assistant|>",
|
47 |
+
"lstrip": false,
|
48 |
+
"normalized": false,
|
49 |
+
"rstrip": false,
|
50 |
+
"single_word": false,
|
51 |
+
"special": true
|
52 |
+
},
|
53 |
+
"32003": {
|
54 |
+
"content": "<|text|>",
|
55 |
+
"lstrip": false,
|
56 |
+
"normalized": false,
|
57 |
+
"rstrip": false,
|
58 |
+
"single_word": false,
|
59 |
+
"special": true
|
60 |
+
},
|
61 |
+
"32004": {
|
62 |
+
"content": "<|code|>",
|
63 |
+
"lstrip": false,
|
64 |
+
"normalized": false,
|
65 |
+
"rstrip": false,
|
66 |
+
"single_word": false,
|
67 |
+
"special": true
|
68 |
+
},
|
69 |
+
"32005": {
|
70 |
+
"content": "<|execution|>",
|
71 |
+
"lstrip": false,
|
72 |
+
"normalized": false,
|
73 |
+
"rstrip": false,
|
74 |
+
"single_word": false,
|
75 |
+
"special": true
|
76 |
+
},
|
77 |
+
"32006": {
|
78 |
+
"content": "<|endofblock|>",
|
79 |
+
"lstrip": false,
|
80 |
+
"normalized": false,
|
81 |
+
"rstrip": false,
|
82 |
+
"single_word": false,
|
83 |
+
"special": true
|
84 |
+
},
|
85 |
+
"32007": {
|
86 |
+
"content": "<|endofmessage|>",
|
87 |
+
"lstrip": false,
|
88 |
+
"normalized": false,
|
89 |
+
"rstrip": false,
|
90 |
+
"single_word": false,
|
91 |
+
"special": true
|
92 |
+
}
|
93 |
+
},
|
94 |
+
"additional_special_tokens": [
|
95 |
+
"<|user|>",
|
96 |
+
"<|system|>",
|
97 |
+
"<|assistant|>",
|
98 |
+
"<|text|>",
|
99 |
+
"<|code|>",
|
100 |
+
"<|execution|>",
|
101 |
+
"<|endofblock|>",
|
102 |
+
"<|endofmessage|>"
|
103 |
+
],
|
104 |
+
"bos_token": "<s>",
|
105 |
+
"chat_template": "{% for message in messages %}\n{% if message['role'] == 'user' %}\n{{ '<|user|>' }}{% elif message['role'] == 'system' %}\n{{ '<|system|>' }}{% elif message['role'] == 'assistant' %}\n{{ '<|assistant|>' }}{% endif %}\n{% for block in message['content'] %}\n{% if block['type'] == 'text' %}\n{{ '<|text|>' }}{% elif block['type'] == 'code' %}\n{{ '<|code|>' }}{% elif block['type'] == 'execution' %}\n{{ '<|execution|>' }}{% endif %}\n{{ block['content'] + '<|endofblock|>' }}{% endfor %}\n{{ '<|endofmessage|>' }}{% endfor %}",
|
106 |
+
"clean_up_tokenization_spaces": false,
|
107 |
+
"eos_token": "</s>",
|
108 |
+
"legacy": true,
|
109 |
+
"model_max_length": 2048,
|
110 |
+
"pad_token": "</s>",
|
111 |
+
"sp_model_kwargs": {},
|
112 |
+
"spaces_between_special_tokens": false,
|
113 |
+
"tokenizer_class": "LlamaTokenizer",
|
114 |
+
"unk_token": "<unk>",
|
115 |
+
"use_default_system_prompt": true
|
116 |
+
}
|
train_results.json
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"epoch": 3.0,
|
3 |
+
"train_loss": 0.3156235526196994,
|
4 |
+
"train_runtime": 6236.2054,
|
5 |
+
"train_samples": 81007,
|
6 |
+
"train_samples_per_second": 11.165,
|
7 |
+
"train_steps_per_second": 0.175
|
8 |
+
}
|
trainer_state.json
ADDED
@@ -0,0 +1,1580 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"best_metric": null,
|
3 |
+
"best_model_checkpoint": null,
|
4 |
+
"epoch": 3.0,
|
5 |
+
"eval_steps": 500,
|
6 |
+
"global_step": 1089,
|
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.0,
|
13 |
+
"grad_norm": 482.9424331713062,
|
14 |
+
"learning_rate": 9.174311926605506e-08,
|
15 |
+
"loss": 3.4943,
|
16 |
+
"step": 1
|
17 |
+
},
|
18 |
+
{
|
19 |
+
"epoch": 0.01,
|
20 |
+
"grad_norm": 464.5597009797656,
|
21 |
+
"learning_rate": 4.587155963302753e-07,
|
22 |
+
"loss": 3.4503,
|
23 |
+
"step": 5
|
24 |
+
},
|
25 |
+
{
|
26 |
+
"epoch": 0.03,
|
27 |
+
"grad_norm": 100.13740932500578,
|
28 |
+
"learning_rate": 9.174311926605506e-07,
|
29 |
+
"loss": 2.2737,
|
30 |
+
"step": 10
|
31 |
+
},
|
32 |
+
{
|
33 |
+
"epoch": 0.04,
|
34 |
+
"grad_norm": 39.17620710874241,
|
35 |
+
"learning_rate": 1.3761467889908258e-06,
|
36 |
+
"loss": 1.0059,
|
37 |
+
"step": 15
|
38 |
+
},
|
39 |
+
{
|
40 |
+
"epoch": 0.06,
|
41 |
+
"grad_norm": 18.07390105117993,
|
42 |
+
"learning_rate": 1.8348623853211011e-06,
|
43 |
+
"loss": 0.8065,
|
44 |
+
"step": 20
|
45 |
+
},
|
46 |
+
{
|
47 |
+
"epoch": 0.07,
|
48 |
+
"grad_norm": 9.975454018413377,
|
49 |
+
"learning_rate": 2.2935779816513764e-06,
|
50 |
+
"loss": 0.6968,
|
51 |
+
"step": 25
|
52 |
+
},
|
53 |
+
{
|
54 |
+
"epoch": 0.08,
|
55 |
+
"grad_norm": 7.488660433798423,
|
56 |
+
"learning_rate": 2.7522935779816517e-06,
|
57 |
+
"loss": 0.6259,
|
58 |
+
"step": 30
|
59 |
+
},
|
60 |
+
{
|
61 |
+
"epoch": 0.1,
|
62 |
+
"grad_norm": 5.334133955551258,
|
63 |
+
"learning_rate": 3.211009174311927e-06,
|
64 |
+
"loss": 0.588,
|
65 |
+
"step": 35
|
66 |
+
},
|
67 |
+
{
|
68 |
+
"epoch": 0.11,
|
69 |
+
"grad_norm": 3.6202860181289047,
|
70 |
+
"learning_rate": 3.6697247706422022e-06,
|
71 |
+
"loss": 0.5455,
|
72 |
+
"step": 40
|
73 |
+
},
|
74 |
+
{
|
75 |
+
"epoch": 0.12,
|
76 |
+
"grad_norm": 3.1626175750631953,
|
77 |
+
"learning_rate": 4.128440366972478e-06,
|
78 |
+
"loss": 0.5367,
|
79 |
+
"step": 45
|
80 |
+
},
|
81 |
+
{
|
82 |
+
"epoch": 0.14,
|
83 |
+
"grad_norm": 2.696473869878566,
|
84 |
+
"learning_rate": 4.587155963302753e-06,
|
85 |
+
"loss": 0.5142,
|
86 |
+
"step": 50
|
87 |
+
},
|
88 |
+
{
|
89 |
+
"epoch": 0.15,
|
90 |
+
"grad_norm": 2.618221659772195,
|
91 |
+
"learning_rate": 5.045871559633028e-06,
|
92 |
+
"loss": 0.508,
|
93 |
+
"step": 55
|
94 |
+
},
|
95 |
+
{
|
96 |
+
"epoch": 0.17,
|
97 |
+
"grad_norm": 2.4524484169619005,
|
98 |
+
"learning_rate": 5.504587155963303e-06,
|
99 |
+
"loss": 0.4905,
|
100 |
+
"step": 60
|
101 |
+
},
|
102 |
+
{
|
103 |
+
"epoch": 0.18,
|
104 |
+
"grad_norm": 2.2548682855618027,
|
105 |
+
"learning_rate": 5.963302752293578e-06,
|
106 |
+
"loss": 0.4843,
|
107 |
+
"step": 65
|
108 |
+
},
|
109 |
+
{
|
110 |
+
"epoch": 0.19,
|
111 |
+
"grad_norm": 2.3040454952673666,
|
112 |
+
"learning_rate": 6.422018348623854e-06,
|
113 |
+
"loss": 0.472,
|
114 |
+
"step": 70
|
115 |
+
},
|
116 |
+
{
|
117 |
+
"epoch": 0.21,
|
118 |
+
"grad_norm": 2.2392018621959497,
|
119 |
+
"learning_rate": 6.880733944954129e-06,
|
120 |
+
"loss": 0.4704,
|
121 |
+
"step": 75
|
122 |
+
},
|
123 |
+
{
|
124 |
+
"epoch": 0.22,
|
125 |
+
"grad_norm": 2.178936820032253,
|
126 |
+
"learning_rate": 7.3394495412844045e-06,
|
127 |
+
"loss": 0.4701,
|
128 |
+
"step": 80
|
129 |
+
},
|
130 |
+
{
|
131 |
+
"epoch": 0.23,
|
132 |
+
"grad_norm": 4.848234290009287,
|
133 |
+
"learning_rate": 7.79816513761468e-06,
|
134 |
+
"loss": 0.4521,
|
135 |
+
"step": 85
|
136 |
+
},
|
137 |
+
{
|
138 |
+
"epoch": 0.25,
|
139 |
+
"grad_norm": 2.16061767352121,
|
140 |
+
"learning_rate": 8.256880733944956e-06,
|
141 |
+
"loss": 0.4399,
|
142 |
+
"step": 90
|
143 |
+
},
|
144 |
+
{
|
145 |
+
"epoch": 0.26,
|
146 |
+
"grad_norm": 2.252938346732769,
|
147 |
+
"learning_rate": 8.71559633027523e-06,
|
148 |
+
"loss": 0.4419,
|
149 |
+
"step": 95
|
150 |
+
},
|
151 |
+
{
|
152 |
+
"epoch": 0.28,
|
153 |
+
"grad_norm": 2.096290173421098,
|
154 |
+
"learning_rate": 9.174311926605506e-06,
|
155 |
+
"loss": 0.4448,
|
156 |
+
"step": 100
|
157 |
+
},
|
158 |
+
{
|
159 |
+
"epoch": 0.29,
|
160 |
+
"grad_norm": 2.174963846986537,
|
161 |
+
"learning_rate": 9.633027522935781e-06,
|
162 |
+
"loss": 0.4426,
|
163 |
+
"step": 105
|
164 |
+
},
|
165 |
+
{
|
166 |
+
"epoch": 0.3,
|
167 |
+
"grad_norm": 2.1492247832364035,
|
168 |
+
"learning_rate": 9.999974308631955e-06,
|
169 |
+
"loss": 0.4351,
|
170 |
+
"step": 110
|
171 |
+
},
|
172 |
+
{
|
173 |
+
"epoch": 0.32,
|
174 |
+
"grad_norm": 2.408895333478705,
|
175 |
+
"learning_rate": 9.99907513847195e-06,
|
176 |
+
"loss": 0.4279,
|
177 |
+
"step": 115
|
178 |
+
},
|
179 |
+
{
|
180 |
+
"epoch": 0.33,
|
181 |
+
"grad_norm": 2.2454817325259446,
|
182 |
+
"learning_rate": 9.996891663915955e-06,
|
183 |
+
"loss": 0.4181,
|
184 |
+
"step": 120
|
185 |
+
},
|
186 |
+
{
|
187 |
+
"epoch": 0.34,
|
188 |
+
"grad_norm": 2.3729752688467634,
|
189 |
+
"learning_rate": 9.993424445916923e-06,
|
190 |
+
"loss": 0.4239,
|
191 |
+
"step": 125
|
192 |
+
},
|
193 |
+
{
|
194 |
+
"epoch": 0.36,
|
195 |
+
"grad_norm": 2.5044100058846284,
|
196 |
+
"learning_rate": 9.98867437523228e-06,
|
197 |
+
"loss": 0.412,
|
198 |
+
"step": 130
|
199 |
+
},
|
200 |
+
{
|
201 |
+
"epoch": 0.37,
|
202 |
+
"grad_norm": 2.3958686207860445,
|
203 |
+
"learning_rate": 9.982642672195093e-06,
|
204 |
+
"loss": 0.4169,
|
205 |
+
"step": 135
|
206 |
+
},
|
207 |
+
{
|
208 |
+
"epoch": 0.39,
|
209 |
+
"grad_norm": 2.4954881466652776,
|
210 |
+
"learning_rate": 9.975330886400531e-06,
|
211 |
+
"loss": 0.4156,
|
212 |
+
"step": 140
|
213 |
+
},
|
214 |
+
{
|
215 |
+
"epoch": 0.4,
|
216 |
+
"grad_norm": 2.242375638494122,
|
217 |
+
"learning_rate": 9.966740896307791e-06,
|
218 |
+
"loss": 0.4197,
|
219 |
+
"step": 145
|
220 |
+
},
|
221 |
+
{
|
222 |
+
"epoch": 0.41,
|
223 |
+
"grad_norm": 2.1178977307464684,
|
224 |
+
"learning_rate": 9.956874908757482e-06,
|
225 |
+
"loss": 0.4049,
|
226 |
+
"step": 150
|
227 |
+
},
|
228 |
+
{
|
229 |
+
"epoch": 0.43,
|
230 |
+
"grad_norm": 2.328213390988304,
|
231 |
+
"learning_rate": 9.945735458404681e-06,
|
232 |
+
"loss": 0.4079,
|
233 |
+
"step": 155
|
234 |
+
},
|
235 |
+
{
|
236 |
+
"epoch": 0.44,
|
237 |
+
"grad_norm": 2.3991070068709703,
|
238 |
+
"learning_rate": 9.93332540706776e-06,
|
239 |
+
"loss": 0.3932,
|
240 |
+
"step": 160
|
241 |
+
},
|
242 |
+
{
|
243 |
+
"epoch": 0.45,
|
244 |
+
"grad_norm": 2.1330210872114685,
|
245 |
+
"learning_rate": 9.91964794299315e-06,
|
246 |
+
"loss": 0.4151,
|
247 |
+
"step": 165
|
248 |
+
},
|
249 |
+
{
|
250 |
+
"epoch": 0.47,
|
251 |
+
"grad_norm": 2.339763249719483,
|
252 |
+
"learning_rate": 9.904706580036265e-06,
|
253 |
+
"loss": 0.3991,
|
254 |
+
"step": 170
|
255 |
+
},
|
256 |
+
{
|
257 |
+
"epoch": 0.48,
|
258 |
+
"grad_norm": 2.253034148149308,
|
259 |
+
"learning_rate": 9.888505156758758e-06,
|
260 |
+
"loss": 0.3894,
|
261 |
+
"step": 175
|
262 |
+
},
|
263 |
+
{
|
264 |
+
"epoch": 0.5,
|
265 |
+
"grad_norm": 2.592051451054994,
|
266 |
+
"learning_rate": 9.871047835442365e-06,
|
267 |
+
"loss": 0.3926,
|
268 |
+
"step": 180
|
269 |
+
},
|
270 |
+
{
|
271 |
+
"epoch": 0.51,
|
272 |
+
"grad_norm": 2.3384829460370664,
|
273 |
+
"learning_rate": 9.852339101019574e-06,
|
274 |
+
"loss": 0.3778,
|
275 |
+
"step": 185
|
276 |
+
},
|
277 |
+
{
|
278 |
+
"epoch": 0.52,
|
279 |
+
"grad_norm": 2.3237193171596315,
|
280 |
+
"learning_rate": 9.832383759921415e-06,
|
281 |
+
"loss": 0.3876,
|
282 |
+
"step": 190
|
283 |
+
},
|
284 |
+
{
|
285 |
+
"epoch": 0.54,
|
286 |
+
"grad_norm": 2.1577325540917682,
|
287 |
+
"learning_rate": 9.811186938842645e-06,
|
288 |
+
"loss": 0.3931,
|
289 |
+
"step": 195
|
290 |
+
},
|
291 |
+
{
|
292 |
+
"epoch": 0.55,
|
293 |
+
"grad_norm": 2.4399307510769512,
|
294 |
+
"learning_rate": 9.788754083424654e-06,
|
295 |
+
"loss": 0.4016,
|
296 |
+
"step": 200
|
297 |
+
},
|
298 |
+
{
|
299 |
+
"epoch": 0.56,
|
300 |
+
"grad_norm": 2.2221384901823797,
|
301 |
+
"learning_rate": 9.765090956856437e-06,
|
302 |
+
"loss": 0.3729,
|
303 |
+
"step": 205
|
304 |
+
},
|
305 |
+
{
|
306 |
+
"epoch": 0.58,
|
307 |
+
"grad_norm": 2.308949316156903,
|
308 |
+
"learning_rate": 9.740203638393984e-06,
|
309 |
+
"loss": 0.3726,
|
310 |
+
"step": 210
|
311 |
+
},
|
312 |
+
{
|
313 |
+
"epoch": 0.59,
|
314 |
+
"grad_norm": 2.2045141554131935,
|
315 |
+
"learning_rate": 9.714098521798466e-06,
|
316 |
+
"loss": 0.3877,
|
317 |
+
"step": 215
|
318 |
+
},
|
319 |
+
{
|
320 |
+
"epoch": 0.61,
|
321 |
+
"grad_norm": 2.2837872858373736,
|
322 |
+
"learning_rate": 9.686782313693622e-06,
|
323 |
+
"loss": 0.3674,
|
324 |
+
"step": 220
|
325 |
+
},
|
326 |
+
{
|
327 |
+
"epoch": 0.62,
|
328 |
+
"grad_norm": 2.43720762592657,
|
329 |
+
"learning_rate": 9.658262031842772e-06,
|
330 |
+
"loss": 0.3739,
|
331 |
+
"step": 225
|
332 |
+
},
|
333 |
+
{
|
334 |
+
"epoch": 0.63,
|
335 |
+
"grad_norm": 2.3353813140909994,
|
336 |
+
"learning_rate": 9.6285450033459e-06,
|
337 |
+
"loss": 0.3674,
|
338 |
+
"step": 230
|
339 |
+
},
|
340 |
+
{
|
341 |
+
"epoch": 0.65,
|
342 |
+
"grad_norm": 2.261420264375102,
|
343 |
+
"learning_rate": 9.597638862757255e-06,
|
344 |
+
"loss": 0.3607,
|
345 |
+
"step": 235
|
346 |
+
},
|
347 |
+
{
|
348 |
+
"epoch": 0.66,
|
349 |
+
"grad_norm": 2.2416634782061906,
|
350 |
+
"learning_rate": 9.565551550123967e-06,
|
351 |
+
"loss": 0.3742,
|
352 |
+
"step": 240
|
353 |
+
},
|
354 |
+
{
|
355 |
+
"epoch": 0.67,
|
356 |
+
"grad_norm": 2.2997316285411475,
|
357 |
+
"learning_rate": 9.532291308946191e-06,
|
358 |
+
"loss": 0.3665,
|
359 |
+
"step": 245
|
360 |
+
},
|
361 |
+
{
|
362 |
+
"epoch": 0.69,
|
363 |
+
"grad_norm": 2.4184869571843506,
|
364 |
+
"learning_rate": 9.497866684059278e-06,
|
365 |
+
"loss": 0.3561,
|
366 |
+
"step": 250
|
367 |
+
},
|
368 |
+
{
|
369 |
+
"epoch": 0.7,
|
370 |
+
"grad_norm": 2.708823081570206,
|
371 |
+
"learning_rate": 9.462286519438531e-06,
|
372 |
+
"loss": 0.3538,
|
373 |
+
"step": 255
|
374 |
+
},
|
375 |
+
{
|
376 |
+
"epoch": 0.72,
|
377 |
+
"grad_norm": 2.251486751483044,
|
378 |
+
"learning_rate": 9.425559955927118e-06,
|
379 |
+
"loss": 0.361,
|
380 |
+
"step": 260
|
381 |
+
},
|
382 |
+
{
|
383 |
+
"epoch": 0.73,
|
384 |
+
"grad_norm": 2.3764896592186475,
|
385 |
+
"learning_rate": 9.387696428887715e-06,
|
386 |
+
"loss": 0.3432,
|
387 |
+
"step": 265
|
388 |
+
},
|
389 |
+
{
|
390 |
+
"epoch": 0.74,
|
391 |
+
"grad_norm": 2.4138174075052947,
|
392 |
+
"learning_rate": 9.348705665778479e-06,
|
393 |
+
"loss": 0.3485,
|
394 |
+
"step": 270
|
395 |
+
},
|
396 |
+
{
|
397 |
+
"epoch": 0.76,
|
398 |
+
"grad_norm": 5.080374687572826,
|
399 |
+
"learning_rate": 9.308597683653976e-06,
|
400 |
+
"loss": 0.3609,
|
401 |
+
"step": 275
|
402 |
+
},
|
403 |
+
{
|
404 |
+
"epoch": 0.77,
|
405 |
+
"grad_norm": 2.741760384833186,
|
406 |
+
"learning_rate": 9.26738278659173e-06,
|
407 |
+
"loss": 0.3494,
|
408 |
+
"step": 280
|
409 |
+
},
|
410 |
+
{
|
411 |
+
"epoch": 0.79,
|
412 |
+
"grad_norm": 2.8966878345447284,
|
413 |
+
"learning_rate": 9.225071563045007e-06,
|
414 |
+
"loss": 0.3772,
|
415 |
+
"step": 285
|
416 |
+
},
|
417 |
+
{
|
418 |
+
"epoch": 0.8,
|
419 |
+
"grad_norm": 2.57787692140152,
|
420 |
+
"learning_rate": 9.181674883122554e-06,
|
421 |
+
"loss": 0.3492,
|
422 |
+
"step": 290
|
423 |
+
},
|
424 |
+
{
|
425 |
+
"epoch": 0.81,
|
426 |
+
"grad_norm": 2.3491613484458758,
|
427 |
+
"learning_rate": 9.137203895795983e-06,
|
428 |
+
"loss": 0.3483,
|
429 |
+
"step": 295
|
430 |
+
},
|
431 |
+
{
|
432 |
+
"epoch": 0.83,
|
433 |
+
"grad_norm": 2.4035469933770925,
|
434 |
+
"learning_rate": 9.0916700260355e-06,
|
435 |
+
"loss": 0.3385,
|
436 |
+
"step": 300
|
437 |
+
},
|
438 |
+
{
|
439 |
+
"epoch": 0.84,
|
440 |
+
"grad_norm": 2.5217983017859287,
|
441 |
+
"learning_rate": 9.045084971874738e-06,
|
442 |
+
"loss": 0.3363,
|
443 |
+
"step": 305
|
444 |
+
},
|
445 |
+
{
|
446 |
+
"epoch": 0.85,
|
447 |
+
"grad_norm": 2.408467182342914,
|
448 |
+
"learning_rate": 8.997460701405431e-06,
|
449 |
+
"loss": 0.3434,
|
450 |
+
"step": 310
|
451 |
+
},
|
452 |
+
{
|
453 |
+
"epoch": 0.87,
|
454 |
+
"grad_norm": 2.4535113461612044,
|
455 |
+
"learning_rate": 8.948809449702712e-06,
|
456 |
+
"loss": 0.339,
|
457 |
+
"step": 315
|
458 |
+
},
|
459 |
+
{
|
460 |
+
"epoch": 0.88,
|
461 |
+
"grad_norm": 2.6840892962294594,
|
462 |
+
"learning_rate": 8.899143715681822e-06,
|
463 |
+
"loss": 0.3382,
|
464 |
+
"step": 320
|
465 |
+
},
|
466 |
+
{
|
467 |
+
"epoch": 0.9,
|
468 |
+
"grad_norm": 2.514776491838317,
|
469 |
+
"learning_rate": 8.84847625888703e-06,
|
470 |
+
"loss": 0.3415,
|
471 |
+
"step": 325
|
472 |
+
},
|
473 |
+
{
|
474 |
+
"epoch": 0.91,
|
475 |
+
"grad_norm": 15.50105108482074,
|
476 |
+
"learning_rate": 8.7968200962136e-06,
|
477 |
+
"loss": 0.3571,
|
478 |
+
"step": 330
|
479 |
+
},
|
480 |
+
{
|
481 |
+
"epoch": 0.92,
|
482 |
+
"grad_norm": 2.585883974467356,
|
483 |
+
"learning_rate": 8.74418849856364e-06,
|
484 |
+
"loss": 0.3446,
|
485 |
+
"step": 335
|
486 |
+
},
|
487 |
+
{
|
488 |
+
"epoch": 0.94,
|
489 |
+
"grad_norm": 2.7223008451894115,
|
490 |
+
"learning_rate": 8.690594987436705e-06,
|
491 |
+
"loss": 0.3422,
|
492 |
+
"step": 340
|
493 |
+
},
|
494 |
+
{
|
495 |
+
"epoch": 0.95,
|
496 |
+
"grad_norm": 2.5622958284447828,
|
497 |
+
"learning_rate": 8.636053331455986e-06,
|
498 |
+
"loss": 0.3261,
|
499 |
+
"step": 345
|
500 |
+
},
|
501 |
+
{
|
502 |
+
"epoch": 0.96,
|
503 |
+
"grad_norm": 8.344613597434167,
|
504 |
+
"learning_rate": 8.580577542831072e-06,
|
505 |
+
"loss": 0.3294,
|
506 |
+
"step": 350
|
507 |
+
},
|
508 |
+
{
|
509 |
+
"epoch": 0.98,
|
510 |
+
"grad_norm": 27.593051888264625,
|
511 |
+
"learning_rate": 8.52418187375806e-06,
|
512 |
+
"loss": 0.3289,
|
513 |
+
"step": 355
|
514 |
+
},
|
515 |
+
{
|
516 |
+
"epoch": 0.99,
|
517 |
+
"grad_norm": 3.1854259696014,
|
518 |
+
"learning_rate": 8.466880812758064e-06,
|
519 |
+
"loss": 0.3262,
|
520 |
+
"step": 360
|
521 |
+
},
|
522 |
+
{
|
523 |
+
"epoch": 1.0,
|
524 |
+
"eval_loss": 0.318780779838562,
|
525 |
+
"eval_runtime": 0.7082,
|
526 |
+
"eval_samples_per_second": 29.652,
|
527 |
+
"eval_steps_per_second": 1.412,
|
528 |
+
"step": 363
|
529 |
+
},
|
530 |
+
{
|
531 |
+
"epoch": 1.01,
|
532 |
+
"grad_norm": 2.5412468443821186,
|
533 |
+
"learning_rate": 8.408689080954997e-06,
|
534 |
+
"loss": 0.3094,
|
535 |
+
"step": 365
|
536 |
+
},
|
537 |
+
{
|
538 |
+
"epoch": 1.02,
|
539 |
+
"grad_norm": 2.5960718641491933,
|
540 |
+
"learning_rate": 8.349621628293578e-06,
|
541 |
+
"loss": 0.2823,
|
542 |
+
"step": 370
|
543 |
+
},
|
544 |
+
{
|
545 |
+
"epoch": 1.03,
|
546 |
+
"grad_norm": 2.730052799805784,
|
547 |
+
"learning_rate": 8.289693629698564e-06,
|
548 |
+
"loss": 0.2918,
|
549 |
+
"step": 375
|
550 |
+
},
|
551 |
+
{
|
552 |
+
"epoch": 1.05,
|
553 |
+
"grad_norm": 2.673767069351067,
|
554 |
+
"learning_rate": 8.228920481176202e-06,
|
555 |
+
"loss": 0.3068,
|
556 |
+
"step": 380
|
557 |
+
},
|
558 |
+
{
|
559 |
+
"epoch": 1.06,
|
560 |
+
"grad_norm": 2.586082350335276,
|
561 |
+
"learning_rate": 8.16731779585885e-06,
|
562 |
+
"loss": 0.2872,
|
563 |
+
"step": 385
|
564 |
+
},
|
565 |
+
{
|
566 |
+
"epoch": 1.07,
|
567 |
+
"grad_norm": 2.746929683803303,
|
568 |
+
"learning_rate": 8.104901399993837e-06,
|
569 |
+
"loss": 0.2738,
|
570 |
+
"step": 390
|
571 |
+
},
|
572 |
+
{
|
573 |
+
"epoch": 1.09,
|
574 |
+
"grad_norm": 2.7651080564632036,
|
575 |
+
"learning_rate": 8.041687328877566e-06,
|
576 |
+
"loss": 0.2826,
|
577 |
+
"step": 395
|
578 |
+
},
|
579 |
+
{
|
580 |
+
"epoch": 1.1,
|
581 |
+
"grad_norm": 2.471378457694663,
|
582 |
+
"learning_rate": 7.977691822735914e-06,
|
583 |
+
"loss": 0.2802,
|
584 |
+
"step": 400
|
585 |
+
},
|
586 |
+
{
|
587 |
+
"epoch": 1.12,
|
588 |
+
"grad_norm": 2.525112042533388,
|
589 |
+
"learning_rate": 7.912931322551981e-06,
|
590 |
+
"loss": 0.2912,
|
591 |
+
"step": 405
|
592 |
+
},
|
593 |
+
{
|
594 |
+
"epoch": 1.13,
|
595 |
+
"grad_norm": 2.326287031654939,
|
596 |
+
"learning_rate": 7.84742246584226e-06,
|
597 |
+
"loss": 0.2798,
|
598 |
+
"step": 410
|
599 |
+
},
|
600 |
+
{
|
601 |
+
"epoch": 1.14,
|
602 |
+
"grad_norm": 2.5727601459857183,
|
603 |
+
"learning_rate": 7.781182082382325e-06,
|
604 |
+
"loss": 0.2667,
|
605 |
+
"step": 415
|
606 |
+
},
|
607 |
+
{
|
608 |
+
"epoch": 1.16,
|
609 |
+
"grad_norm": 2.4087608944116408,
|
610 |
+
"learning_rate": 7.714227189883112e-06,
|
611 |
+
"loss": 0.2864,
|
612 |
+
"step": 420
|
613 |
+
},
|
614 |
+
{
|
615 |
+
"epoch": 1.17,
|
616 |
+
"grad_norm": 2.317260745652955,
|
617 |
+
"learning_rate": 7.646574989618938e-06,
|
618 |
+
"loss": 0.2722,
|
619 |
+
"step": 425
|
620 |
+
},
|
621 |
+
{
|
622 |
+
"epoch": 1.18,
|
623 |
+
"grad_norm": 3.054972113137932,
|
624 |
+
"learning_rate": 7.578242862008336e-06,
|
625 |
+
"loss": 0.2654,
|
626 |
+
"step": 430
|
627 |
+
},
|
628 |
+
{
|
629 |
+
"epoch": 1.2,
|
630 |
+
"grad_norm": 2.3952394787945535,
|
631 |
+
"learning_rate": 7.509248362148889e-06,
|
632 |
+
"loss": 0.2624,
|
633 |
+
"step": 435
|
634 |
+
},
|
635 |
+
{
|
636 |
+
"epoch": 1.21,
|
637 |
+
"grad_norm": 2.3580949206062285,
|
638 |
+
"learning_rate": 7.439609215307173e-06,
|
639 |
+
"loss": 0.2724,
|
640 |
+
"step": 440
|
641 |
+
},
|
642 |
+
{
|
643 |
+
"epoch": 1.23,
|
644 |
+
"grad_norm": 2.359989598212989,
|
645 |
+
"learning_rate": 7.369343312364994e-06,
|
646 |
+
"loss": 0.2803,
|
647 |
+
"step": 445
|
648 |
+
},
|
649 |
+
{
|
650 |
+
"epoch": 1.24,
|
651 |
+
"grad_norm": 2.3241522880939245,
|
652 |
+
"learning_rate": 7.2984687052230585e-06,
|
653 |
+
"loss": 0.2722,
|
654 |
+
"step": 450
|
655 |
+
},
|
656 |
+
{
|
657 |
+
"epoch": 1.25,
|
658 |
+
"grad_norm": 2.7180879142331573,
|
659 |
+
"learning_rate": 7.227003602163296e-06,
|
660 |
+
"loss": 0.2735,
|
661 |
+
"step": 455
|
662 |
+
},
|
663 |
+
{
|
664 |
+
"epoch": 1.27,
|
665 |
+
"grad_norm": 2.3639669980317244,
|
666 |
+
"learning_rate": 7.154966363171003e-06,
|
667 |
+
"loss": 0.2707,
|
668 |
+
"step": 460
|
669 |
+
},
|
670 |
+
{
|
671 |
+
"epoch": 1.28,
|
672 |
+
"grad_norm": 2.476880995232887,
|
673 |
+
"learning_rate": 7.082375495217996e-06,
|
674 |
+
"loss": 0.2642,
|
675 |
+
"step": 465
|
676 |
+
},
|
677 |
+
{
|
678 |
+
"epoch": 1.29,
|
679 |
+
"grad_norm": 2.394174321663528,
|
680 |
+
"learning_rate": 7.009249647508028e-06,
|
681 |
+
"loss": 0.2633,
|
682 |
+
"step": 470
|
683 |
+
},
|
684 |
+
{
|
685 |
+
"epoch": 1.31,
|
686 |
+
"grad_norm": 2.3149517217992206,
|
687 |
+
"learning_rate": 6.935607606685642e-06,
|
688 |
+
"loss": 0.2646,
|
689 |
+
"step": 475
|
690 |
+
},
|
691 |
+
{
|
692 |
+
"epoch": 1.32,
|
693 |
+
"grad_norm": 2.362938067207863,
|
694 |
+
"learning_rate": 6.8614682920097265e-06,
|
695 |
+
"loss": 0.2722,
|
696 |
+
"step": 480
|
697 |
+
},
|
698 |
+
{
|
699 |
+
"epoch": 1.34,
|
700 |
+
"grad_norm": 2.221862832028165,
|
701 |
+
"learning_rate": 6.786850750493006e-06,
|
702 |
+
"loss": 0.2731,
|
703 |
+
"step": 485
|
704 |
+
},
|
705 |
+
{
|
706 |
+
"epoch": 1.35,
|
707 |
+
"grad_norm": 2.480585954865694,
|
708 |
+
"learning_rate": 6.71177415200869e-06,
|
709 |
+
"loss": 0.2647,
|
710 |
+
"step": 490
|
711 |
+
},
|
712 |
+
{
|
713 |
+
"epoch": 1.36,
|
714 |
+
"grad_norm": 2.601383750536699,
|
715 |
+
"learning_rate": 6.636257784365585e-06,
|
716 |
+
"loss": 0.2651,
|
717 |
+
"step": 495
|
718 |
+
},
|
719 |
+
{
|
720 |
+
"epoch": 1.38,
|
721 |
+
"grad_norm": 2.365789134129327,
|
722 |
+
"learning_rate": 6.5603210483528864e-06,
|
723 |
+
"loss": 0.2558,
|
724 |
+
"step": 500
|
725 |
+
},
|
726 |
+
{
|
727 |
+
"epoch": 1.39,
|
728 |
+
"grad_norm": 2.3600890606849756,
|
729 |
+
"learning_rate": 6.483983452755953e-06,
|
730 |
+
"loss": 0.2599,
|
731 |
+
"step": 505
|
732 |
+
},
|
733 |
+
{
|
734 |
+
"epoch": 1.4,
|
735 |
+
"grad_norm": 2.2597199615645995,
|
736 |
+
"learning_rate": 6.407264609344344e-06,
|
737 |
+
"loss": 0.257,
|
738 |
+
"step": 510
|
739 |
+
},
|
740 |
+
{
|
741 |
+
"epoch": 1.42,
|
742 |
+
"grad_norm": 2.6801929299706195,
|
743 |
+
"learning_rate": 6.330184227833376e-06,
|
744 |
+
"loss": 0.2578,
|
745 |
+
"step": 515
|
746 |
+
},
|
747 |
+
{
|
748 |
+
"epoch": 1.43,
|
749 |
+
"grad_norm": 2.5972482010235245,
|
750 |
+
"learning_rate": 6.252762110820548e-06,
|
751 |
+
"loss": 0.2609,
|
752 |
+
"step": 520
|
753 |
+
},
|
754 |
+
{
|
755 |
+
"epoch": 1.45,
|
756 |
+
"grad_norm": 2.18407067589225,
|
757 |
+
"learning_rate": 6.175018148698077e-06,
|
758 |
+
"loss": 0.2557,
|
759 |
+
"step": 525
|
760 |
+
},
|
761 |
+
{
|
762 |
+
"epoch": 1.46,
|
763 |
+
"grad_norm": 2.3098952297720805,
|
764 |
+
"learning_rate": 6.096972314542889e-06,
|
765 |
+
"loss": 0.2529,
|
766 |
+
"step": 530
|
767 |
+
},
|
768 |
+
{
|
769 |
+
"epoch": 1.47,
|
770 |
+
"grad_norm": 2.286804305301903,
|
771 |
+
"learning_rate": 6.018644658985378e-06,
|
772 |
+
"loss": 0.2506,
|
773 |
+
"step": 535
|
774 |
+
},
|
775 |
+
{
|
776 |
+
"epoch": 1.49,
|
777 |
+
"grad_norm": 2.3719247145054565,
|
778 |
+
"learning_rate": 5.940055305058219e-06,
|
779 |
+
"loss": 0.2887,
|
780 |
+
"step": 540
|
781 |
+
},
|
782 |
+
{
|
783 |
+
"epoch": 1.5,
|
784 |
+
"grad_norm": 2.192651511655319,
|
785 |
+
"learning_rate": 5.861224443026595e-06,
|
786 |
+
"loss": 0.2512,
|
787 |
+
"step": 545
|
788 |
+
},
|
789 |
+
{
|
790 |
+
"epoch": 1.52,
|
791 |
+
"grad_norm": 2.319247712566637,
|
792 |
+
"learning_rate": 5.782172325201155e-06,
|
793 |
+
"loss": 0.2559,
|
794 |
+
"step": 550
|
795 |
+
},
|
796 |
+
{
|
797 |
+
"epoch": 1.53,
|
798 |
+
"grad_norm": 2.2722313275015438,
|
799 |
+
"learning_rate": 5.702919260735015e-06,
|
800 |
+
"loss": 0.258,
|
801 |
+
"step": 555
|
802 |
+
},
|
803 |
+
{
|
804 |
+
"epoch": 1.54,
|
805 |
+
"grad_norm": 2.212042996156513,
|
806 |
+
"learning_rate": 5.623485610406174e-06,
|
807 |
+
"loss": 0.2551,
|
808 |
+
"step": 560
|
809 |
+
},
|
810 |
+
{
|
811 |
+
"epoch": 1.56,
|
812 |
+
"grad_norm": 2.628919297520483,
|
813 |
+
"learning_rate": 5.543891781386655e-06,
|
814 |
+
"loss": 0.2594,
|
815 |
+
"step": 565
|
816 |
+
},
|
817 |
+
{
|
818 |
+
"epoch": 1.57,
|
819 |
+
"grad_norm": 2.2295725919671834,
|
820 |
+
"learning_rate": 5.464158221999731e-06,
|
821 |
+
"loss": 0.252,
|
822 |
+
"step": 570
|
823 |
+
},
|
824 |
+
{
|
825 |
+
"epoch": 1.58,
|
826 |
+
"grad_norm": 2.346371911738126,
|
827 |
+
"learning_rate": 5.384305416466584e-06,
|
828 |
+
"loss": 0.2492,
|
829 |
+
"step": 575
|
830 |
+
},
|
831 |
+
{
|
832 |
+
"epoch": 1.6,
|
833 |
+
"grad_norm": 2.128952621835011,
|
834 |
+
"learning_rate": 5.304353879643727e-06,
|
835 |
+
"loss": 0.2498,
|
836 |
+
"step": 580
|
837 |
+
},
|
838 |
+
{
|
839 |
+
"epoch": 1.61,
|
840 |
+
"grad_norm": 2.309582792426568,
|
841 |
+
"learning_rate": 5.224324151752575e-06,
|
842 |
+
"loss": 0.2407,
|
843 |
+
"step": 585
|
844 |
+
},
|
845 |
+
{
|
846 |
+
"epoch": 1.63,
|
847 |
+
"grad_norm": 2.186774543447298,
|
848 |
+
"learning_rate": 5.144236793102485e-06,
|
849 |
+
"loss": 0.2534,
|
850 |
+
"step": 590
|
851 |
+
},
|
852 |
+
{
|
853 |
+
"epoch": 1.64,
|
854 |
+
"grad_norm": 2.285906133102669,
|
855 |
+
"learning_rate": 5.064112378808636e-06,
|
856 |
+
"loss": 0.2504,
|
857 |
+
"step": 595
|
858 |
+
},
|
859 |
+
{
|
860 |
+
"epoch": 1.65,
|
861 |
+
"grad_norm": 2.282750925627709,
|
862 |
+
"learning_rate": 4.9839714935061215e-06,
|
863 |
+
"loss": 0.2564,
|
864 |
+
"step": 600
|
865 |
+
},
|
866 |
+
{
|
867 |
+
"epoch": 1.67,
|
868 |
+
"grad_norm": 2.434230750765326,
|
869 |
+
"learning_rate": 4.903834726061565e-06,
|
870 |
+
"loss": 0.2487,
|
871 |
+
"step": 605
|
872 |
+
},
|
873 |
+
{
|
874 |
+
"epoch": 1.68,
|
875 |
+
"grad_norm": 2.243187765312758,
|
876 |
+
"learning_rate": 4.823722664283684e-06,
|
877 |
+
"loss": 0.2445,
|
878 |
+
"step": 610
|
879 |
+
},
|
880 |
+
{
|
881 |
+
"epoch": 1.69,
|
882 |
+
"grad_norm": 2.238918307385941,
|
883 |
+
"learning_rate": 4.743655889634105e-06,
|
884 |
+
"loss": 0.2434,
|
885 |
+
"step": 615
|
886 |
+
},
|
887 |
+
{
|
888 |
+
"epoch": 1.71,
|
889 |
+
"grad_norm": 2.2787450399048716,
|
890 |
+
"learning_rate": 4.663654971939802e-06,
|
891 |
+
"loss": 0.2628,
|
892 |
+
"step": 620
|
893 |
+
},
|
894 |
+
{
|
895 |
+
"epoch": 1.72,
|
896 |
+
"grad_norm": 18.429833465031482,
|
897 |
+
"learning_rate": 4.583740464108554e-06,
|
898 |
+
"loss": 0.2463,
|
899 |
+
"step": 625
|
900 |
+
},
|
901 |
+
{
|
902 |
+
"epoch": 1.74,
|
903 |
+
"grad_norm": 2.345262438447504,
|
904 |
+
"learning_rate": 4.503932896848713e-06,
|
905 |
+
"loss": 0.2586,
|
906 |
+
"step": 630
|
907 |
+
},
|
908 |
+
{
|
909 |
+
"epoch": 1.75,
|
910 |
+
"grad_norm": 3.7488286873573946,
|
911 |
+
"learning_rate": 4.424252773394704e-06,
|
912 |
+
"loss": 0.2604,
|
913 |
+
"step": 635
|
914 |
+
},
|
915 |
+
{
|
916 |
+
"epoch": 1.76,
|
917 |
+
"grad_norm": 2.238980042562648,
|
918 |
+
"learning_rate": 4.344720564239567e-06,
|
919 |
+
"loss": 0.2363,
|
920 |
+
"step": 640
|
921 |
+
},
|
922 |
+
{
|
923 |
+
"epoch": 1.78,
|
924 |
+
"grad_norm": 5.301475765556174,
|
925 |
+
"learning_rate": 4.265356701875911e-06,
|
926 |
+
"loss": 0.2814,
|
927 |
+
"step": 645
|
928 |
+
},
|
929 |
+
{
|
930 |
+
"epoch": 1.79,
|
931 |
+
"grad_norm": 3.186554344112934,
|
932 |
+
"learning_rate": 4.186181575546651e-06,
|
933 |
+
"loss": 0.2941,
|
934 |
+
"step": 650
|
935 |
+
},
|
936 |
+
{
|
937 |
+
"epoch": 1.8,
|
938 |
+
"grad_norm": 3.0561821381799956,
|
939 |
+
"learning_rate": 4.107215526006818e-06,
|
940 |
+
"loss": 0.2807,
|
941 |
+
"step": 655
|
942 |
+
},
|
943 |
+
{
|
944 |
+
"epoch": 1.82,
|
945 |
+
"grad_norm": 2.9363395014272036,
|
946 |
+
"learning_rate": 4.028478840297867e-06,
|
947 |
+
"loss": 0.2794,
|
948 |
+
"step": 660
|
949 |
+
},
|
950 |
+
{
|
951 |
+
"epoch": 1.83,
|
952 |
+
"grad_norm": 2.7904354679575696,
|
953 |
+
"learning_rate": 3.949991746535753e-06,
|
954 |
+
"loss": 0.2677,
|
955 |
+
"step": 665
|
956 |
+
},
|
957 |
+
{
|
958 |
+
"epoch": 1.85,
|
959 |
+
"grad_norm": 3.69243985318358,
|
960 |
+
"learning_rate": 3.87177440871417e-06,
|
961 |
+
"loss": 0.2864,
|
962 |
+
"step": 670
|
963 |
+
},
|
964 |
+
{
|
965 |
+
"epoch": 1.86,
|
966 |
+
"grad_norm": 2.5403744359066645,
|
967 |
+
"learning_rate": 3.7938469215242374e-06,
|
968 |
+
"loss": 0.2523,
|
969 |
+
"step": 675
|
970 |
+
},
|
971 |
+
{
|
972 |
+
"epoch": 1.87,
|
973 |
+
"grad_norm": 2.448473174262864,
|
974 |
+
"learning_rate": 3.7162293051920185e-06,
|
975 |
+
"loss": 0.2619,
|
976 |
+
"step": 680
|
977 |
+
},
|
978 |
+
{
|
979 |
+
"epoch": 1.89,
|
980 |
+
"grad_norm": 2.374198457162273,
|
981 |
+
"learning_rate": 3.638941500335145e-06,
|
982 |
+
"loss": 0.2553,
|
983 |
+
"step": 685
|
984 |
+
},
|
985 |
+
{
|
986 |
+
"epoch": 1.9,
|
987 |
+
"grad_norm": 2.3149772372185256,
|
988 |
+
"learning_rate": 3.562003362839914e-06,
|
989 |
+
"loss": 0.2658,
|
990 |
+
"step": 690
|
991 |
+
},
|
992 |
+
{
|
993 |
+
"epoch": 1.91,
|
994 |
+
"grad_norm": 2.3535700882688677,
|
995 |
+
"learning_rate": 3.48543465876014e-06,
|
996 |
+
"loss": 0.2552,
|
997 |
+
"step": 695
|
998 |
+
},
|
999 |
+
{
|
1000 |
+
"epoch": 1.93,
|
1001 |
+
"grad_norm": 2.409924919926454,
|
1002 |
+
"learning_rate": 3.409255059239086e-06,
|
1003 |
+
"loss": 0.2454,
|
1004 |
+
"step": 700
|
1005 |
+
},
|
1006 |
+
{
|
1007 |
+
"epoch": 1.94,
|
1008 |
+
"grad_norm": 2.3087285185101223,
|
1009 |
+
"learning_rate": 3.3334841354557923e-06,
|
1010 |
+
"loss": 0.247,
|
1011 |
+
"step": 705
|
1012 |
+
},
|
1013 |
+
{
|
1014 |
+
"epoch": 1.96,
|
1015 |
+
"grad_norm": 2.097974702680957,
|
1016 |
+
"learning_rate": 3.2581413535970597e-06,
|
1017 |
+
"loss": 0.259,
|
1018 |
+
"step": 710
|
1019 |
+
},
|
1020 |
+
{
|
1021 |
+
"epoch": 1.97,
|
1022 |
+
"grad_norm": 2.311282696059444,
|
1023 |
+
"learning_rate": 3.183246069856443e-06,
|
1024 |
+
"loss": 0.249,
|
1025 |
+
"step": 715
|
1026 |
+
},
|
1027 |
+
{
|
1028 |
+
"epoch": 1.98,
|
1029 |
+
"grad_norm": 2.216797263554876,
|
1030 |
+
"learning_rate": 3.1088175254614616e-06,
|
1031 |
+
"loss": 0.2534,
|
1032 |
+
"step": 720
|
1033 |
+
},
|
1034 |
+
{
|
1035 |
+
"epoch": 2.0,
|
1036 |
+
"grad_norm": 2.2157421181674852,
|
1037 |
+
"learning_rate": 3.0348748417303826e-06,
|
1038 |
+
"loss": 0.2462,
|
1039 |
+
"step": 725
|
1040 |
+
},
|
1041 |
+
{
|
1042 |
+
"epoch": 2.0,
|
1043 |
+
"eval_loss": 0.27171120047569275,
|
1044 |
+
"eval_runtime": 0.6983,
|
1045 |
+
"eval_samples_per_second": 30.074,
|
1046 |
+
"eval_steps_per_second": 1.432,
|
1047 |
+
"step": 726
|
1048 |
+
},
|
1049 |
+
{
|
1050 |
+
"epoch": 2.01,
|
1051 |
+
"grad_norm": 2.300404841110118,
|
1052 |
+
"learning_rate": 2.9614370151597837e-06,
|
1053 |
+
"loss": 0.2101,
|
1054 |
+
"step": 730
|
1055 |
+
},
|
1056 |
+
{
|
1057 |
+
"epoch": 2.02,
|
1058 |
+
"grad_norm": 2.5741196666096893,
|
1059 |
+
"learning_rate": 2.8885229125442022e-06,
|
1060 |
+
"loss": 0.2098,
|
1061 |
+
"step": 735
|
1062 |
+
},
|
1063 |
+
{
|
1064 |
+
"epoch": 2.04,
|
1065 |
+
"grad_norm": 2.279909101731186,
|
1066 |
+
"learning_rate": 2.8161512661290847e-06,
|
1067 |
+
"loss": 0.1947,
|
1068 |
+
"step": 740
|
1069 |
+
},
|
1070 |
+
{
|
1071 |
+
"epoch": 2.05,
|
1072 |
+
"grad_norm": 2.3938996196040314,
|
1073 |
+
"learning_rate": 2.7443406687983267e-06,
|
1074 |
+
"loss": 0.1984,
|
1075 |
+
"step": 745
|
1076 |
+
},
|
1077 |
+
{
|
1078 |
+
"epoch": 2.07,
|
1079 |
+
"grad_norm": 2.446216710229245,
|
1080 |
+
"learning_rate": 2.6731095692976073e-06,
|
1081 |
+
"loss": 0.2088,
|
1082 |
+
"step": 750
|
1083 |
+
},
|
1084 |
+
{
|
1085 |
+
"epoch": 2.08,
|
1086 |
+
"grad_norm": 2.598313354457395,
|
1087 |
+
"learning_rate": 2.6024762674947313e-06,
|
1088 |
+
"loss": 0.2054,
|
1089 |
+
"step": 755
|
1090 |
+
},
|
1091 |
+
{
|
1092 |
+
"epoch": 2.09,
|
1093 |
+
"grad_norm": 2.1333746091625634,
|
1094 |
+
"learning_rate": 2.532458909678266e-06,
|
1095 |
+
"loss": 0.2033,
|
1096 |
+
"step": 760
|
1097 |
+
},
|
1098 |
+
{
|
1099 |
+
"epoch": 2.11,
|
1100 |
+
"grad_norm": 2.338496094538223,
|
1101 |
+
"learning_rate": 2.46307548389559e-06,
|
1102 |
+
"loss": 0.1953,
|
1103 |
+
"step": 765
|
1104 |
+
},
|
1105 |
+
{
|
1106 |
+
"epoch": 2.12,
|
1107 |
+
"grad_norm": 2.1648483458390633,
|
1108 |
+
"learning_rate": 2.394343815331616e-06,
|
1109 |
+
"loss": 0.1979,
|
1110 |
+
"step": 770
|
1111 |
+
},
|
1112 |
+
{
|
1113 |
+
"epoch": 2.13,
|
1114 |
+
"grad_norm": 2.218648225464966,
|
1115 |
+
"learning_rate": 2.3262815617293517e-06,
|
1116 |
+
"loss": 0.2072,
|
1117 |
+
"step": 775
|
1118 |
+
},
|
1119 |
+
{
|
1120 |
+
"epoch": 2.15,
|
1121 |
+
"grad_norm": 2.22344979938061,
|
1122 |
+
"learning_rate": 2.2589062088534837e-06,
|
1123 |
+
"loss": 0.1922,
|
1124 |
+
"step": 780
|
1125 |
+
},
|
1126 |
+
{
|
1127 |
+
"epoch": 2.16,
|
1128 |
+
"grad_norm": 2.1944872952593935,
|
1129 |
+
"learning_rate": 2.1922350659981262e-06,
|
1130 |
+
"loss": 0.1899,
|
1131 |
+
"step": 785
|
1132 |
+
},
|
1133 |
+
{
|
1134 |
+
"epoch": 2.18,
|
1135 |
+
"grad_norm": 2.53207350471496,
|
1136 |
+
"learning_rate": 2.126285261539926e-06,
|
1137 |
+
"loss": 0.1988,
|
1138 |
+
"step": 790
|
1139 |
+
},
|
1140 |
+
{
|
1141 |
+
"epoch": 2.19,
|
1142 |
+
"grad_norm": 2.2231414178470863,
|
1143 |
+
"learning_rate": 2.061073738537635e-06,
|
1144 |
+
"loss": 0.203,
|
1145 |
+
"step": 795
|
1146 |
+
},
|
1147 |
+
{
|
1148 |
+
"epoch": 2.2,
|
1149 |
+
"grad_norm": 2.299191912683916,
|
1150 |
+
"learning_rate": 1.9966172503792986e-06,
|
1151 |
+
"loss": 0.196,
|
1152 |
+
"step": 800
|
1153 |
+
},
|
1154 |
+
{
|
1155 |
+
"epoch": 2.22,
|
1156 |
+
"grad_norm": 2.150078968393613,
|
1157 |
+
"learning_rate": 1.932932356478168e-06,
|
1158 |
+
"loss": 0.2077,
|
1159 |
+
"step": 805
|
1160 |
+
},
|
1161 |
+
{
|
1162 |
+
"epoch": 2.23,
|
1163 |
+
"grad_norm": 2.1937351268393606,
|
1164 |
+
"learning_rate": 1.8700354180184465e-06,
|
1165 |
+
"loss": 0.1884,
|
1166 |
+
"step": 810
|
1167 |
+
},
|
1168 |
+
{
|
1169 |
+
"epoch": 2.25,
|
1170 |
+
"grad_norm": 2.1569756817442887,
|
1171 |
+
"learning_rate": 1.8079425937519729e-06,
|
1172 |
+
"loss": 0.2072,
|
1173 |
+
"step": 815
|
1174 |
+
},
|
1175 |
+
{
|
1176 |
+
"epoch": 2.26,
|
1177 |
+
"grad_norm": 2.314737346791992,
|
1178 |
+
"learning_rate": 1.7466698358468825e-06,
|
1179 |
+
"loss": 0.1954,
|
1180 |
+
"step": 820
|
1181 |
+
},
|
1182 |
+
{
|
1183 |
+
"epoch": 2.27,
|
1184 |
+
"grad_norm": 2.17714632935505,
|
1185 |
+
"learning_rate": 1.6862328857893856e-06,
|
1186 |
+
"loss": 0.2047,
|
1187 |
+
"step": 825
|
1188 |
+
},
|
1189 |
+
{
|
1190 |
+
"epoch": 2.29,
|
1191 |
+
"grad_norm": 2.1882270574947076,
|
1192 |
+
"learning_rate": 1.6266472703396286e-06,
|
1193 |
+
"loss": 0.2201,
|
1194 |
+
"step": 830
|
1195 |
+
},
|
1196 |
+
{
|
1197 |
+
"epoch": 2.3,
|
1198 |
+
"grad_norm": 3.110550765065634,
|
1199 |
+
"learning_rate": 1.567928297542749e-06,
|
1200 |
+
"loss": 0.1928,
|
1201 |
+
"step": 835
|
1202 |
+
},
|
1203 |
+
{
|
1204 |
+
"epoch": 2.31,
|
1205 |
+
"grad_norm": 2.1365808529854586,
|
1206 |
+
"learning_rate": 1.510091052796105e-06,
|
1207 |
+
"loss": 0.1918,
|
1208 |
+
"step": 840
|
1209 |
+
},
|
1210 |
+
{
|
1211 |
+
"epoch": 2.33,
|
1212 |
+
"grad_norm": 2.388612603639893,
|
1213 |
+
"learning_rate": 1.4531503949737107e-06,
|
1214 |
+
"loss": 0.1977,
|
1215 |
+
"step": 845
|
1216 |
+
},
|
1217 |
+
{
|
1218 |
+
"epoch": 2.34,
|
1219 |
+
"grad_norm": 2.191971884772306,
|
1220 |
+
"learning_rate": 1.3971209526088764e-06,
|
1221 |
+
"loss": 0.1845,
|
1222 |
+
"step": 850
|
1223 |
+
},
|
1224 |
+
{
|
1225 |
+
"epoch": 2.36,
|
1226 |
+
"grad_norm": 2.2009119225291354,
|
1227 |
+
"learning_rate": 1.3420171201359933e-06,
|
1228 |
+
"loss": 0.1904,
|
1229 |
+
"step": 855
|
1230 |
+
},
|
1231 |
+
{
|
1232 |
+
"epoch": 2.37,
|
1233 |
+
"grad_norm": 2.2802253001639694,
|
1234 |
+
"learning_rate": 1.2878530541925077e-06,
|
1235 |
+
"loss": 0.187,
|
1236 |
+
"step": 860
|
1237 |
+
},
|
1238 |
+
{
|
1239 |
+
"epoch": 2.38,
|
1240 |
+
"grad_norm": 8.310094573105028,
|
1241 |
+
"learning_rate": 1.234642669981946e-06,
|
1242 |
+
"loss": 0.1953,
|
1243 |
+
"step": 865
|
1244 |
+
},
|
1245 |
+
{
|
1246 |
+
"epoch": 2.4,
|
1247 |
+
"grad_norm": 2.007390735385814,
|
1248 |
+
"learning_rate": 1.1823996376989849e-06,
|
1249 |
+
"loss": 0.2004,
|
1250 |
+
"step": 870
|
1251 |
+
},
|
1252 |
+
{
|
1253 |
+
"epoch": 2.41,
|
1254 |
+
"grad_norm": 2.1635128901100047,
|
1255 |
+
"learning_rate": 1.1311373790174656e-06,
|
1256 |
+
"loss": 0.1912,
|
1257 |
+
"step": 875
|
1258 |
+
},
|
1259 |
+
{
|
1260 |
+
"epoch": 2.42,
|
1261 |
+
"grad_norm": 2.0539344550751313,
|
1262 |
+
"learning_rate": 1.0808690636422587e-06,
|
1263 |
+
"loss": 0.1916,
|
1264 |
+
"step": 880
|
1265 |
+
},
|
1266 |
+
{
|
1267 |
+
"epoch": 2.44,
|
1268 |
+
"grad_norm": 2.0611679807811507,
|
1269 |
+
"learning_rate": 1.031607605925839e-06,
|
1270 |
+
"loss": 0.1955,
|
1271 |
+
"step": 885
|
1272 |
+
},
|
1273 |
+
{
|
1274 |
+
"epoch": 2.45,
|
1275 |
+
"grad_norm": 2.013017015156521,
|
1276 |
+
"learning_rate": 9.833656615504978e-07,
|
1277 |
+
"loss": 0.1972,
|
1278 |
+
"step": 890
|
1279 |
+
},
|
1280 |
+
{
|
1281 |
+
"epoch": 2.47,
|
1282 |
+
"grad_norm": 2.177386578340672,
|
1283 |
+
"learning_rate": 9.361556242769871e-07,
|
1284 |
+
"loss": 0.1914,
|
1285 |
+
"step": 895
|
1286 |
+
},
|
1287 |
+
{
|
1288 |
+
"epoch": 2.48,
|
1289 |
+
"grad_norm": 2.0667008735778043,
|
1290 |
+
"learning_rate": 8.899896227604509e-07,
|
1291 |
+
"loss": 0.1932,
|
1292 |
+
"step": 900
|
1293 |
+
},
|
1294 |
+
{
|
1295 |
+
"epoch": 2.49,
|
1296 |
+
"grad_norm": 2.3033918528237467,
|
1297 |
+
"learning_rate": 8.448795174344803e-07,
|
1298 |
+
"loss": 0.1954,
|
1299 |
+
"step": 905
|
1300 |
+
},
|
1301 |
+
{
|
1302 |
+
"epoch": 2.51,
|
1303 |
+
"grad_norm": 2.000031770097792,
|
1304 |
+
"learning_rate": 8.008368974640634e-07,
|
1305 |
+
"loss": 0.1848,
|
1306 |
+
"step": 910
|
1307 |
+
},
|
1308 |
+
{
|
1309 |
+
"epoch": 2.52,
|
1310 |
+
"grad_norm": 2.0956889327082022,
|
1311 |
+
"learning_rate": 7.578730777682386e-07,
|
1312 |
+
"loss": 0.2009,
|
1313 |
+
"step": 915
|
1314 |
+
},
|
1315 |
+
{
|
1316 |
+
"epoch": 2.53,
|
1317 |
+
"grad_norm": 2.091926612910402,
|
1318 |
+
"learning_rate": 7.159990961131818e-07,
|
1319 |
+
"loss": 0.1941,
|
1320 |
+
"step": 920
|
1321 |
+
},
|
1322 |
+
{
|
1323 |
+
"epoch": 2.55,
|
1324 |
+
"grad_norm": 2.0429730704960356,
|
1325 |
+
"learning_rate": 6.752257102765325e-07,
|
1326 |
+
"loss": 0.1928,
|
1327 |
+
"step": 925
|
1328 |
+
},
|
1329 |
+
{
|
1330 |
+
"epoch": 2.56,
|
1331 |
+
"grad_norm": 2.154324400516288,
|
1332 |
+
"learning_rate": 6.355633952836115e-07,
|
1333 |
+
"loss": 0.1951,
|
1334 |
+
"step": 930
|
1335 |
+
},
|
1336 |
+
{
|
1337 |
+
"epoch": 2.58,
|
1338 |
+
"grad_norm": 2.067265269052674,
|
1339 |
+
"learning_rate": 5.9702234071631e-07,
|
1340 |
+
"loss": 0.207,
|
1341 |
+
"step": 935
|
1342 |
+
},
|
1343 |
+
{
|
1344 |
+
"epoch": 2.59,
|
1345 |
+
"grad_norm": 1.948503840598503,
|
1346 |
+
"learning_rate": 5.596124480952975e-07,
|
1347 |
+
"loss": 0.1929,
|
1348 |
+
"step": 940
|
1349 |
+
},
|
1350 |
+
{
|
1351 |
+
"epoch": 2.6,
|
1352 |
+
"grad_norm": 2.098095576485382,
|
1353 |
+
"learning_rate": 5.233433283362349e-07,
|
1354 |
+
"loss": 0.1886,
|
1355 |
+
"step": 945
|
1356 |
+
},
|
1357 |
+
{
|
1358 |
+
"epoch": 2.62,
|
1359 |
+
"grad_norm": 2.032706968996429,
|
1360 |
+
"learning_rate": 4.882242992806546e-07,
|
1361 |
+
"loss": 0.1846,
|
1362 |
+
"step": 950
|
1363 |
+
},
|
1364 |
+
{
|
1365 |
+
"epoch": 2.63,
|
1366 |
+
"grad_norm": 2.1026476881879748,
|
1367 |
+
"learning_rate": 4.542643833021254e-07,
|
1368 |
+
"loss": 0.1986,
|
1369 |
+
"step": 955
|
1370 |
+
},
|
1371 |
+
{
|
1372 |
+
"epoch": 2.64,
|
1373 |
+
"grad_norm": 2.8329709057520835,
|
1374 |
+
"learning_rate": 4.214723049883307e-07,
|
1375 |
+
"loss": 0.1965,
|
1376 |
+
"step": 960
|
1377 |
+
},
|
1378 |
+
{
|
1379 |
+
"epoch": 2.66,
|
1380 |
+
"grad_norm": 2.0453374464135026,
|
1381 |
+
"learning_rate": 3.8985648889964755e-07,
|
1382 |
+
"loss": 0.2001,
|
1383 |
+
"step": 965
|
1384 |
+
},
|
1385 |
+
{
|
1386 |
+
"epoch": 2.67,
|
1387 |
+
"grad_norm": 2.0157451646489895,
|
1388 |
+
"learning_rate": 3.5942505740480583e-07,
|
1389 |
+
"loss": 0.1854,
|
1390 |
+
"step": 970
|
1391 |
+
},
|
1392 |
+
{
|
1393 |
+
"epoch": 2.69,
|
1394 |
+
"grad_norm": 2.081338811663644,
|
1395 |
+
"learning_rate": 3.301858285941845e-07,
|
1396 |
+
"loss": 0.1905,
|
1397 |
+
"step": 975
|
1398 |
+
},
|
1399 |
+
{
|
1400 |
+
"epoch": 2.7,
|
1401 |
+
"grad_norm": 2.0777703480609295,
|
1402 |
+
"learning_rate": 3.0214631427127883e-07,
|
1403 |
+
"loss": 0.1871,
|
1404 |
+
"step": 980
|
1405 |
+
},
|
1406 |
+
{
|
1407 |
+
"epoch": 2.71,
|
1408 |
+
"grad_norm": 2.0259999411667535,
|
1409 |
+
"learning_rate": 2.7531371802285436e-07,
|
1410 |
+
"loss": 0.1924,
|
1411 |
+
"step": 985
|
1412 |
+
},
|
1413 |
+
{
|
1414 |
+
"epoch": 2.73,
|
1415 |
+
"grad_norm": 2.048118180121309,
|
1416 |
+
"learning_rate": 2.4969493336828353e-07,
|
1417 |
+
"loss": 0.1957,
|
1418 |
+
"step": 990
|
1419 |
+
},
|
1420 |
+
{
|
1421 |
+
"epoch": 2.74,
|
1422 |
+
"grad_norm": 2.1100138033455376,
|
1423 |
+
"learning_rate": 2.2529654198854834e-07,
|
1424 |
+
"loss": 0.204,
|
1425 |
+
"step": 995
|
1426 |
+
},
|
1427 |
+
{
|
1428 |
+
"epoch": 2.75,
|
1429 |
+
"grad_norm": 2.3890567881386358,
|
1430 |
+
"learning_rate": 2.0212481203534083e-07,
|
1431 |
+
"loss": 0.1882,
|
1432 |
+
"step": 1000
|
1433 |
+
},
|
1434 |
+
{
|
1435 |
+
"epoch": 2.77,
|
1436 |
+
"grad_norm": 2.0181369601611188,
|
1437 |
+
"learning_rate": 1.801856965207338e-07,
|
1438 |
+
"loss": 0.1922,
|
1439 |
+
"step": 1005
|
1440 |
+
},
|
1441 |
+
{
|
1442 |
+
"epoch": 2.78,
|
1443 |
+
"grad_norm": 2.0899720091201925,
|
1444 |
+
"learning_rate": 1.594848317877934e-07,
|
1445 |
+
"loss": 0.1858,
|
1446 |
+
"step": 1010
|
1447 |
+
},
|
1448 |
+
{
|
1449 |
+
"epoch": 2.8,
|
1450 |
+
"grad_norm": 2.0181925238394096,
|
1451 |
+
"learning_rate": 1.4002753606256082e-07,
|
1452 |
+
"loss": 0.1892,
|
1453 |
+
"step": 1015
|
1454 |
+
},
|
1455 |
+
{
|
1456 |
+
"epoch": 2.81,
|
1457 |
+
"grad_norm": 2.1440090885906304,
|
1458 |
+
"learning_rate": 1.2181880808775026e-07,
|
1459 |
+
"loss": 0.1989,
|
1460 |
+
"step": 1020
|
1461 |
+
},
|
1462 |
+
{
|
1463 |
+
"epoch": 2.82,
|
1464 |
+
"grad_norm": 2.1388600966336044,
|
1465 |
+
"learning_rate": 1.0486332583853565e-07,
|
1466 |
+
"loss": 0.1896,
|
1467 |
+
"step": 1025
|
1468 |
+
},
|
1469 |
+
{
|
1470 |
+
"epoch": 2.84,
|
1471 |
+
"grad_norm": 2.0742239070550323,
|
1472 |
+
"learning_rate": 8.916544532073413e-08,
|
1473 |
+
"loss": 0.1944,
|
1474 |
+
"step": 1030
|
1475 |
+
},
|
1476 |
+
{
|
1477 |
+
"epoch": 2.85,
|
1478 |
+
"grad_norm": 2.011520486971434,
|
1479 |
+
"learning_rate": 7.47291994517163e-08,
|
1480 |
+
"loss": 0.1921,
|
1481 |
+
"step": 1035
|
1482 |
+
},
|
1483 |
+
{
|
1484 |
+
"epoch": 2.87,
|
1485 |
+
"grad_norm": 1.9887158152528648,
|
1486 |
+
"learning_rate": 6.15582970243117e-08,
|
1487 |
+
"loss": 0.1969,
|
1488 |
+
"step": 1040
|
1489 |
+
},
|
1490 |
+
{
|
1491 |
+
"epoch": 2.88,
|
1492 |
+
"grad_norm": 1.980526039735843,
|
1493 |
+
"learning_rate": 4.9656121753990924e-08,
|
1494 |
+
"loss": 0.2015,
|
1495 |
+
"step": 1045
|
1496 |
+
},
|
1497 |
+
{
|
1498 |
+
"epoch": 2.89,
|
1499 |
+
"grad_norm": 2.0507087687769125,
|
1500 |
+
"learning_rate": 3.902573140956101e-08,
|
1501 |
+
"loss": 0.1899,
|
1502 |
+
"step": 1050
|
1503 |
+
},
|
1504 |
+
{
|
1505 |
+
"epoch": 2.91,
|
1506 |
+
"grad_norm": 2.101435409729603,
|
1507 |
+
"learning_rate": 2.966985702759828e-08,
|
1508 |
+
"loss": 0.1852,
|
1509 |
+
"step": 1055
|
1510 |
+
},
|
1511 |
+
{
|
1512 |
+
"epoch": 2.92,
|
1513 |
+
"grad_norm": 2.0278350613575484,
|
1514 |
+
"learning_rate": 2.159090221082294e-08,
|
1515 |
+
"loss": 0.185,
|
1516 |
+
"step": 1060
|
1517 |
+
},
|
1518 |
+
{
|
1519 |
+
"epoch": 2.93,
|
1520 |
+
"grad_norm": 2.0276084512238635,
|
1521 |
+
"learning_rate": 1.4790942510590767e-08,
|
1522 |
+
"loss": 0.1892,
|
1523 |
+
"step": 1065
|
1524 |
+
},
|
1525 |
+
{
|
1526 |
+
"epoch": 2.95,
|
1527 |
+
"grad_norm": 2.125689035287332,
|
1528 |
+
"learning_rate": 9.27172489366912e-09,
|
1529 |
+
"loss": 0.1986,
|
1530 |
+
"step": 1070
|
1531 |
+
},
|
1532 |
+
{
|
1533 |
+
"epoch": 2.96,
|
1534 |
+
"grad_norm": 2.015031215767539,
|
1535 |
+
"learning_rate": 5.034667293427053e-09,
|
1536 |
+
"loss": 0.1915,
|
1537 |
+
"step": 1075
|
1538 |
+
},
|
1539 |
+
{
|
1540 |
+
"epoch": 2.98,
|
1541 |
+
"grad_norm": 1.9990729935456388,
|
1542 |
+
"learning_rate": 2.0808582455528194e-09,
|
1543 |
+
"loss": 0.1949,
|
1544 |
+
"step": 1080
|
1545 |
+
},
|
1546 |
+
{
|
1547 |
+
"epoch": 2.99,
|
1548 |
+
"grad_norm": 3.674390036726276,
|
1549 |
+
"learning_rate": 4.1105660840368154e-10,
|
1550 |
+
"loss": 0.2012,
|
1551 |
+
"step": 1085
|
1552 |
+
},
|
1553 |
+
{
|
1554 |
+
"epoch": 3.0,
|
1555 |
+
"eval_loss": 0.27156856656074524,
|
1556 |
+
"eval_runtime": 0.7081,
|
1557 |
+
"eval_samples_per_second": 29.656,
|
1558 |
+
"eval_steps_per_second": 1.412,
|
1559 |
+
"step": 1089
|
1560 |
+
},
|
1561 |
+
{
|
1562 |
+
"epoch": 3.0,
|
1563 |
+
"step": 1089,
|
1564 |
+
"total_flos": 227909755207680.0,
|
1565 |
+
"train_loss": 0.3156235526196994,
|
1566 |
+
"train_runtime": 6236.2054,
|
1567 |
+
"train_samples_per_second": 11.165,
|
1568 |
+
"train_steps_per_second": 0.175
|
1569 |
+
}
|
1570 |
+
],
|
1571 |
+
"logging_steps": 5,
|
1572 |
+
"max_steps": 1089,
|
1573 |
+
"num_input_tokens_seen": 0,
|
1574 |
+
"num_train_epochs": 3,
|
1575 |
+
"save_steps": 400,
|
1576 |
+
"total_flos": 227909755207680.0,
|
1577 |
+
"train_batch_size": 4,
|
1578 |
+
"trial_name": null,
|
1579 |
+
"trial_params": null
|
1580 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:15ed873d78a169d3a2c9a2d6112b86ded37942f7f481d3fe0e05716e6b476c6f
|
3 |
+
size 6264
|