Upload folder using huggingface_hub
Browse files- README.md +138 -3
- config.json +30 -0
- generation_config.json +6 -0
- merges.txt +0 -0
- model-00001-of-00002.safetensors +3 -0
- model-00002-of-00002.safetensors +3 -0
- model.safetensors.index.json +490 -0
- special_tokens_map.json +63 -0
- tokenizer.json +0 -0
- tokenizer_config.json +357 -0
- trainer_state.json +2382 -0
- training_args.bin +3 -0
- vocab.json +0 -0
README.md
CHANGED
@@ -1,3 +1,138 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# README
|
2 |
+
|
3 |
+
## Model Summary
|
4 |
+
|
5 |
+
This is a instruction-tuned version of the [Starcoder2-3B model](https://huggingface.co/bigcode/starcoder2-3b). It has been trained using the same [repository](https://github.com/bigcode-project/starcoder2-self-align) and [dataset](https://huggingface.co/datasets/bigcode/self-oss-instruct-sc2-exec-filter-50k) used for Starcoder2-15B. It uses the same prompt generation technique as the Starcoder2-15B mode. So, it can be used as a drop in replacement by just changing the model path.
|
6 |
+
|
7 |
+
* [Paper](https://arxiv.org/abs/2402.19173)
|
8 |
+
|
9 |
+
## Intended Use
|
10 |
+
|
11 |
+
Running code language models locally. This model can easily run on:
|
12 |
+
|
13 |
+
* 8 GB and 10 GB VRAM machines with FP16
|
14 |
+
* 6 GB VRAM machines with INT8
|
15 |
+
* 4 GB VRAM machines with INT4
|
16 |
+
|
17 |
+
## Example
|
18 |
+
|
19 |
+
**Using FP16**
|
20 |
+
|
21 |
+
```python
|
22 |
+
import transformers
|
23 |
+
import torch
|
24 |
+
|
25 |
+
pipeline = transformers.pipeline(
|
26 |
+
model="outputs_starcoder3b_4e",
|
27 |
+
task="text-generation",
|
28 |
+
torch_dtype=torch.bfloat16,
|
29 |
+
device_map="auto",
|
30 |
+
)
|
31 |
+
|
32 |
+
def respond(instruction: str, response_prefix: str) -> str:
|
33 |
+
messages = [{"role": "user", "content": instruction}]
|
34 |
+
prompt = pipeline.tokenizer.apply_chat_template(messages, tokenize=False)
|
35 |
+
prompt += response_prefix
|
36 |
+
|
37 |
+
teminators = [
|
38 |
+
pipeline.tokenizer.eos_token_id,
|
39 |
+
pipeline.tokenizer.convert_tokens_to_ids("###"),
|
40 |
+
]
|
41 |
+
|
42 |
+
result = pipeline(
|
43 |
+
prompt,
|
44 |
+
max_length=1024,
|
45 |
+
num_return_sequences=1,
|
46 |
+
do_sample=False,
|
47 |
+
eos_token_id=teminators,
|
48 |
+
pad_token_id=pipeline.tokenizer.eos_token_id,
|
49 |
+
truncation=True,
|
50 |
+
)
|
51 |
+
response = response_prefix + result[0]["generated_text"][len(prompt) :].split("###")[0].rstrip()
|
52 |
+
return response
|
53 |
+
|
54 |
+
|
55 |
+
instruction = "Write the Transformer encoder in PyTorch."
|
56 |
+
response_prefix = ""
|
57 |
+
|
58 |
+
print(respond(instruction, response_prefix))
|
59 |
+
```
|
60 |
+
|
61 |
+
*Output:*
|
62 |
+
|
63 |
+
````
|
64 |
+
```python
|
65 |
+
import torch
|
66 |
+
import torch.nn as nn
|
67 |
+
|
68 |
+
class TransformerEncoder(nn.Module):
|
69 |
+
def __init__(self, d_model, nhead, num_layers, dim_feedforward=2048, dropout=0.1):
|
70 |
+
super(TransformerEncoder, self).__init__()
|
71 |
+
self.encoder_layer = nn.TransformerEncoderLayer(d_model, nhead, dim_feedforward, dropout)
|
72 |
+
self.transformer_encoder = nn.TransformerEncoder(self.encoder_layer, num_layers)
|
73 |
+
|
74 |
+
def forward(self, src):
|
75 |
+
return self.transformer_encoder(src)
|
76 |
+
```
|
77 |
+
````
|
78 |
+
|
79 |
+
## Training
|
80 |
+
|
81 |
+
* 4 epochs
|
82 |
+
* Training type: Full fine tuning
|
83 |
+
* Training time: ~4 hours
|
84 |
+
* Batch size: 2
|
85 |
+
* Gradient accumulation step: 256
|
86 |
+
* Sequence length: 1280
|
87 |
+
|
88 |
+
### Exact Training Command Used
|
89 |
+
|
90 |
+
**See the [repository](https://github.com/bigcode-project/starcoder2-self-align) for setup details.**
|
91 |
+
|
92 |
+
```
|
93 |
+
MODEL_KEY=bigcode/starcoder2-3b
|
94 |
+
LR=1e-5
|
95 |
+
EPOCH=4
|
96 |
+
SEQ_LEN=1280
|
97 |
+
WARMUP_RATIO=0.05
|
98 |
+
OUTPUT_DIR=outputs_starcoder3b_4e
|
99 |
+
DATASET_FILE=train_data.jsonl
|
100 |
+
accelerate launch -m star_align.train \
|
101 |
+
--model_key $MODEL_KEY \
|
102 |
+
--model_name_or_path $MODEL_KEY \
|
103 |
+
--use_flash_attention True \
|
104 |
+
--datafile_paths $DATASET_FILE \
|
105 |
+
--output_dir $OUTPUT_DIR \
|
106 |
+
--bf16 True \
|
107 |
+
--num_train_epochs $EPOCH \
|
108 |
+
--max_training_seq_length $SEQ_LEN \
|
109 |
+
--pad_to_max_length False \
|
110 |
+
--per_device_train_batch_size 2 \
|
111 |
+
--gradient_accumulation_steps 256 \
|
112 |
+
--group_by_length False \
|
113 |
+
--ddp_find_unused_parameters False \
|
114 |
+
--logging_steps 1 \
|
115 |
+
--log_level info \
|
116 |
+
--optim adafactor \
|
117 |
+
--max_grad_norm -1 \
|
118 |
+
--warmup_ratio $WARMUP_RATIO \
|
119 |
+
--learning_rate $LR \
|
120 |
+
--lr_scheduler_type linear \
|
121 |
+
--attention_dropout 0.0 \
|
122 |
+
--residual_dropout 0.0 \
|
123 |
+
--embedding_dropout 0.0
|
124 |
+
```
|
125 |
+
|
126 |
+
### Hardware
|
127 |
+
|
128 |
+
* 40 GB NVIDIA A100
|
129 |
+
|
130 |
+
## Attributions
|
131 |
+
|
132 |
+
* [Starcoder2 Self Align codebase](https://github.com/bigcode-project/starcoder2-self-align)
|
133 |
+
* [Starcoder2 Self Align dataset](https://huggingface.co/datasets/bigcode/self-oss-instruct-sc2-exec-filter-50k)
|
134 |
+
* [Starcoder2 paper](https://arxiv.org/abs/2402.19173)
|
135 |
+
|
136 |
+
## License
|
137 |
+
|
138 |
+
The model is licensed under the BigCode OpenRAIL-M v1 license agreement. You can find the full agreement [here](https://huggingface.co/spaces/bigcode/bigcode-model-license-agreement).
|
config.json
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "bigcode/starcoder2-3b",
|
3 |
+
"architectures": [
|
4 |
+
"Starcoder2ForCausalLM"
|
5 |
+
],
|
6 |
+
"attention_dropout": 0.0,
|
7 |
+
"bos_token_id": 0,
|
8 |
+
"embedding_dropout": 0.0,
|
9 |
+
"eos_token_id": 0,
|
10 |
+
"hidden_act": "gelu_pytorch_tanh",
|
11 |
+
"hidden_size": 3072,
|
12 |
+
"initializer_range": 0.018042,
|
13 |
+
"intermediate_size": 12288,
|
14 |
+
"max_position_embeddings": 16384,
|
15 |
+
"mlp_type": "default",
|
16 |
+
"model_type": "starcoder2",
|
17 |
+
"norm_epsilon": 1e-05,
|
18 |
+
"norm_type": "layer_norm",
|
19 |
+
"num_attention_heads": 24,
|
20 |
+
"num_hidden_layers": 30,
|
21 |
+
"num_key_value_heads": 2,
|
22 |
+
"residual_dropout": 0.0,
|
23 |
+
"rope_theta": 999999.4420358813,
|
24 |
+
"sliding_window": 4096,
|
25 |
+
"torch_dtype": "bfloat16",
|
26 |
+
"transformers_version": "4.39.0",
|
27 |
+
"use_bias": true,
|
28 |
+
"use_cache": true,
|
29 |
+
"vocab_size": 49152
|
30 |
+
}
|
generation_config.json
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_from_model_config": true,
|
3 |
+
"bos_token_id": 0,
|
4 |
+
"eos_token_id": 0,
|
5 |
+
"transformers_version": "4.39.0"
|
6 |
+
}
|
merges.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
model-00001-of-00002.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:50ccd3e336b5da6cc64941191deba06e4fd131c4b8d3a3bf97dc127a8611825e
|
3 |
+
size 4949934200
|
model-00002-of-00002.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:07e318b21a1f6742fc880ef7de8df7855574acaf24bb3c3a668b5e467e24fb43
|
3 |
+
size 1110862568
|
model.safetensors.index.json
ADDED
@@ -0,0 +1,490 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"metadata": {
|
3 |
+
"total_size": 6060742656
|
4 |
+
},
|
5 |
+
"weight_map": {
|
6 |
+
"model.embed_tokens.weight": "model-00001-of-00002.safetensors",
|
7 |
+
"model.layers.0.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
8 |
+
"model.layers.0.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
9 |
+
"model.layers.0.mlp.c_fc.bias": "model-00001-of-00002.safetensors",
|
10 |
+
"model.layers.0.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
11 |
+
"model.layers.0.mlp.c_proj.bias": "model-00001-of-00002.safetensors",
|
12 |
+
"model.layers.0.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
13 |
+
"model.layers.0.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
14 |
+
"model.layers.0.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
15 |
+
"model.layers.0.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
16 |
+
"model.layers.0.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
17 |
+
"model.layers.0.self_attn.o_proj.bias": "model-00001-of-00002.safetensors",
|
18 |
+
"model.layers.0.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
19 |
+
"model.layers.0.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
20 |
+
"model.layers.0.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
21 |
+
"model.layers.0.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
22 |
+
"model.layers.0.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
23 |
+
"model.layers.1.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
24 |
+
"model.layers.1.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
25 |
+
"model.layers.1.mlp.c_fc.bias": "model-00001-of-00002.safetensors",
|
26 |
+
"model.layers.1.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
27 |
+
"model.layers.1.mlp.c_proj.bias": "model-00001-of-00002.safetensors",
|
28 |
+
"model.layers.1.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
29 |
+
"model.layers.1.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
30 |
+
"model.layers.1.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
31 |
+
"model.layers.1.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
32 |
+
"model.layers.1.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
33 |
+
"model.layers.1.self_attn.o_proj.bias": "model-00001-of-00002.safetensors",
|
34 |
+
"model.layers.1.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
35 |
+
"model.layers.1.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
36 |
+
"model.layers.1.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
37 |
+
"model.layers.1.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
38 |
+
"model.layers.1.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
39 |
+
"model.layers.10.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
40 |
+
"model.layers.10.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
41 |
+
"model.layers.10.mlp.c_fc.bias": "model-00001-of-00002.safetensors",
|
42 |
+
"model.layers.10.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
43 |
+
"model.layers.10.mlp.c_proj.bias": "model-00001-of-00002.safetensors",
|
44 |
+
"model.layers.10.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
45 |
+
"model.layers.10.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
46 |
+
"model.layers.10.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
47 |
+
"model.layers.10.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
48 |
+
"model.layers.10.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
49 |
+
"model.layers.10.self_attn.o_proj.bias": "model-00001-of-00002.safetensors",
|
50 |
+
"model.layers.10.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
51 |
+
"model.layers.10.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
52 |
+
"model.layers.10.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
53 |
+
"model.layers.10.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
54 |
+
"model.layers.10.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
55 |
+
"model.layers.11.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
56 |
+
"model.layers.11.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
57 |
+
"model.layers.11.mlp.c_fc.bias": "model-00001-of-00002.safetensors",
|
58 |
+
"model.layers.11.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
59 |
+
"model.layers.11.mlp.c_proj.bias": "model-00001-of-00002.safetensors",
|
60 |
+
"model.layers.11.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
61 |
+
"model.layers.11.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
62 |
+
"model.layers.11.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
63 |
+
"model.layers.11.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
64 |
+
"model.layers.11.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
65 |
+
"model.layers.11.self_attn.o_proj.bias": "model-00001-of-00002.safetensors",
|
66 |
+
"model.layers.11.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
67 |
+
"model.layers.11.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
68 |
+
"model.layers.11.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
69 |
+
"model.layers.11.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
70 |
+
"model.layers.11.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
71 |
+
"model.layers.12.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
72 |
+
"model.layers.12.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
73 |
+
"model.layers.12.mlp.c_fc.bias": "model-00001-of-00002.safetensors",
|
74 |
+
"model.layers.12.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
75 |
+
"model.layers.12.mlp.c_proj.bias": "model-00001-of-00002.safetensors",
|
76 |
+
"model.layers.12.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
77 |
+
"model.layers.12.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
78 |
+
"model.layers.12.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
79 |
+
"model.layers.12.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
80 |
+
"model.layers.12.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
81 |
+
"model.layers.12.self_attn.o_proj.bias": "model-00001-of-00002.safetensors",
|
82 |
+
"model.layers.12.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
83 |
+
"model.layers.12.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
84 |
+
"model.layers.12.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
85 |
+
"model.layers.12.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
86 |
+
"model.layers.12.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
87 |
+
"model.layers.13.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
88 |
+
"model.layers.13.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
89 |
+
"model.layers.13.mlp.c_fc.bias": "model-00001-of-00002.safetensors",
|
90 |
+
"model.layers.13.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
91 |
+
"model.layers.13.mlp.c_proj.bias": "model-00001-of-00002.safetensors",
|
92 |
+
"model.layers.13.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
93 |
+
"model.layers.13.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
94 |
+
"model.layers.13.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
95 |
+
"model.layers.13.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
96 |
+
"model.layers.13.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
97 |
+
"model.layers.13.self_attn.o_proj.bias": "model-00001-of-00002.safetensors",
|
98 |
+
"model.layers.13.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
99 |
+
"model.layers.13.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
100 |
+
"model.layers.13.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
101 |
+
"model.layers.13.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
102 |
+
"model.layers.13.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
103 |
+
"model.layers.14.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
104 |
+
"model.layers.14.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
105 |
+
"model.layers.14.mlp.c_fc.bias": "model-00001-of-00002.safetensors",
|
106 |
+
"model.layers.14.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
107 |
+
"model.layers.14.mlp.c_proj.bias": "model-00001-of-00002.safetensors",
|
108 |
+
"model.layers.14.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
109 |
+
"model.layers.14.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
110 |
+
"model.layers.14.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
111 |
+
"model.layers.14.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
112 |
+
"model.layers.14.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
113 |
+
"model.layers.14.self_attn.o_proj.bias": "model-00001-of-00002.safetensors",
|
114 |
+
"model.layers.14.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
115 |
+
"model.layers.14.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
116 |
+
"model.layers.14.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
117 |
+
"model.layers.14.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
118 |
+
"model.layers.14.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
119 |
+
"model.layers.15.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
120 |
+
"model.layers.15.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
121 |
+
"model.layers.15.mlp.c_fc.bias": "model-00001-of-00002.safetensors",
|
122 |
+
"model.layers.15.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
123 |
+
"model.layers.15.mlp.c_proj.bias": "model-00001-of-00002.safetensors",
|
124 |
+
"model.layers.15.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
125 |
+
"model.layers.15.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
126 |
+
"model.layers.15.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
127 |
+
"model.layers.15.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
128 |
+
"model.layers.15.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
129 |
+
"model.layers.15.self_attn.o_proj.bias": "model-00001-of-00002.safetensors",
|
130 |
+
"model.layers.15.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
131 |
+
"model.layers.15.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
132 |
+
"model.layers.15.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
133 |
+
"model.layers.15.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
134 |
+
"model.layers.15.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
135 |
+
"model.layers.16.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
136 |
+
"model.layers.16.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
137 |
+
"model.layers.16.mlp.c_fc.bias": "model-00001-of-00002.safetensors",
|
138 |
+
"model.layers.16.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
139 |
+
"model.layers.16.mlp.c_proj.bias": "model-00001-of-00002.safetensors",
|
140 |
+
"model.layers.16.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
141 |
+
"model.layers.16.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
142 |
+
"model.layers.16.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
143 |
+
"model.layers.16.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
144 |
+
"model.layers.16.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
145 |
+
"model.layers.16.self_attn.o_proj.bias": "model-00001-of-00002.safetensors",
|
146 |
+
"model.layers.16.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
147 |
+
"model.layers.16.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
148 |
+
"model.layers.16.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
149 |
+
"model.layers.16.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
150 |
+
"model.layers.16.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
151 |
+
"model.layers.17.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
152 |
+
"model.layers.17.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
153 |
+
"model.layers.17.mlp.c_fc.bias": "model-00001-of-00002.safetensors",
|
154 |
+
"model.layers.17.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
155 |
+
"model.layers.17.mlp.c_proj.bias": "model-00001-of-00002.safetensors",
|
156 |
+
"model.layers.17.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
157 |
+
"model.layers.17.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
158 |
+
"model.layers.17.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
159 |
+
"model.layers.17.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
160 |
+
"model.layers.17.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
161 |
+
"model.layers.17.self_attn.o_proj.bias": "model-00001-of-00002.safetensors",
|
162 |
+
"model.layers.17.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
163 |
+
"model.layers.17.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
164 |
+
"model.layers.17.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
165 |
+
"model.layers.17.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
166 |
+
"model.layers.17.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
167 |
+
"model.layers.18.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
168 |
+
"model.layers.18.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
169 |
+
"model.layers.18.mlp.c_fc.bias": "model-00001-of-00002.safetensors",
|
170 |
+
"model.layers.18.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
171 |
+
"model.layers.18.mlp.c_proj.bias": "model-00001-of-00002.safetensors",
|
172 |
+
"model.layers.18.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
173 |
+
"model.layers.18.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
174 |
+
"model.layers.18.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
175 |
+
"model.layers.18.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
176 |
+
"model.layers.18.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
177 |
+
"model.layers.18.self_attn.o_proj.bias": "model-00001-of-00002.safetensors",
|
178 |
+
"model.layers.18.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
179 |
+
"model.layers.18.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
180 |
+
"model.layers.18.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
181 |
+
"model.layers.18.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
182 |
+
"model.layers.18.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
183 |
+
"model.layers.19.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
184 |
+
"model.layers.19.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
185 |
+
"model.layers.19.mlp.c_fc.bias": "model-00001-of-00002.safetensors",
|
186 |
+
"model.layers.19.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
187 |
+
"model.layers.19.mlp.c_proj.bias": "model-00001-of-00002.safetensors",
|
188 |
+
"model.layers.19.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
189 |
+
"model.layers.19.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
190 |
+
"model.layers.19.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
191 |
+
"model.layers.19.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
192 |
+
"model.layers.19.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
193 |
+
"model.layers.19.self_attn.o_proj.bias": "model-00001-of-00002.safetensors",
|
194 |
+
"model.layers.19.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
195 |
+
"model.layers.19.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
196 |
+
"model.layers.19.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
197 |
+
"model.layers.19.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
198 |
+
"model.layers.19.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
199 |
+
"model.layers.2.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
200 |
+
"model.layers.2.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
201 |
+
"model.layers.2.mlp.c_fc.bias": "model-00001-of-00002.safetensors",
|
202 |
+
"model.layers.2.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
203 |
+
"model.layers.2.mlp.c_proj.bias": "model-00001-of-00002.safetensors",
|
204 |
+
"model.layers.2.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
205 |
+
"model.layers.2.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
206 |
+
"model.layers.2.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
207 |
+
"model.layers.2.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
208 |
+
"model.layers.2.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
209 |
+
"model.layers.2.self_attn.o_proj.bias": "model-00001-of-00002.safetensors",
|
210 |
+
"model.layers.2.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
211 |
+
"model.layers.2.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
212 |
+
"model.layers.2.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
213 |
+
"model.layers.2.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
214 |
+
"model.layers.2.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
215 |
+
"model.layers.20.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
216 |
+
"model.layers.20.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
217 |
+
"model.layers.20.mlp.c_fc.bias": "model-00001-of-00002.safetensors",
|
218 |
+
"model.layers.20.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
219 |
+
"model.layers.20.mlp.c_proj.bias": "model-00001-of-00002.safetensors",
|
220 |
+
"model.layers.20.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
221 |
+
"model.layers.20.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
222 |
+
"model.layers.20.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
223 |
+
"model.layers.20.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
224 |
+
"model.layers.20.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
225 |
+
"model.layers.20.self_attn.o_proj.bias": "model-00001-of-00002.safetensors",
|
226 |
+
"model.layers.20.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
227 |
+
"model.layers.20.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
228 |
+
"model.layers.20.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
229 |
+
"model.layers.20.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
230 |
+
"model.layers.20.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
231 |
+
"model.layers.21.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
232 |
+
"model.layers.21.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
233 |
+
"model.layers.21.mlp.c_fc.bias": "model-00001-of-00002.safetensors",
|
234 |
+
"model.layers.21.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
235 |
+
"model.layers.21.mlp.c_proj.bias": "model-00001-of-00002.safetensors",
|
236 |
+
"model.layers.21.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
237 |
+
"model.layers.21.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
238 |
+
"model.layers.21.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
239 |
+
"model.layers.21.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
240 |
+
"model.layers.21.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
241 |
+
"model.layers.21.self_attn.o_proj.bias": "model-00001-of-00002.safetensors",
|
242 |
+
"model.layers.21.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
243 |
+
"model.layers.21.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
244 |
+
"model.layers.21.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
245 |
+
"model.layers.21.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
246 |
+
"model.layers.21.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
247 |
+
"model.layers.22.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
248 |
+
"model.layers.22.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
249 |
+
"model.layers.22.mlp.c_fc.bias": "model-00001-of-00002.safetensors",
|
250 |
+
"model.layers.22.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
251 |
+
"model.layers.22.mlp.c_proj.bias": "model-00001-of-00002.safetensors",
|
252 |
+
"model.layers.22.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
253 |
+
"model.layers.22.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
254 |
+
"model.layers.22.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
255 |
+
"model.layers.22.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
256 |
+
"model.layers.22.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
257 |
+
"model.layers.22.self_attn.o_proj.bias": "model-00001-of-00002.safetensors",
|
258 |
+
"model.layers.22.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
259 |
+
"model.layers.22.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
260 |
+
"model.layers.22.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
261 |
+
"model.layers.22.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
262 |
+
"model.layers.22.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
263 |
+
"model.layers.23.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
264 |
+
"model.layers.23.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
265 |
+
"model.layers.23.mlp.c_fc.bias": "model-00001-of-00002.safetensors",
|
266 |
+
"model.layers.23.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
267 |
+
"model.layers.23.mlp.c_proj.bias": "model-00001-of-00002.safetensors",
|
268 |
+
"model.layers.23.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
269 |
+
"model.layers.23.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
270 |
+
"model.layers.23.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
271 |
+
"model.layers.23.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
272 |
+
"model.layers.23.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
273 |
+
"model.layers.23.self_attn.o_proj.bias": "model-00001-of-00002.safetensors",
|
274 |
+
"model.layers.23.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
275 |
+
"model.layers.23.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
276 |
+
"model.layers.23.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
277 |
+
"model.layers.23.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
278 |
+
"model.layers.23.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
279 |
+
"model.layers.24.input_layernorm.bias": "model-00002-of-00002.safetensors",
|
280 |
+
"model.layers.24.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
281 |
+
"model.layers.24.mlp.c_fc.bias": "model-00002-of-00002.safetensors",
|
282 |
+
"model.layers.24.mlp.c_fc.weight": "model-00002-of-00002.safetensors",
|
283 |
+
"model.layers.24.mlp.c_proj.bias": "model-00002-of-00002.safetensors",
|
284 |
+
"model.layers.24.mlp.c_proj.weight": "model-00002-of-00002.safetensors",
|
285 |
+
"model.layers.24.post_attention_layernorm.bias": "model-00002-of-00002.safetensors",
|
286 |
+
"model.layers.24.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
287 |
+
"model.layers.24.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
288 |
+
"model.layers.24.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
289 |
+
"model.layers.24.self_attn.o_proj.bias": "model-00001-of-00002.safetensors",
|
290 |
+
"model.layers.24.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
291 |
+
"model.layers.24.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
292 |
+
"model.layers.24.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
293 |
+
"model.layers.24.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
294 |
+
"model.layers.24.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
295 |
+
"model.layers.25.input_layernorm.bias": "model-00002-of-00002.safetensors",
|
296 |
+
"model.layers.25.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
297 |
+
"model.layers.25.mlp.c_fc.bias": "model-00002-of-00002.safetensors",
|
298 |
+
"model.layers.25.mlp.c_fc.weight": "model-00002-of-00002.safetensors",
|
299 |
+
"model.layers.25.mlp.c_proj.bias": "model-00002-of-00002.safetensors",
|
300 |
+
"model.layers.25.mlp.c_proj.weight": "model-00002-of-00002.safetensors",
|
301 |
+
"model.layers.25.post_attention_layernorm.bias": "model-00002-of-00002.safetensors",
|
302 |
+
"model.layers.25.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
303 |
+
"model.layers.25.self_attn.k_proj.bias": "model-00002-of-00002.safetensors",
|
304 |
+
"model.layers.25.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
305 |
+
"model.layers.25.self_attn.o_proj.bias": "model-00002-of-00002.safetensors",
|
306 |
+
"model.layers.25.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
307 |
+
"model.layers.25.self_attn.q_proj.bias": "model-00002-of-00002.safetensors",
|
308 |
+
"model.layers.25.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
309 |
+
"model.layers.25.self_attn.v_proj.bias": "model-00002-of-00002.safetensors",
|
310 |
+
"model.layers.25.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
311 |
+
"model.layers.26.input_layernorm.bias": "model-00002-of-00002.safetensors",
|
312 |
+
"model.layers.26.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
313 |
+
"model.layers.26.mlp.c_fc.bias": "model-00002-of-00002.safetensors",
|
314 |
+
"model.layers.26.mlp.c_fc.weight": "model-00002-of-00002.safetensors",
|
315 |
+
"model.layers.26.mlp.c_proj.bias": "model-00002-of-00002.safetensors",
|
316 |
+
"model.layers.26.mlp.c_proj.weight": "model-00002-of-00002.safetensors",
|
317 |
+
"model.layers.26.post_attention_layernorm.bias": "model-00002-of-00002.safetensors",
|
318 |
+
"model.layers.26.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
319 |
+
"model.layers.26.self_attn.k_proj.bias": "model-00002-of-00002.safetensors",
|
320 |
+
"model.layers.26.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
321 |
+
"model.layers.26.self_attn.o_proj.bias": "model-00002-of-00002.safetensors",
|
322 |
+
"model.layers.26.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
323 |
+
"model.layers.26.self_attn.q_proj.bias": "model-00002-of-00002.safetensors",
|
324 |
+
"model.layers.26.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
325 |
+
"model.layers.26.self_attn.v_proj.bias": "model-00002-of-00002.safetensors",
|
326 |
+
"model.layers.26.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
327 |
+
"model.layers.27.input_layernorm.bias": "model-00002-of-00002.safetensors",
|
328 |
+
"model.layers.27.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
329 |
+
"model.layers.27.mlp.c_fc.bias": "model-00002-of-00002.safetensors",
|
330 |
+
"model.layers.27.mlp.c_fc.weight": "model-00002-of-00002.safetensors",
|
331 |
+
"model.layers.27.mlp.c_proj.bias": "model-00002-of-00002.safetensors",
|
332 |
+
"model.layers.27.mlp.c_proj.weight": "model-00002-of-00002.safetensors",
|
333 |
+
"model.layers.27.post_attention_layernorm.bias": "model-00002-of-00002.safetensors",
|
334 |
+
"model.layers.27.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
335 |
+
"model.layers.27.self_attn.k_proj.bias": "model-00002-of-00002.safetensors",
|
336 |
+
"model.layers.27.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
337 |
+
"model.layers.27.self_attn.o_proj.bias": "model-00002-of-00002.safetensors",
|
338 |
+
"model.layers.27.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
339 |
+
"model.layers.27.self_attn.q_proj.bias": "model-00002-of-00002.safetensors",
|
340 |
+
"model.layers.27.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
341 |
+
"model.layers.27.self_attn.v_proj.bias": "model-00002-of-00002.safetensors",
|
342 |
+
"model.layers.27.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
343 |
+
"model.layers.28.input_layernorm.bias": "model-00002-of-00002.safetensors",
|
344 |
+
"model.layers.28.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
345 |
+
"model.layers.28.mlp.c_fc.bias": "model-00002-of-00002.safetensors",
|
346 |
+
"model.layers.28.mlp.c_fc.weight": "model-00002-of-00002.safetensors",
|
347 |
+
"model.layers.28.mlp.c_proj.bias": "model-00002-of-00002.safetensors",
|
348 |
+
"model.layers.28.mlp.c_proj.weight": "model-00002-of-00002.safetensors",
|
349 |
+
"model.layers.28.post_attention_layernorm.bias": "model-00002-of-00002.safetensors",
|
350 |
+
"model.layers.28.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
351 |
+
"model.layers.28.self_attn.k_proj.bias": "model-00002-of-00002.safetensors",
|
352 |
+
"model.layers.28.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
353 |
+
"model.layers.28.self_attn.o_proj.bias": "model-00002-of-00002.safetensors",
|
354 |
+
"model.layers.28.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
355 |
+
"model.layers.28.self_attn.q_proj.bias": "model-00002-of-00002.safetensors",
|
356 |
+
"model.layers.28.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
357 |
+
"model.layers.28.self_attn.v_proj.bias": "model-00002-of-00002.safetensors",
|
358 |
+
"model.layers.28.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
359 |
+
"model.layers.29.input_layernorm.bias": "model-00002-of-00002.safetensors",
|
360 |
+
"model.layers.29.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
361 |
+
"model.layers.29.mlp.c_fc.bias": "model-00002-of-00002.safetensors",
|
362 |
+
"model.layers.29.mlp.c_fc.weight": "model-00002-of-00002.safetensors",
|
363 |
+
"model.layers.29.mlp.c_proj.bias": "model-00002-of-00002.safetensors",
|
364 |
+
"model.layers.29.mlp.c_proj.weight": "model-00002-of-00002.safetensors",
|
365 |
+
"model.layers.29.post_attention_layernorm.bias": "model-00002-of-00002.safetensors",
|
366 |
+
"model.layers.29.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
367 |
+
"model.layers.29.self_attn.k_proj.bias": "model-00002-of-00002.safetensors",
|
368 |
+
"model.layers.29.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
369 |
+
"model.layers.29.self_attn.o_proj.bias": "model-00002-of-00002.safetensors",
|
370 |
+
"model.layers.29.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
371 |
+
"model.layers.29.self_attn.q_proj.bias": "model-00002-of-00002.safetensors",
|
372 |
+
"model.layers.29.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
373 |
+
"model.layers.29.self_attn.v_proj.bias": "model-00002-of-00002.safetensors",
|
374 |
+
"model.layers.29.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
375 |
+
"model.layers.3.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
376 |
+
"model.layers.3.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
377 |
+
"model.layers.3.mlp.c_fc.bias": "model-00001-of-00002.safetensors",
|
378 |
+
"model.layers.3.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
379 |
+
"model.layers.3.mlp.c_proj.bias": "model-00001-of-00002.safetensors",
|
380 |
+
"model.layers.3.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
381 |
+
"model.layers.3.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
382 |
+
"model.layers.3.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
383 |
+
"model.layers.3.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
384 |
+
"model.layers.3.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
385 |
+
"model.layers.3.self_attn.o_proj.bias": "model-00001-of-00002.safetensors",
|
386 |
+
"model.layers.3.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
387 |
+
"model.layers.3.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
388 |
+
"model.layers.3.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
389 |
+
"model.layers.3.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
390 |
+
"model.layers.3.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
391 |
+
"model.layers.4.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
392 |
+
"model.layers.4.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
393 |
+
"model.layers.4.mlp.c_fc.bias": "model-00001-of-00002.safetensors",
|
394 |
+
"model.layers.4.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
395 |
+
"model.layers.4.mlp.c_proj.bias": "model-00001-of-00002.safetensors",
|
396 |
+
"model.layers.4.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
397 |
+
"model.layers.4.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
398 |
+
"model.layers.4.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
399 |
+
"model.layers.4.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
400 |
+
"model.layers.4.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
401 |
+
"model.layers.4.self_attn.o_proj.bias": "model-00001-of-00002.safetensors",
|
402 |
+
"model.layers.4.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
403 |
+
"model.layers.4.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
404 |
+
"model.layers.4.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
405 |
+
"model.layers.4.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
406 |
+
"model.layers.4.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
407 |
+
"model.layers.5.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
408 |
+
"model.layers.5.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
409 |
+
"model.layers.5.mlp.c_fc.bias": "model-00001-of-00002.safetensors",
|
410 |
+
"model.layers.5.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
411 |
+
"model.layers.5.mlp.c_proj.bias": "model-00001-of-00002.safetensors",
|
412 |
+
"model.layers.5.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
413 |
+
"model.layers.5.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
414 |
+
"model.layers.5.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
415 |
+
"model.layers.5.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
416 |
+
"model.layers.5.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
417 |
+
"model.layers.5.self_attn.o_proj.bias": "model-00001-of-00002.safetensors",
|
418 |
+
"model.layers.5.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
419 |
+
"model.layers.5.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
420 |
+
"model.layers.5.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
421 |
+
"model.layers.5.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
422 |
+
"model.layers.5.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
423 |
+
"model.layers.6.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
424 |
+
"model.layers.6.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
425 |
+
"model.layers.6.mlp.c_fc.bias": "model-00001-of-00002.safetensors",
|
426 |
+
"model.layers.6.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
427 |
+
"model.layers.6.mlp.c_proj.bias": "model-00001-of-00002.safetensors",
|
428 |
+
"model.layers.6.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
429 |
+
"model.layers.6.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
430 |
+
"model.layers.6.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
431 |
+
"model.layers.6.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
432 |
+
"model.layers.6.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
433 |
+
"model.layers.6.self_attn.o_proj.bias": "model-00001-of-00002.safetensors",
|
434 |
+
"model.layers.6.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
435 |
+
"model.layers.6.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
436 |
+
"model.layers.6.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
437 |
+
"model.layers.6.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
438 |
+
"model.layers.6.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
439 |
+
"model.layers.7.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
440 |
+
"model.layers.7.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
441 |
+
"model.layers.7.mlp.c_fc.bias": "model-00001-of-00002.safetensors",
|
442 |
+
"model.layers.7.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
443 |
+
"model.layers.7.mlp.c_proj.bias": "model-00001-of-00002.safetensors",
|
444 |
+
"model.layers.7.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
445 |
+
"model.layers.7.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
446 |
+
"model.layers.7.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
447 |
+
"model.layers.7.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
448 |
+
"model.layers.7.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
449 |
+
"model.layers.7.self_attn.o_proj.bias": "model-00001-of-00002.safetensors",
|
450 |
+
"model.layers.7.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
451 |
+
"model.layers.7.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
452 |
+
"model.layers.7.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
453 |
+
"model.layers.7.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
454 |
+
"model.layers.7.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
455 |
+
"model.layers.8.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
456 |
+
"model.layers.8.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
457 |
+
"model.layers.8.mlp.c_fc.bias": "model-00001-of-00002.safetensors",
|
458 |
+
"model.layers.8.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
459 |
+
"model.layers.8.mlp.c_proj.bias": "model-00001-of-00002.safetensors",
|
460 |
+
"model.layers.8.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
461 |
+
"model.layers.8.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
462 |
+
"model.layers.8.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
463 |
+
"model.layers.8.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
464 |
+
"model.layers.8.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
465 |
+
"model.layers.8.self_attn.o_proj.bias": "model-00001-of-00002.safetensors",
|
466 |
+
"model.layers.8.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
467 |
+
"model.layers.8.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
468 |
+
"model.layers.8.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
469 |
+
"model.layers.8.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
470 |
+
"model.layers.8.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
471 |
+
"model.layers.9.input_layernorm.bias": "model-00001-of-00002.safetensors",
|
472 |
+
"model.layers.9.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
473 |
+
"model.layers.9.mlp.c_fc.bias": "model-00001-of-00002.safetensors",
|
474 |
+
"model.layers.9.mlp.c_fc.weight": "model-00001-of-00002.safetensors",
|
475 |
+
"model.layers.9.mlp.c_proj.bias": "model-00001-of-00002.safetensors",
|
476 |
+
"model.layers.9.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
|
477 |
+
"model.layers.9.post_attention_layernorm.bias": "model-00001-of-00002.safetensors",
|
478 |
+
"model.layers.9.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
479 |
+
"model.layers.9.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
480 |
+
"model.layers.9.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
481 |
+
"model.layers.9.self_attn.o_proj.bias": "model-00001-of-00002.safetensors",
|
482 |
+
"model.layers.9.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
483 |
+
"model.layers.9.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
484 |
+
"model.layers.9.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
485 |
+
"model.layers.9.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
486 |
+
"model.layers.9.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
487 |
+
"model.norm.bias": "model-00002-of-00002.safetensors",
|
488 |
+
"model.norm.weight": "model-00002-of-00002.safetensors"
|
489 |
+
}
|
490 |
+
}
|
special_tokens_map.json
ADDED
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"additional_special_tokens": [
|
3 |
+
"<|endoftext|>",
|
4 |
+
"<fim_prefix>",
|
5 |
+
"<fim_middle>",
|
6 |
+
"<fim_suffix>",
|
7 |
+
"<fim_pad>",
|
8 |
+
"<repo_name>",
|
9 |
+
"<file_sep>",
|
10 |
+
"<issue_start>",
|
11 |
+
"<issue_comment>",
|
12 |
+
"<issue_closed>",
|
13 |
+
"<jupyter_start>",
|
14 |
+
"<jupyter_text>",
|
15 |
+
"<jupyter_code>",
|
16 |
+
"<jupyter_output>",
|
17 |
+
"<jupyter_script>",
|
18 |
+
"<empty_output>",
|
19 |
+
"<code_to_intermediate>",
|
20 |
+
"<intermediate_to_code>",
|
21 |
+
"<pr>",
|
22 |
+
"<pr_status>",
|
23 |
+
"<pr_is_merged>",
|
24 |
+
"<pr_base>",
|
25 |
+
"<pr_file>",
|
26 |
+
"<pr_base_code>",
|
27 |
+
"<pr_diff>",
|
28 |
+
"<pr_diff_hunk>",
|
29 |
+
"<pr_comment>",
|
30 |
+
"<pr_event_id>",
|
31 |
+
"<pr_review>",
|
32 |
+
"<pr_review_state>",
|
33 |
+
"<pr_review_comment>",
|
34 |
+
"<pr_in_reply_to_review_id>",
|
35 |
+
"<pr_in_reply_to_comment_id>",
|
36 |
+
"<pr_diff_hunk_comment_line>",
|
37 |
+
"<NAME>",
|
38 |
+
"<EMAIL>",
|
39 |
+
"<KEY>",
|
40 |
+
"<PASSWORD>"
|
41 |
+
],
|
42 |
+
"bos_token": {
|
43 |
+
"content": "<|endoftext|>",
|
44 |
+
"lstrip": false,
|
45 |
+
"normalized": false,
|
46 |
+
"rstrip": false,
|
47 |
+
"single_word": false
|
48 |
+
},
|
49 |
+
"eos_token": {
|
50 |
+
"content": "<|endoftext|>",
|
51 |
+
"lstrip": false,
|
52 |
+
"normalized": false,
|
53 |
+
"rstrip": false,
|
54 |
+
"single_word": false
|
55 |
+
},
|
56 |
+
"unk_token": {
|
57 |
+
"content": "<|endoftext|>",
|
58 |
+
"lstrip": false,
|
59 |
+
"normalized": false,
|
60 |
+
"rstrip": false,
|
61 |
+
"single_word": false
|
62 |
+
}
|
63 |
+
}
|
tokenizer.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
tokenizer_config.json
ADDED
@@ -0,0 +1,357 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"add_prefix_space": false,
|
3 |
+
"added_tokens_decoder": {
|
4 |
+
"0": {
|
5 |
+
"content": "<|endoftext|>",
|
6 |
+
"lstrip": false,
|
7 |
+
"normalized": false,
|
8 |
+
"rstrip": false,
|
9 |
+
"single_word": false,
|
10 |
+
"special": true
|
11 |
+
},
|
12 |
+
"1": {
|
13 |
+
"content": "<fim_prefix>",
|
14 |
+
"lstrip": false,
|
15 |
+
"normalized": false,
|
16 |
+
"rstrip": false,
|
17 |
+
"single_word": false,
|
18 |
+
"special": true
|
19 |
+
},
|
20 |
+
"2": {
|
21 |
+
"content": "<fim_middle>",
|
22 |
+
"lstrip": false,
|
23 |
+
"normalized": false,
|
24 |
+
"rstrip": false,
|
25 |
+
"single_word": false,
|
26 |
+
"special": true
|
27 |
+
},
|
28 |
+
"3": {
|
29 |
+
"content": "<fim_suffix>",
|
30 |
+
"lstrip": false,
|
31 |
+
"normalized": false,
|
32 |
+
"rstrip": false,
|
33 |
+
"single_word": false,
|
34 |
+
"special": true
|
35 |
+
},
|
36 |
+
"4": {
|
37 |
+
"content": "<fim_pad>",
|
38 |
+
"lstrip": false,
|
39 |
+
"normalized": false,
|
40 |
+
"rstrip": false,
|
41 |
+
"single_word": false,
|
42 |
+
"special": true
|
43 |
+
},
|
44 |
+
"5": {
|
45 |
+
"content": "<repo_name>",
|
46 |
+
"lstrip": false,
|
47 |
+
"normalized": false,
|
48 |
+
"rstrip": false,
|
49 |
+
"single_word": false,
|
50 |
+
"special": true
|
51 |
+
},
|
52 |
+
"6": {
|
53 |
+
"content": "<file_sep>",
|
54 |
+
"lstrip": false,
|
55 |
+
"normalized": false,
|
56 |
+
"rstrip": false,
|
57 |
+
"single_word": false,
|
58 |
+
"special": true
|
59 |
+
},
|
60 |
+
"7": {
|
61 |
+
"content": "<issue_start>",
|
62 |
+
"lstrip": false,
|
63 |
+
"normalized": false,
|
64 |
+
"rstrip": false,
|
65 |
+
"single_word": false,
|
66 |
+
"special": true
|
67 |
+
},
|
68 |
+
"8": {
|
69 |
+
"content": "<issue_comment>",
|
70 |
+
"lstrip": false,
|
71 |
+
"normalized": false,
|
72 |
+
"rstrip": false,
|
73 |
+
"single_word": false,
|
74 |
+
"special": true
|
75 |
+
},
|
76 |
+
"9": {
|
77 |
+
"content": "<issue_closed>",
|
78 |
+
"lstrip": false,
|
79 |
+
"normalized": false,
|
80 |
+
"rstrip": false,
|
81 |
+
"single_word": false,
|
82 |
+
"special": true
|
83 |
+
},
|
84 |
+
"10": {
|
85 |
+
"content": "<jupyter_start>",
|
86 |
+
"lstrip": false,
|
87 |
+
"normalized": false,
|
88 |
+
"rstrip": false,
|
89 |
+
"single_word": false,
|
90 |
+
"special": true
|
91 |
+
},
|
92 |
+
"11": {
|
93 |
+
"content": "<jupyter_text>",
|
94 |
+
"lstrip": false,
|
95 |
+
"normalized": false,
|
96 |
+
"rstrip": false,
|
97 |
+
"single_word": false,
|
98 |
+
"special": true
|
99 |
+
},
|
100 |
+
"12": {
|
101 |
+
"content": "<jupyter_code>",
|
102 |
+
"lstrip": false,
|
103 |
+
"normalized": false,
|
104 |
+
"rstrip": false,
|
105 |
+
"single_word": false,
|
106 |
+
"special": true
|
107 |
+
},
|
108 |
+
"13": {
|
109 |
+
"content": "<jupyter_output>",
|
110 |
+
"lstrip": false,
|
111 |
+
"normalized": false,
|
112 |
+
"rstrip": false,
|
113 |
+
"single_word": false,
|
114 |
+
"special": true
|
115 |
+
},
|
116 |
+
"14": {
|
117 |
+
"content": "<jupyter_script>",
|
118 |
+
"lstrip": false,
|
119 |
+
"normalized": false,
|
120 |
+
"rstrip": false,
|
121 |
+
"single_word": false,
|
122 |
+
"special": true
|
123 |
+
},
|
124 |
+
"15": {
|
125 |
+
"content": "<empty_output>",
|
126 |
+
"lstrip": false,
|
127 |
+
"normalized": false,
|
128 |
+
"rstrip": false,
|
129 |
+
"single_word": false,
|
130 |
+
"special": true
|
131 |
+
},
|
132 |
+
"16": {
|
133 |
+
"content": "<code_to_intermediate>",
|
134 |
+
"lstrip": false,
|
135 |
+
"normalized": false,
|
136 |
+
"rstrip": false,
|
137 |
+
"single_word": false,
|
138 |
+
"special": true
|
139 |
+
},
|
140 |
+
"17": {
|
141 |
+
"content": "<intermediate_to_code>",
|
142 |
+
"lstrip": false,
|
143 |
+
"normalized": false,
|
144 |
+
"rstrip": false,
|
145 |
+
"single_word": false,
|
146 |
+
"special": true
|
147 |
+
},
|
148 |
+
"18": {
|
149 |
+
"content": "<pr>",
|
150 |
+
"lstrip": false,
|
151 |
+
"normalized": false,
|
152 |
+
"rstrip": false,
|
153 |
+
"single_word": false,
|
154 |
+
"special": true
|
155 |
+
},
|
156 |
+
"19": {
|
157 |
+
"content": "<pr_status>",
|
158 |
+
"lstrip": false,
|
159 |
+
"normalized": false,
|
160 |
+
"rstrip": false,
|
161 |
+
"single_word": false,
|
162 |
+
"special": true
|
163 |
+
},
|
164 |
+
"20": {
|
165 |
+
"content": "<pr_is_merged>",
|
166 |
+
"lstrip": false,
|
167 |
+
"normalized": false,
|
168 |
+
"rstrip": false,
|
169 |
+
"single_word": false,
|
170 |
+
"special": true
|
171 |
+
},
|
172 |
+
"21": {
|
173 |
+
"content": "<pr_base>",
|
174 |
+
"lstrip": false,
|
175 |
+
"normalized": false,
|
176 |
+
"rstrip": false,
|
177 |
+
"single_word": false,
|
178 |
+
"special": true
|
179 |
+
},
|
180 |
+
"22": {
|
181 |
+
"content": "<pr_file>",
|
182 |
+
"lstrip": false,
|
183 |
+
"normalized": false,
|
184 |
+
"rstrip": false,
|
185 |
+
"single_word": false,
|
186 |
+
"special": true
|
187 |
+
},
|
188 |
+
"23": {
|
189 |
+
"content": "<pr_base_code>",
|
190 |
+
"lstrip": false,
|
191 |
+
"normalized": false,
|
192 |
+
"rstrip": false,
|
193 |
+
"single_word": false,
|
194 |
+
"special": true
|
195 |
+
},
|
196 |
+
"24": {
|
197 |
+
"content": "<pr_diff>",
|
198 |
+
"lstrip": false,
|
199 |
+
"normalized": false,
|
200 |
+
"rstrip": false,
|
201 |
+
"single_word": false,
|
202 |
+
"special": true
|
203 |
+
},
|
204 |
+
"25": {
|
205 |
+
"content": "<pr_diff_hunk>",
|
206 |
+
"lstrip": false,
|
207 |
+
"normalized": false,
|
208 |
+
"rstrip": false,
|
209 |
+
"single_word": false,
|
210 |
+
"special": true
|
211 |
+
},
|
212 |
+
"26": {
|
213 |
+
"content": "<pr_comment>",
|
214 |
+
"lstrip": false,
|
215 |
+
"normalized": false,
|
216 |
+
"rstrip": false,
|
217 |
+
"single_word": false,
|
218 |
+
"special": true
|
219 |
+
},
|
220 |
+
"27": {
|
221 |
+
"content": "<pr_event_id>",
|
222 |
+
"lstrip": false,
|
223 |
+
"normalized": false,
|
224 |
+
"rstrip": false,
|
225 |
+
"single_word": false,
|
226 |
+
"special": true
|
227 |
+
},
|
228 |
+
"28": {
|
229 |
+
"content": "<pr_review>",
|
230 |
+
"lstrip": false,
|
231 |
+
"normalized": false,
|
232 |
+
"rstrip": false,
|
233 |
+
"single_word": false,
|
234 |
+
"special": true
|
235 |
+
},
|
236 |
+
"29": {
|
237 |
+
"content": "<pr_review_state>",
|
238 |
+
"lstrip": false,
|
239 |
+
"normalized": false,
|
240 |
+
"rstrip": false,
|
241 |
+
"single_word": false,
|
242 |
+
"special": true
|
243 |
+
},
|
244 |
+
"30": {
|
245 |
+
"content": "<pr_review_comment>",
|
246 |
+
"lstrip": false,
|
247 |
+
"normalized": false,
|
248 |
+
"rstrip": false,
|
249 |
+
"single_word": false,
|
250 |
+
"special": true
|
251 |
+
},
|
252 |
+
"31": {
|
253 |
+
"content": "<pr_in_reply_to_review_id>",
|
254 |
+
"lstrip": false,
|
255 |
+
"normalized": false,
|
256 |
+
"rstrip": false,
|
257 |
+
"single_word": false,
|
258 |
+
"special": true
|
259 |
+
},
|
260 |
+
"32": {
|
261 |
+
"content": "<pr_in_reply_to_comment_id>",
|
262 |
+
"lstrip": false,
|
263 |
+
"normalized": false,
|
264 |
+
"rstrip": false,
|
265 |
+
"single_word": false,
|
266 |
+
"special": true
|
267 |
+
},
|
268 |
+
"33": {
|
269 |
+
"content": "<pr_diff_hunk_comment_line>",
|
270 |
+
"lstrip": false,
|
271 |
+
"normalized": false,
|
272 |
+
"rstrip": false,
|
273 |
+
"single_word": false,
|
274 |
+
"special": true
|
275 |
+
},
|
276 |
+
"34": {
|
277 |
+
"content": "<NAME>",
|
278 |
+
"lstrip": false,
|
279 |
+
"normalized": false,
|
280 |
+
"rstrip": false,
|
281 |
+
"single_word": false,
|
282 |
+
"special": true
|
283 |
+
},
|
284 |
+
"35": {
|
285 |
+
"content": "<EMAIL>",
|
286 |
+
"lstrip": false,
|
287 |
+
"normalized": false,
|
288 |
+
"rstrip": false,
|
289 |
+
"single_word": false,
|
290 |
+
"special": true
|
291 |
+
},
|
292 |
+
"36": {
|
293 |
+
"content": "<KEY>",
|
294 |
+
"lstrip": false,
|
295 |
+
"normalized": false,
|
296 |
+
"rstrip": false,
|
297 |
+
"single_word": false,
|
298 |
+
"special": true
|
299 |
+
},
|
300 |
+
"37": {
|
301 |
+
"content": "<PASSWORD>",
|
302 |
+
"lstrip": false,
|
303 |
+
"normalized": false,
|
304 |
+
"rstrip": false,
|
305 |
+
"single_word": false,
|
306 |
+
"special": true
|
307 |
+
}
|
308 |
+
},
|
309 |
+
"additional_special_tokens": [
|
310 |
+
"<|endoftext|>",
|
311 |
+
"<fim_prefix>",
|
312 |
+
"<fim_middle>",
|
313 |
+
"<fim_suffix>",
|
314 |
+
"<fim_pad>",
|
315 |
+
"<repo_name>",
|
316 |
+
"<file_sep>",
|
317 |
+
"<issue_start>",
|
318 |
+
"<issue_comment>",
|
319 |
+
"<issue_closed>",
|
320 |
+
"<jupyter_start>",
|
321 |
+
"<jupyter_text>",
|
322 |
+
"<jupyter_code>",
|
323 |
+
"<jupyter_output>",
|
324 |
+
"<jupyter_script>",
|
325 |
+
"<empty_output>",
|
326 |
+
"<code_to_intermediate>",
|
327 |
+
"<intermediate_to_code>",
|
328 |
+
"<pr>",
|
329 |
+
"<pr_status>",
|
330 |
+
"<pr_is_merged>",
|
331 |
+
"<pr_base>",
|
332 |
+
"<pr_file>",
|
333 |
+
"<pr_base_code>",
|
334 |
+
"<pr_diff>",
|
335 |
+
"<pr_diff_hunk>",
|
336 |
+
"<pr_comment>",
|
337 |
+
"<pr_event_id>",
|
338 |
+
"<pr_review>",
|
339 |
+
"<pr_review_state>",
|
340 |
+
"<pr_review_comment>",
|
341 |
+
"<pr_in_reply_to_review_id>",
|
342 |
+
"<pr_in_reply_to_comment_id>",
|
343 |
+
"<pr_diff_hunk_comment_line>",
|
344 |
+
"<NAME>",
|
345 |
+
"<EMAIL>",
|
346 |
+
"<KEY>",
|
347 |
+
"<PASSWORD>"
|
348 |
+
],
|
349 |
+
"bos_token": "<|endoftext|>",
|
350 |
+
"chat_template": "{{bos_token}}{{'You are an exceptionally intelligent coding assistant that consistently delivers accurate and reliable responses to user instructions.\n\n'}}\n{%- for message in messages %}\n {%- if message['role'] == 'system' %}\n {{ raise_exception('System messages are not allowed in this template.') }}\n {%- else %}\n {%- if message['role'] == 'user' %}\n{{'### Instruction\n' + message['content'] + '\n\n'}}\n {%- else %}\n{{'### Response\n' + message['content'] + eos_token + '\n\n'}}\n {%- endif %}\n {%- endif %}\n{%- endfor %}\n{{'### Response\n'}}",
|
351 |
+
"clean_up_tokenization_spaces": true,
|
352 |
+
"eos_token": "<|endoftext|>",
|
353 |
+
"model_max_length": 1000000000000000019884624838656,
|
354 |
+
"tokenizer_class": "GPT2Tokenizer",
|
355 |
+
"unk_token": "<|endoftext|>",
|
356 |
+
"vocab_size": 49152
|
357 |
+
}
|
trainer_state.json
ADDED
@@ -0,0 +1,2382 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"best_metric": null,
|
3 |
+
"best_model_checkpoint": null,
|
4 |
+
"epoch": 3.9616280446883265,
|
5 |
+
"eval_steps": 500,
|
6 |
+
"global_step": 392,
|
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.01,
|
13 |
+
"learning_rate": 5.000000000000001e-07,
|
14 |
+
"loss": 0.5718,
|
15 |
+
"step": 1
|
16 |
+
},
|
17 |
+
{
|
18 |
+
"epoch": 0.02,
|
19 |
+
"learning_rate": 1.0000000000000002e-06,
|
20 |
+
"loss": 0.5621,
|
21 |
+
"step": 2
|
22 |
+
},
|
23 |
+
{
|
24 |
+
"epoch": 0.03,
|
25 |
+
"learning_rate": 1.5e-06,
|
26 |
+
"loss": 0.5689,
|
27 |
+
"step": 3
|
28 |
+
},
|
29 |
+
{
|
30 |
+
"epoch": 0.04,
|
31 |
+
"learning_rate": 2.0000000000000003e-06,
|
32 |
+
"loss": 0.5552,
|
33 |
+
"step": 4
|
34 |
+
},
|
35 |
+
{
|
36 |
+
"epoch": 0.05,
|
37 |
+
"learning_rate": 2.5e-06,
|
38 |
+
"loss": 0.5456,
|
39 |
+
"step": 5
|
40 |
+
},
|
41 |
+
{
|
42 |
+
"epoch": 0.06,
|
43 |
+
"learning_rate": 3e-06,
|
44 |
+
"loss": 0.5306,
|
45 |
+
"step": 6
|
46 |
+
},
|
47 |
+
{
|
48 |
+
"epoch": 0.07,
|
49 |
+
"learning_rate": 3.5e-06,
|
50 |
+
"loss": 0.5115,
|
51 |
+
"step": 7
|
52 |
+
},
|
53 |
+
{
|
54 |
+
"epoch": 0.08,
|
55 |
+
"learning_rate": 4.000000000000001e-06,
|
56 |
+
"loss": 0.4996,
|
57 |
+
"step": 8
|
58 |
+
},
|
59 |
+
{
|
60 |
+
"epoch": 0.09,
|
61 |
+
"learning_rate": 4.5e-06,
|
62 |
+
"loss": 0.4974,
|
63 |
+
"step": 9
|
64 |
+
},
|
65 |
+
{
|
66 |
+
"epoch": 0.1,
|
67 |
+
"learning_rate": 5e-06,
|
68 |
+
"loss": 0.4635,
|
69 |
+
"step": 10
|
70 |
+
},
|
71 |
+
{
|
72 |
+
"epoch": 0.11,
|
73 |
+
"learning_rate": 5.500000000000001e-06,
|
74 |
+
"loss": 0.4578,
|
75 |
+
"step": 11
|
76 |
+
},
|
77 |
+
{
|
78 |
+
"epoch": 0.12,
|
79 |
+
"learning_rate": 6e-06,
|
80 |
+
"loss": 0.4462,
|
81 |
+
"step": 12
|
82 |
+
},
|
83 |
+
{
|
84 |
+
"epoch": 0.13,
|
85 |
+
"learning_rate": 6.5000000000000004e-06,
|
86 |
+
"loss": 0.4375,
|
87 |
+
"step": 13
|
88 |
+
},
|
89 |
+
{
|
90 |
+
"epoch": 0.14,
|
91 |
+
"learning_rate": 7e-06,
|
92 |
+
"loss": 0.4371,
|
93 |
+
"step": 14
|
94 |
+
},
|
95 |
+
{
|
96 |
+
"epoch": 0.15,
|
97 |
+
"learning_rate": 7.500000000000001e-06,
|
98 |
+
"loss": 0.4315,
|
99 |
+
"step": 15
|
100 |
+
},
|
101 |
+
{
|
102 |
+
"epoch": 0.16,
|
103 |
+
"learning_rate": 8.000000000000001e-06,
|
104 |
+
"loss": 0.4279,
|
105 |
+
"step": 16
|
106 |
+
},
|
107 |
+
{
|
108 |
+
"epoch": 0.17,
|
109 |
+
"learning_rate": 8.5e-06,
|
110 |
+
"loss": 0.4321,
|
111 |
+
"step": 17
|
112 |
+
},
|
113 |
+
{
|
114 |
+
"epoch": 0.18,
|
115 |
+
"learning_rate": 9e-06,
|
116 |
+
"loss": 0.4356,
|
117 |
+
"step": 18
|
118 |
+
},
|
119 |
+
{
|
120 |
+
"epoch": 0.19,
|
121 |
+
"learning_rate": 9.5e-06,
|
122 |
+
"loss": 0.5092,
|
123 |
+
"step": 19
|
124 |
+
},
|
125 |
+
{
|
126 |
+
"epoch": 0.2,
|
127 |
+
"learning_rate": 1e-05,
|
128 |
+
"loss": 0.43,
|
129 |
+
"step": 20
|
130 |
+
},
|
131 |
+
{
|
132 |
+
"epoch": 0.21,
|
133 |
+
"learning_rate": 9.973118279569894e-06,
|
134 |
+
"loss": 0.4254,
|
135 |
+
"step": 21
|
136 |
+
},
|
137 |
+
{
|
138 |
+
"epoch": 0.22,
|
139 |
+
"learning_rate": 9.946236559139786e-06,
|
140 |
+
"loss": 0.4319,
|
141 |
+
"step": 22
|
142 |
+
},
|
143 |
+
{
|
144 |
+
"epoch": 0.23,
|
145 |
+
"learning_rate": 9.919354838709679e-06,
|
146 |
+
"loss": 0.4532,
|
147 |
+
"step": 23
|
148 |
+
},
|
149 |
+
{
|
150 |
+
"epoch": 0.24,
|
151 |
+
"learning_rate": 9.89247311827957e-06,
|
152 |
+
"loss": 0.4783,
|
153 |
+
"step": 24
|
154 |
+
},
|
155 |
+
{
|
156 |
+
"epoch": 0.25,
|
157 |
+
"learning_rate": 9.865591397849464e-06,
|
158 |
+
"loss": 0.4254,
|
159 |
+
"step": 25
|
160 |
+
},
|
161 |
+
{
|
162 |
+
"epoch": 0.26,
|
163 |
+
"learning_rate": 9.838709677419356e-06,
|
164 |
+
"loss": 0.4172,
|
165 |
+
"step": 26
|
166 |
+
},
|
167 |
+
{
|
168 |
+
"epoch": 0.27,
|
169 |
+
"learning_rate": 9.811827956989249e-06,
|
170 |
+
"loss": 0.405,
|
171 |
+
"step": 27
|
172 |
+
},
|
173 |
+
{
|
174 |
+
"epoch": 0.28,
|
175 |
+
"learning_rate": 9.78494623655914e-06,
|
176 |
+
"loss": 0.3986,
|
177 |
+
"step": 28
|
178 |
+
},
|
179 |
+
{
|
180 |
+
"epoch": 0.29,
|
181 |
+
"learning_rate": 9.758064516129034e-06,
|
182 |
+
"loss": 0.3972,
|
183 |
+
"step": 29
|
184 |
+
},
|
185 |
+
{
|
186 |
+
"epoch": 0.3,
|
187 |
+
"learning_rate": 9.731182795698925e-06,
|
188 |
+
"loss": 0.3998,
|
189 |
+
"step": 30
|
190 |
+
},
|
191 |
+
{
|
192 |
+
"epoch": 0.31,
|
193 |
+
"learning_rate": 9.704301075268819e-06,
|
194 |
+
"loss": 0.4102,
|
195 |
+
"step": 31
|
196 |
+
},
|
197 |
+
{
|
198 |
+
"epoch": 0.32,
|
199 |
+
"learning_rate": 9.67741935483871e-06,
|
200 |
+
"loss": 0.3963,
|
201 |
+
"step": 32
|
202 |
+
},
|
203 |
+
{
|
204 |
+
"epoch": 0.33,
|
205 |
+
"learning_rate": 9.650537634408604e-06,
|
206 |
+
"loss": 0.4039,
|
207 |
+
"step": 33
|
208 |
+
},
|
209 |
+
{
|
210 |
+
"epoch": 0.34,
|
211 |
+
"learning_rate": 9.623655913978495e-06,
|
212 |
+
"loss": 0.4044,
|
213 |
+
"step": 34
|
214 |
+
},
|
215 |
+
{
|
216 |
+
"epoch": 0.35,
|
217 |
+
"learning_rate": 9.596774193548389e-06,
|
218 |
+
"loss": 0.4045,
|
219 |
+
"step": 35
|
220 |
+
},
|
221 |
+
{
|
222 |
+
"epoch": 0.36,
|
223 |
+
"learning_rate": 9.56989247311828e-06,
|
224 |
+
"loss": 0.405,
|
225 |
+
"step": 36
|
226 |
+
},
|
227 |
+
{
|
228 |
+
"epoch": 0.37,
|
229 |
+
"learning_rate": 9.543010752688174e-06,
|
230 |
+
"loss": 0.4071,
|
231 |
+
"step": 37
|
232 |
+
},
|
233 |
+
{
|
234 |
+
"epoch": 0.38,
|
235 |
+
"learning_rate": 9.516129032258065e-06,
|
236 |
+
"loss": 0.3956,
|
237 |
+
"step": 38
|
238 |
+
},
|
239 |
+
{
|
240 |
+
"epoch": 0.39,
|
241 |
+
"learning_rate": 9.489247311827959e-06,
|
242 |
+
"loss": 0.398,
|
243 |
+
"step": 39
|
244 |
+
},
|
245 |
+
{
|
246 |
+
"epoch": 0.4,
|
247 |
+
"learning_rate": 9.46236559139785e-06,
|
248 |
+
"loss": 0.3915,
|
249 |
+
"step": 40
|
250 |
+
},
|
251 |
+
{
|
252 |
+
"epoch": 0.41,
|
253 |
+
"learning_rate": 9.435483870967743e-06,
|
254 |
+
"loss": 0.3963,
|
255 |
+
"step": 41
|
256 |
+
},
|
257 |
+
{
|
258 |
+
"epoch": 0.42,
|
259 |
+
"learning_rate": 9.408602150537635e-06,
|
260 |
+
"loss": 0.3887,
|
261 |
+
"step": 42
|
262 |
+
},
|
263 |
+
{
|
264 |
+
"epoch": 0.43,
|
265 |
+
"learning_rate": 9.381720430107528e-06,
|
266 |
+
"loss": 0.3952,
|
267 |
+
"step": 43
|
268 |
+
},
|
269 |
+
{
|
270 |
+
"epoch": 0.44,
|
271 |
+
"learning_rate": 9.35483870967742e-06,
|
272 |
+
"loss": 0.4082,
|
273 |
+
"step": 44
|
274 |
+
},
|
275 |
+
{
|
276 |
+
"epoch": 0.45,
|
277 |
+
"learning_rate": 9.327956989247312e-06,
|
278 |
+
"loss": 0.3968,
|
279 |
+
"step": 45
|
280 |
+
},
|
281 |
+
{
|
282 |
+
"epoch": 0.46,
|
283 |
+
"learning_rate": 9.301075268817205e-06,
|
284 |
+
"loss": 0.3943,
|
285 |
+
"step": 46
|
286 |
+
},
|
287 |
+
{
|
288 |
+
"epoch": 0.47,
|
289 |
+
"learning_rate": 9.274193548387097e-06,
|
290 |
+
"loss": 0.4045,
|
291 |
+
"step": 47
|
292 |
+
},
|
293 |
+
{
|
294 |
+
"epoch": 0.49,
|
295 |
+
"learning_rate": 9.24731182795699e-06,
|
296 |
+
"loss": 0.4169,
|
297 |
+
"step": 48
|
298 |
+
},
|
299 |
+
{
|
300 |
+
"epoch": 0.5,
|
301 |
+
"learning_rate": 9.220430107526881e-06,
|
302 |
+
"loss": 0.4458,
|
303 |
+
"step": 49
|
304 |
+
},
|
305 |
+
{
|
306 |
+
"epoch": 0.51,
|
307 |
+
"learning_rate": 9.193548387096775e-06,
|
308 |
+
"loss": 0.4166,
|
309 |
+
"step": 50
|
310 |
+
},
|
311 |
+
{
|
312 |
+
"epoch": 0.52,
|
313 |
+
"learning_rate": 9.166666666666666e-06,
|
314 |
+
"loss": 0.4306,
|
315 |
+
"step": 51
|
316 |
+
},
|
317 |
+
{
|
318 |
+
"epoch": 0.53,
|
319 |
+
"learning_rate": 9.13978494623656e-06,
|
320 |
+
"loss": 0.4071,
|
321 |
+
"step": 52
|
322 |
+
},
|
323 |
+
{
|
324 |
+
"epoch": 0.54,
|
325 |
+
"learning_rate": 9.112903225806451e-06,
|
326 |
+
"loss": 0.4128,
|
327 |
+
"step": 53
|
328 |
+
},
|
329 |
+
{
|
330 |
+
"epoch": 0.55,
|
331 |
+
"learning_rate": 9.086021505376345e-06,
|
332 |
+
"loss": 0.3954,
|
333 |
+
"step": 54
|
334 |
+
},
|
335 |
+
{
|
336 |
+
"epoch": 0.56,
|
337 |
+
"learning_rate": 9.059139784946236e-06,
|
338 |
+
"loss": 0.3913,
|
339 |
+
"step": 55
|
340 |
+
},
|
341 |
+
{
|
342 |
+
"epoch": 0.57,
|
343 |
+
"learning_rate": 9.03225806451613e-06,
|
344 |
+
"loss": 0.4003,
|
345 |
+
"step": 56
|
346 |
+
},
|
347 |
+
{
|
348 |
+
"epoch": 0.58,
|
349 |
+
"learning_rate": 9.005376344086021e-06,
|
350 |
+
"loss": 0.4044,
|
351 |
+
"step": 57
|
352 |
+
},
|
353 |
+
{
|
354 |
+
"epoch": 0.59,
|
355 |
+
"learning_rate": 8.978494623655915e-06,
|
356 |
+
"loss": 0.3938,
|
357 |
+
"step": 58
|
358 |
+
},
|
359 |
+
{
|
360 |
+
"epoch": 0.6,
|
361 |
+
"learning_rate": 8.951612903225806e-06,
|
362 |
+
"loss": 0.3905,
|
363 |
+
"step": 59
|
364 |
+
},
|
365 |
+
{
|
366 |
+
"epoch": 0.61,
|
367 |
+
"learning_rate": 8.9247311827957e-06,
|
368 |
+
"loss": 0.3962,
|
369 |
+
"step": 60
|
370 |
+
},
|
371 |
+
{
|
372 |
+
"epoch": 0.62,
|
373 |
+
"learning_rate": 8.897849462365593e-06,
|
374 |
+
"loss": 0.3853,
|
375 |
+
"step": 61
|
376 |
+
},
|
377 |
+
{
|
378 |
+
"epoch": 0.63,
|
379 |
+
"learning_rate": 8.870967741935484e-06,
|
380 |
+
"loss": 0.3853,
|
381 |
+
"step": 62
|
382 |
+
},
|
383 |
+
{
|
384 |
+
"epoch": 0.64,
|
385 |
+
"learning_rate": 8.844086021505378e-06,
|
386 |
+
"loss": 0.3949,
|
387 |
+
"step": 63
|
388 |
+
},
|
389 |
+
{
|
390 |
+
"epoch": 0.65,
|
391 |
+
"learning_rate": 8.81720430107527e-06,
|
392 |
+
"loss": 0.3927,
|
393 |
+
"step": 64
|
394 |
+
},
|
395 |
+
{
|
396 |
+
"epoch": 0.66,
|
397 |
+
"learning_rate": 8.790322580645163e-06,
|
398 |
+
"loss": 0.3874,
|
399 |
+
"step": 65
|
400 |
+
},
|
401 |
+
{
|
402 |
+
"epoch": 0.67,
|
403 |
+
"learning_rate": 8.763440860215054e-06,
|
404 |
+
"loss": 0.3953,
|
405 |
+
"step": 66
|
406 |
+
},
|
407 |
+
{
|
408 |
+
"epoch": 0.68,
|
409 |
+
"learning_rate": 8.736559139784948e-06,
|
410 |
+
"loss": 0.388,
|
411 |
+
"step": 67
|
412 |
+
},
|
413 |
+
{
|
414 |
+
"epoch": 0.69,
|
415 |
+
"learning_rate": 8.70967741935484e-06,
|
416 |
+
"loss": 0.385,
|
417 |
+
"step": 68
|
418 |
+
},
|
419 |
+
{
|
420 |
+
"epoch": 0.7,
|
421 |
+
"learning_rate": 8.682795698924733e-06,
|
422 |
+
"loss": 0.389,
|
423 |
+
"step": 69
|
424 |
+
},
|
425 |
+
{
|
426 |
+
"epoch": 0.71,
|
427 |
+
"learning_rate": 8.655913978494624e-06,
|
428 |
+
"loss": 0.3834,
|
429 |
+
"step": 70
|
430 |
+
},
|
431 |
+
{
|
432 |
+
"epoch": 0.72,
|
433 |
+
"learning_rate": 8.629032258064517e-06,
|
434 |
+
"loss": 0.3893,
|
435 |
+
"step": 71
|
436 |
+
},
|
437 |
+
{
|
438 |
+
"epoch": 0.73,
|
439 |
+
"learning_rate": 8.602150537634409e-06,
|
440 |
+
"loss": 0.3874,
|
441 |
+
"step": 72
|
442 |
+
},
|
443 |
+
{
|
444 |
+
"epoch": 0.74,
|
445 |
+
"learning_rate": 8.575268817204302e-06,
|
446 |
+
"loss": 0.3912,
|
447 |
+
"step": 73
|
448 |
+
},
|
449 |
+
{
|
450 |
+
"epoch": 0.75,
|
451 |
+
"learning_rate": 8.548387096774194e-06,
|
452 |
+
"loss": 0.3914,
|
453 |
+
"step": 74
|
454 |
+
},
|
455 |
+
{
|
456 |
+
"epoch": 0.76,
|
457 |
+
"learning_rate": 8.521505376344087e-06,
|
458 |
+
"loss": 0.3942,
|
459 |
+
"step": 75
|
460 |
+
},
|
461 |
+
{
|
462 |
+
"epoch": 0.77,
|
463 |
+
"learning_rate": 8.494623655913979e-06,
|
464 |
+
"loss": 0.3997,
|
465 |
+
"step": 76
|
466 |
+
},
|
467 |
+
{
|
468 |
+
"epoch": 0.78,
|
469 |
+
"learning_rate": 8.467741935483872e-06,
|
470 |
+
"loss": 0.3965,
|
471 |
+
"step": 77
|
472 |
+
},
|
473 |
+
{
|
474 |
+
"epoch": 0.79,
|
475 |
+
"learning_rate": 8.440860215053764e-06,
|
476 |
+
"loss": 0.4026,
|
477 |
+
"step": 78
|
478 |
+
},
|
479 |
+
{
|
480 |
+
"epoch": 0.8,
|
481 |
+
"learning_rate": 8.413978494623657e-06,
|
482 |
+
"loss": 0.398,
|
483 |
+
"step": 79
|
484 |
+
},
|
485 |
+
{
|
486 |
+
"epoch": 0.81,
|
487 |
+
"learning_rate": 8.387096774193549e-06,
|
488 |
+
"loss": 0.3973,
|
489 |
+
"step": 80
|
490 |
+
},
|
491 |
+
{
|
492 |
+
"epoch": 0.82,
|
493 |
+
"learning_rate": 8.360215053763442e-06,
|
494 |
+
"loss": 0.3932,
|
495 |
+
"step": 81
|
496 |
+
},
|
497 |
+
{
|
498 |
+
"epoch": 0.83,
|
499 |
+
"learning_rate": 8.333333333333334e-06,
|
500 |
+
"loss": 0.3852,
|
501 |
+
"step": 82
|
502 |
+
},
|
503 |
+
{
|
504 |
+
"epoch": 0.84,
|
505 |
+
"learning_rate": 8.306451612903227e-06,
|
506 |
+
"loss": 0.3776,
|
507 |
+
"step": 83
|
508 |
+
},
|
509 |
+
{
|
510 |
+
"epoch": 0.85,
|
511 |
+
"learning_rate": 8.279569892473119e-06,
|
512 |
+
"loss": 0.3829,
|
513 |
+
"step": 84
|
514 |
+
},
|
515 |
+
{
|
516 |
+
"epoch": 0.86,
|
517 |
+
"learning_rate": 8.252688172043012e-06,
|
518 |
+
"loss": 0.3852,
|
519 |
+
"step": 85
|
520 |
+
},
|
521 |
+
{
|
522 |
+
"epoch": 0.87,
|
523 |
+
"learning_rate": 8.225806451612904e-06,
|
524 |
+
"loss": 0.3923,
|
525 |
+
"step": 86
|
526 |
+
},
|
527 |
+
{
|
528 |
+
"epoch": 0.88,
|
529 |
+
"learning_rate": 8.198924731182797e-06,
|
530 |
+
"loss": 0.3862,
|
531 |
+
"step": 87
|
532 |
+
},
|
533 |
+
{
|
534 |
+
"epoch": 0.89,
|
535 |
+
"learning_rate": 8.172043010752689e-06,
|
536 |
+
"loss": 0.3785,
|
537 |
+
"step": 88
|
538 |
+
},
|
539 |
+
{
|
540 |
+
"epoch": 0.9,
|
541 |
+
"learning_rate": 8.145161290322582e-06,
|
542 |
+
"loss": 0.3785,
|
543 |
+
"step": 89
|
544 |
+
},
|
545 |
+
{
|
546 |
+
"epoch": 0.91,
|
547 |
+
"learning_rate": 8.118279569892473e-06,
|
548 |
+
"loss": 0.3832,
|
549 |
+
"step": 90
|
550 |
+
},
|
551 |
+
{
|
552 |
+
"epoch": 0.92,
|
553 |
+
"learning_rate": 8.091397849462365e-06,
|
554 |
+
"loss": 0.3914,
|
555 |
+
"step": 91
|
556 |
+
},
|
557 |
+
{
|
558 |
+
"epoch": 0.93,
|
559 |
+
"learning_rate": 8.064516129032258e-06,
|
560 |
+
"loss": 0.3785,
|
561 |
+
"step": 92
|
562 |
+
},
|
563 |
+
{
|
564 |
+
"epoch": 0.94,
|
565 |
+
"learning_rate": 8.03763440860215e-06,
|
566 |
+
"loss": 0.3871,
|
567 |
+
"step": 93
|
568 |
+
},
|
569 |
+
{
|
570 |
+
"epoch": 0.95,
|
571 |
+
"learning_rate": 8.010752688172043e-06,
|
572 |
+
"loss": 0.3801,
|
573 |
+
"step": 94
|
574 |
+
},
|
575 |
+
{
|
576 |
+
"epoch": 0.96,
|
577 |
+
"learning_rate": 7.983870967741935e-06,
|
578 |
+
"loss": 0.3721,
|
579 |
+
"step": 95
|
580 |
+
},
|
581 |
+
{
|
582 |
+
"epoch": 0.97,
|
583 |
+
"learning_rate": 7.956989247311828e-06,
|
584 |
+
"loss": 0.382,
|
585 |
+
"step": 96
|
586 |
+
},
|
587 |
+
{
|
588 |
+
"epoch": 0.98,
|
589 |
+
"learning_rate": 7.93010752688172e-06,
|
590 |
+
"loss": 0.3798,
|
591 |
+
"step": 97
|
592 |
+
},
|
593 |
+
{
|
594 |
+
"epoch": 0.99,
|
595 |
+
"learning_rate": 7.903225806451613e-06,
|
596 |
+
"loss": 0.3762,
|
597 |
+
"step": 98
|
598 |
+
},
|
599 |
+
{
|
600 |
+
"epoch": 1.0,
|
601 |
+
"learning_rate": 7.876344086021507e-06,
|
602 |
+
"loss": 0.3864,
|
603 |
+
"step": 99
|
604 |
+
},
|
605 |
+
{
|
606 |
+
"epoch": 1.01,
|
607 |
+
"learning_rate": 7.849462365591398e-06,
|
608 |
+
"loss": 0.385,
|
609 |
+
"step": 100
|
610 |
+
},
|
611 |
+
{
|
612 |
+
"epoch": 1.02,
|
613 |
+
"learning_rate": 7.822580645161291e-06,
|
614 |
+
"loss": 0.3659,
|
615 |
+
"step": 101
|
616 |
+
},
|
617 |
+
{
|
618 |
+
"epoch": 1.03,
|
619 |
+
"learning_rate": 7.795698924731183e-06,
|
620 |
+
"loss": 0.3664,
|
621 |
+
"step": 102
|
622 |
+
},
|
623 |
+
{
|
624 |
+
"epoch": 1.04,
|
625 |
+
"learning_rate": 7.768817204301076e-06,
|
626 |
+
"loss": 0.3668,
|
627 |
+
"step": 103
|
628 |
+
},
|
629 |
+
{
|
630 |
+
"epoch": 1.05,
|
631 |
+
"learning_rate": 7.741935483870968e-06,
|
632 |
+
"loss": 0.3714,
|
633 |
+
"step": 104
|
634 |
+
},
|
635 |
+
{
|
636 |
+
"epoch": 1.06,
|
637 |
+
"learning_rate": 7.715053763440861e-06,
|
638 |
+
"loss": 0.3766,
|
639 |
+
"step": 105
|
640 |
+
},
|
641 |
+
{
|
642 |
+
"epoch": 1.07,
|
643 |
+
"learning_rate": 7.688172043010753e-06,
|
644 |
+
"loss": 0.3753,
|
645 |
+
"step": 106
|
646 |
+
},
|
647 |
+
{
|
648 |
+
"epoch": 1.08,
|
649 |
+
"learning_rate": 7.661290322580646e-06,
|
650 |
+
"loss": 0.3715,
|
651 |
+
"step": 107
|
652 |
+
},
|
653 |
+
{
|
654 |
+
"epoch": 1.09,
|
655 |
+
"learning_rate": 7.634408602150538e-06,
|
656 |
+
"loss": 0.37,
|
657 |
+
"step": 108
|
658 |
+
},
|
659 |
+
{
|
660 |
+
"epoch": 1.1,
|
661 |
+
"learning_rate": 7.60752688172043e-06,
|
662 |
+
"loss": 0.3753,
|
663 |
+
"step": 109
|
664 |
+
},
|
665 |
+
{
|
666 |
+
"epoch": 1.11,
|
667 |
+
"learning_rate": 7.580645161290323e-06,
|
668 |
+
"loss": 0.374,
|
669 |
+
"step": 110
|
670 |
+
},
|
671 |
+
{
|
672 |
+
"epoch": 1.12,
|
673 |
+
"learning_rate": 7.553763440860215e-06,
|
674 |
+
"loss": 0.3748,
|
675 |
+
"step": 111
|
676 |
+
},
|
677 |
+
{
|
678 |
+
"epoch": 1.13,
|
679 |
+
"learning_rate": 7.526881720430108e-06,
|
680 |
+
"loss": 0.3776,
|
681 |
+
"step": 112
|
682 |
+
},
|
683 |
+
{
|
684 |
+
"epoch": 1.14,
|
685 |
+
"learning_rate": 7.500000000000001e-06,
|
686 |
+
"loss": 0.3957,
|
687 |
+
"step": 113
|
688 |
+
},
|
689 |
+
{
|
690 |
+
"epoch": 1.15,
|
691 |
+
"learning_rate": 7.4731182795698935e-06,
|
692 |
+
"loss": 0.3742,
|
693 |
+
"step": 114
|
694 |
+
},
|
695 |
+
{
|
696 |
+
"epoch": 1.16,
|
697 |
+
"learning_rate": 7.446236559139786e-06,
|
698 |
+
"loss": 0.375,
|
699 |
+
"step": 115
|
700 |
+
},
|
701 |
+
{
|
702 |
+
"epoch": 1.17,
|
703 |
+
"learning_rate": 7.4193548387096784e-06,
|
704 |
+
"loss": 0.3784,
|
705 |
+
"step": 116
|
706 |
+
},
|
707 |
+
{
|
708 |
+
"epoch": 1.18,
|
709 |
+
"learning_rate": 7.392473118279571e-06,
|
710 |
+
"loss": 0.3754,
|
711 |
+
"step": 117
|
712 |
+
},
|
713 |
+
{
|
714 |
+
"epoch": 1.19,
|
715 |
+
"learning_rate": 7.365591397849463e-06,
|
716 |
+
"loss": 0.383,
|
717 |
+
"step": 118
|
718 |
+
},
|
719 |
+
{
|
720 |
+
"epoch": 1.2,
|
721 |
+
"learning_rate": 7.338709677419356e-06,
|
722 |
+
"loss": 0.3761,
|
723 |
+
"step": 119
|
724 |
+
},
|
725 |
+
{
|
726 |
+
"epoch": 1.21,
|
727 |
+
"learning_rate": 7.311827956989248e-06,
|
728 |
+
"loss": 0.3736,
|
729 |
+
"step": 120
|
730 |
+
},
|
731 |
+
{
|
732 |
+
"epoch": 1.22,
|
733 |
+
"learning_rate": 7.284946236559141e-06,
|
734 |
+
"loss": 0.3708,
|
735 |
+
"step": 121
|
736 |
+
},
|
737 |
+
{
|
738 |
+
"epoch": 1.23,
|
739 |
+
"learning_rate": 7.258064516129033e-06,
|
740 |
+
"loss": 0.3734,
|
741 |
+
"step": 122
|
742 |
+
},
|
743 |
+
{
|
744 |
+
"epoch": 1.24,
|
745 |
+
"learning_rate": 7.231182795698926e-06,
|
746 |
+
"loss": 0.3684,
|
747 |
+
"step": 123
|
748 |
+
},
|
749 |
+
{
|
750 |
+
"epoch": 1.25,
|
751 |
+
"learning_rate": 7.204301075268818e-06,
|
752 |
+
"loss": 0.3669,
|
753 |
+
"step": 124
|
754 |
+
},
|
755 |
+
{
|
756 |
+
"epoch": 1.26,
|
757 |
+
"learning_rate": 7.177419354838711e-06,
|
758 |
+
"loss": 0.3764,
|
759 |
+
"step": 125
|
760 |
+
},
|
761 |
+
{
|
762 |
+
"epoch": 1.27,
|
763 |
+
"learning_rate": 7.150537634408603e-06,
|
764 |
+
"loss": 0.358,
|
765 |
+
"step": 126
|
766 |
+
},
|
767 |
+
{
|
768 |
+
"epoch": 1.28,
|
769 |
+
"learning_rate": 7.1236559139784956e-06,
|
770 |
+
"loss": 0.3757,
|
771 |
+
"step": 127
|
772 |
+
},
|
773 |
+
{
|
774 |
+
"epoch": 1.29,
|
775 |
+
"learning_rate": 7.096774193548388e-06,
|
776 |
+
"loss": 0.3713,
|
777 |
+
"step": 128
|
778 |
+
},
|
779 |
+
{
|
780 |
+
"epoch": 1.3,
|
781 |
+
"learning_rate": 7.0698924731182805e-06,
|
782 |
+
"loss": 0.3538,
|
783 |
+
"step": 129
|
784 |
+
},
|
785 |
+
{
|
786 |
+
"epoch": 1.31,
|
787 |
+
"learning_rate": 7.043010752688173e-06,
|
788 |
+
"loss": 0.3789,
|
789 |
+
"step": 130
|
790 |
+
},
|
791 |
+
{
|
792 |
+
"epoch": 1.32,
|
793 |
+
"learning_rate": 7.0161290322580654e-06,
|
794 |
+
"loss": 0.377,
|
795 |
+
"step": 131
|
796 |
+
},
|
797 |
+
{
|
798 |
+
"epoch": 1.33,
|
799 |
+
"learning_rate": 6.989247311827958e-06,
|
800 |
+
"loss": 0.3762,
|
801 |
+
"step": 132
|
802 |
+
},
|
803 |
+
{
|
804 |
+
"epoch": 1.34,
|
805 |
+
"learning_rate": 6.96236559139785e-06,
|
806 |
+
"loss": 0.3583,
|
807 |
+
"step": 133
|
808 |
+
},
|
809 |
+
{
|
810 |
+
"epoch": 1.35,
|
811 |
+
"learning_rate": 6.935483870967743e-06,
|
812 |
+
"loss": 0.3658,
|
813 |
+
"step": 134
|
814 |
+
},
|
815 |
+
{
|
816 |
+
"epoch": 1.36,
|
817 |
+
"learning_rate": 6.908602150537635e-06,
|
818 |
+
"loss": 0.3683,
|
819 |
+
"step": 135
|
820 |
+
},
|
821 |
+
{
|
822 |
+
"epoch": 1.37,
|
823 |
+
"learning_rate": 6.881720430107528e-06,
|
824 |
+
"loss": 0.3717,
|
825 |
+
"step": 136
|
826 |
+
},
|
827 |
+
{
|
828 |
+
"epoch": 1.38,
|
829 |
+
"learning_rate": 6.854838709677419e-06,
|
830 |
+
"loss": 0.3663,
|
831 |
+
"step": 137
|
832 |
+
},
|
833 |
+
{
|
834 |
+
"epoch": 1.39,
|
835 |
+
"learning_rate": 6.827956989247312e-06,
|
836 |
+
"loss": 0.3688,
|
837 |
+
"step": 138
|
838 |
+
},
|
839 |
+
{
|
840 |
+
"epoch": 1.4,
|
841 |
+
"learning_rate": 6.801075268817204e-06,
|
842 |
+
"loss": 0.3717,
|
843 |
+
"step": 139
|
844 |
+
},
|
845 |
+
{
|
846 |
+
"epoch": 1.41,
|
847 |
+
"learning_rate": 6.774193548387097e-06,
|
848 |
+
"loss": 0.3646,
|
849 |
+
"step": 140
|
850 |
+
},
|
851 |
+
{
|
852 |
+
"epoch": 1.42,
|
853 |
+
"learning_rate": 6.747311827956989e-06,
|
854 |
+
"loss": 0.3655,
|
855 |
+
"step": 141
|
856 |
+
},
|
857 |
+
{
|
858 |
+
"epoch": 1.44,
|
859 |
+
"learning_rate": 6.720430107526882e-06,
|
860 |
+
"loss": 0.3642,
|
861 |
+
"step": 142
|
862 |
+
},
|
863 |
+
{
|
864 |
+
"epoch": 1.45,
|
865 |
+
"learning_rate": 6.693548387096774e-06,
|
866 |
+
"loss": 0.3695,
|
867 |
+
"step": 143
|
868 |
+
},
|
869 |
+
{
|
870 |
+
"epoch": 1.46,
|
871 |
+
"learning_rate": 6.666666666666667e-06,
|
872 |
+
"loss": 0.3801,
|
873 |
+
"step": 144
|
874 |
+
},
|
875 |
+
{
|
876 |
+
"epoch": 1.47,
|
877 |
+
"learning_rate": 6.639784946236559e-06,
|
878 |
+
"loss": 0.3648,
|
879 |
+
"step": 145
|
880 |
+
},
|
881 |
+
{
|
882 |
+
"epoch": 1.48,
|
883 |
+
"learning_rate": 6.612903225806452e-06,
|
884 |
+
"loss": 0.3668,
|
885 |
+
"step": 146
|
886 |
+
},
|
887 |
+
{
|
888 |
+
"epoch": 1.49,
|
889 |
+
"learning_rate": 6.586021505376344e-06,
|
890 |
+
"loss": 0.3621,
|
891 |
+
"step": 147
|
892 |
+
},
|
893 |
+
{
|
894 |
+
"epoch": 1.5,
|
895 |
+
"learning_rate": 6.5591397849462365e-06,
|
896 |
+
"loss": 0.373,
|
897 |
+
"step": 148
|
898 |
+
},
|
899 |
+
{
|
900 |
+
"epoch": 1.51,
|
901 |
+
"learning_rate": 6.532258064516129e-06,
|
902 |
+
"loss": 0.3767,
|
903 |
+
"step": 149
|
904 |
+
},
|
905 |
+
{
|
906 |
+
"epoch": 1.52,
|
907 |
+
"learning_rate": 6.5053763440860214e-06,
|
908 |
+
"loss": 0.3712,
|
909 |
+
"step": 150
|
910 |
+
},
|
911 |
+
{
|
912 |
+
"epoch": 1.53,
|
913 |
+
"learning_rate": 6.478494623655914e-06,
|
914 |
+
"loss": 0.3725,
|
915 |
+
"step": 151
|
916 |
+
},
|
917 |
+
{
|
918 |
+
"epoch": 1.54,
|
919 |
+
"learning_rate": 6.451612903225806e-06,
|
920 |
+
"loss": 0.366,
|
921 |
+
"step": 152
|
922 |
+
},
|
923 |
+
{
|
924 |
+
"epoch": 1.55,
|
925 |
+
"learning_rate": 6.4247311827957e-06,
|
926 |
+
"loss": 0.362,
|
927 |
+
"step": 153
|
928 |
+
},
|
929 |
+
{
|
930 |
+
"epoch": 1.56,
|
931 |
+
"learning_rate": 6.397849462365592e-06,
|
932 |
+
"loss": 0.3575,
|
933 |
+
"step": 154
|
934 |
+
},
|
935 |
+
{
|
936 |
+
"epoch": 1.57,
|
937 |
+
"learning_rate": 6.370967741935485e-06,
|
938 |
+
"loss": 0.3579,
|
939 |
+
"step": 155
|
940 |
+
},
|
941 |
+
{
|
942 |
+
"epoch": 1.58,
|
943 |
+
"learning_rate": 6.344086021505377e-06,
|
944 |
+
"loss": 0.3624,
|
945 |
+
"step": 156
|
946 |
+
},
|
947 |
+
{
|
948 |
+
"epoch": 1.59,
|
949 |
+
"learning_rate": 6.3172043010752696e-06,
|
950 |
+
"loss": 0.3747,
|
951 |
+
"step": 157
|
952 |
+
},
|
953 |
+
{
|
954 |
+
"epoch": 1.6,
|
955 |
+
"learning_rate": 6.290322580645162e-06,
|
956 |
+
"loss": 0.3598,
|
957 |
+
"step": 158
|
958 |
+
},
|
959 |
+
{
|
960 |
+
"epoch": 1.61,
|
961 |
+
"learning_rate": 6.2634408602150545e-06,
|
962 |
+
"loss": 0.3582,
|
963 |
+
"step": 159
|
964 |
+
},
|
965 |
+
{
|
966 |
+
"epoch": 1.62,
|
967 |
+
"learning_rate": 6.236559139784947e-06,
|
968 |
+
"loss": 0.3601,
|
969 |
+
"step": 160
|
970 |
+
},
|
971 |
+
{
|
972 |
+
"epoch": 1.63,
|
973 |
+
"learning_rate": 6.209677419354839e-06,
|
974 |
+
"loss": 0.3637,
|
975 |
+
"step": 161
|
976 |
+
},
|
977 |
+
{
|
978 |
+
"epoch": 1.64,
|
979 |
+
"learning_rate": 6.182795698924732e-06,
|
980 |
+
"loss": 0.377,
|
981 |
+
"step": 162
|
982 |
+
},
|
983 |
+
{
|
984 |
+
"epoch": 1.65,
|
985 |
+
"learning_rate": 6.155913978494624e-06,
|
986 |
+
"loss": 0.361,
|
987 |
+
"step": 163
|
988 |
+
},
|
989 |
+
{
|
990 |
+
"epoch": 1.66,
|
991 |
+
"learning_rate": 6.129032258064517e-06,
|
992 |
+
"loss": 0.3687,
|
993 |
+
"step": 164
|
994 |
+
},
|
995 |
+
{
|
996 |
+
"epoch": 1.67,
|
997 |
+
"learning_rate": 6.102150537634409e-06,
|
998 |
+
"loss": 0.3633,
|
999 |
+
"step": 165
|
1000 |
+
},
|
1001 |
+
{
|
1002 |
+
"epoch": 1.68,
|
1003 |
+
"learning_rate": 6.075268817204302e-06,
|
1004 |
+
"loss": 0.365,
|
1005 |
+
"step": 166
|
1006 |
+
},
|
1007 |
+
{
|
1008 |
+
"epoch": 1.69,
|
1009 |
+
"learning_rate": 6.048387096774194e-06,
|
1010 |
+
"loss": 0.3637,
|
1011 |
+
"step": 167
|
1012 |
+
},
|
1013 |
+
{
|
1014 |
+
"epoch": 1.7,
|
1015 |
+
"learning_rate": 6.021505376344087e-06,
|
1016 |
+
"loss": 0.3725,
|
1017 |
+
"step": 168
|
1018 |
+
},
|
1019 |
+
{
|
1020 |
+
"epoch": 1.71,
|
1021 |
+
"learning_rate": 5.994623655913979e-06,
|
1022 |
+
"loss": 0.3625,
|
1023 |
+
"step": 169
|
1024 |
+
},
|
1025 |
+
{
|
1026 |
+
"epoch": 1.72,
|
1027 |
+
"learning_rate": 5.967741935483872e-06,
|
1028 |
+
"loss": 0.3657,
|
1029 |
+
"step": 170
|
1030 |
+
},
|
1031 |
+
{
|
1032 |
+
"epoch": 1.73,
|
1033 |
+
"learning_rate": 5.940860215053764e-06,
|
1034 |
+
"loss": 0.3573,
|
1035 |
+
"step": 171
|
1036 |
+
},
|
1037 |
+
{
|
1038 |
+
"epoch": 1.74,
|
1039 |
+
"learning_rate": 5.9139784946236566e-06,
|
1040 |
+
"loss": 0.3656,
|
1041 |
+
"step": 172
|
1042 |
+
},
|
1043 |
+
{
|
1044 |
+
"epoch": 1.75,
|
1045 |
+
"learning_rate": 5.887096774193549e-06,
|
1046 |
+
"loss": 0.3671,
|
1047 |
+
"step": 173
|
1048 |
+
},
|
1049 |
+
{
|
1050 |
+
"epoch": 1.76,
|
1051 |
+
"learning_rate": 5.8602150537634415e-06,
|
1052 |
+
"loss": 0.359,
|
1053 |
+
"step": 174
|
1054 |
+
},
|
1055 |
+
{
|
1056 |
+
"epoch": 1.77,
|
1057 |
+
"learning_rate": 5.833333333333334e-06,
|
1058 |
+
"loss": 0.3638,
|
1059 |
+
"step": 175
|
1060 |
+
},
|
1061 |
+
{
|
1062 |
+
"epoch": 1.78,
|
1063 |
+
"learning_rate": 5.806451612903226e-06,
|
1064 |
+
"loss": 0.3633,
|
1065 |
+
"step": 176
|
1066 |
+
},
|
1067 |
+
{
|
1068 |
+
"epoch": 1.79,
|
1069 |
+
"learning_rate": 5.779569892473119e-06,
|
1070 |
+
"loss": 0.3645,
|
1071 |
+
"step": 177
|
1072 |
+
},
|
1073 |
+
{
|
1074 |
+
"epoch": 1.8,
|
1075 |
+
"learning_rate": 5.752688172043011e-06,
|
1076 |
+
"loss": 0.3691,
|
1077 |
+
"step": 178
|
1078 |
+
},
|
1079 |
+
{
|
1080 |
+
"epoch": 1.81,
|
1081 |
+
"learning_rate": 5.725806451612904e-06,
|
1082 |
+
"loss": 0.3685,
|
1083 |
+
"step": 179
|
1084 |
+
},
|
1085 |
+
{
|
1086 |
+
"epoch": 1.82,
|
1087 |
+
"learning_rate": 5.698924731182796e-06,
|
1088 |
+
"loss": 0.3697,
|
1089 |
+
"step": 180
|
1090 |
+
},
|
1091 |
+
{
|
1092 |
+
"epoch": 1.83,
|
1093 |
+
"learning_rate": 5.672043010752689e-06,
|
1094 |
+
"loss": 0.356,
|
1095 |
+
"step": 181
|
1096 |
+
},
|
1097 |
+
{
|
1098 |
+
"epoch": 1.84,
|
1099 |
+
"learning_rate": 5.645161290322582e-06,
|
1100 |
+
"loss": 0.3624,
|
1101 |
+
"step": 182
|
1102 |
+
},
|
1103 |
+
{
|
1104 |
+
"epoch": 1.85,
|
1105 |
+
"learning_rate": 5.618279569892473e-06,
|
1106 |
+
"loss": 0.3556,
|
1107 |
+
"step": 183
|
1108 |
+
},
|
1109 |
+
{
|
1110 |
+
"epoch": 1.86,
|
1111 |
+
"learning_rate": 5.591397849462365e-06,
|
1112 |
+
"loss": 0.3634,
|
1113 |
+
"step": 184
|
1114 |
+
},
|
1115 |
+
{
|
1116 |
+
"epoch": 1.87,
|
1117 |
+
"learning_rate": 5.564516129032258e-06,
|
1118 |
+
"loss": 0.3536,
|
1119 |
+
"step": 185
|
1120 |
+
},
|
1121 |
+
{
|
1122 |
+
"epoch": 1.88,
|
1123 |
+
"learning_rate": 5.53763440860215e-06,
|
1124 |
+
"loss": 0.3649,
|
1125 |
+
"step": 186
|
1126 |
+
},
|
1127 |
+
{
|
1128 |
+
"epoch": 1.89,
|
1129 |
+
"learning_rate": 5.510752688172043e-06,
|
1130 |
+
"loss": 0.3758,
|
1131 |
+
"step": 187
|
1132 |
+
},
|
1133 |
+
{
|
1134 |
+
"epoch": 1.9,
|
1135 |
+
"learning_rate": 5.483870967741935e-06,
|
1136 |
+
"loss": 0.3517,
|
1137 |
+
"step": 188
|
1138 |
+
},
|
1139 |
+
{
|
1140 |
+
"epoch": 1.91,
|
1141 |
+
"learning_rate": 5.456989247311828e-06,
|
1142 |
+
"loss": 0.359,
|
1143 |
+
"step": 189
|
1144 |
+
},
|
1145 |
+
{
|
1146 |
+
"epoch": 1.92,
|
1147 |
+
"learning_rate": 5.43010752688172e-06,
|
1148 |
+
"loss": 0.3663,
|
1149 |
+
"step": 190
|
1150 |
+
},
|
1151 |
+
{
|
1152 |
+
"epoch": 1.93,
|
1153 |
+
"learning_rate": 5.4032258064516126e-06,
|
1154 |
+
"loss": 0.373,
|
1155 |
+
"step": 191
|
1156 |
+
},
|
1157 |
+
{
|
1158 |
+
"epoch": 1.94,
|
1159 |
+
"learning_rate": 5.376344086021506e-06,
|
1160 |
+
"loss": 0.363,
|
1161 |
+
"step": 192
|
1162 |
+
},
|
1163 |
+
{
|
1164 |
+
"epoch": 1.95,
|
1165 |
+
"learning_rate": 5.349462365591398e-06,
|
1166 |
+
"loss": 0.3699,
|
1167 |
+
"step": 193
|
1168 |
+
},
|
1169 |
+
{
|
1170 |
+
"epoch": 1.96,
|
1171 |
+
"learning_rate": 5.322580645161291e-06,
|
1172 |
+
"loss": 0.3784,
|
1173 |
+
"step": 194
|
1174 |
+
},
|
1175 |
+
{
|
1176 |
+
"epoch": 1.97,
|
1177 |
+
"learning_rate": 5.295698924731183e-06,
|
1178 |
+
"loss": 0.3725,
|
1179 |
+
"step": 195
|
1180 |
+
},
|
1181 |
+
{
|
1182 |
+
"epoch": 1.98,
|
1183 |
+
"learning_rate": 5.268817204301076e-06,
|
1184 |
+
"loss": 0.3611,
|
1185 |
+
"step": 196
|
1186 |
+
},
|
1187 |
+
{
|
1188 |
+
"epoch": 1.99,
|
1189 |
+
"learning_rate": 5.241935483870968e-06,
|
1190 |
+
"loss": 0.3683,
|
1191 |
+
"step": 197
|
1192 |
+
},
|
1193 |
+
{
|
1194 |
+
"epoch": 2.0,
|
1195 |
+
"learning_rate": 5.215053763440861e-06,
|
1196 |
+
"loss": 0.3588,
|
1197 |
+
"step": 198
|
1198 |
+
},
|
1199 |
+
{
|
1200 |
+
"epoch": 2.01,
|
1201 |
+
"learning_rate": 5.188172043010753e-06,
|
1202 |
+
"loss": 0.3478,
|
1203 |
+
"step": 199
|
1204 |
+
},
|
1205 |
+
{
|
1206 |
+
"epoch": 2.02,
|
1207 |
+
"learning_rate": 5.161290322580646e-06,
|
1208 |
+
"loss": 0.3459,
|
1209 |
+
"step": 200
|
1210 |
+
},
|
1211 |
+
{
|
1212 |
+
"epoch": 2.03,
|
1213 |
+
"learning_rate": 5.134408602150538e-06,
|
1214 |
+
"loss": 0.3545,
|
1215 |
+
"step": 201
|
1216 |
+
},
|
1217 |
+
{
|
1218 |
+
"epoch": 2.04,
|
1219 |
+
"learning_rate": 5.1075268817204305e-06,
|
1220 |
+
"loss": 0.3487,
|
1221 |
+
"step": 202
|
1222 |
+
},
|
1223 |
+
{
|
1224 |
+
"epoch": 2.05,
|
1225 |
+
"learning_rate": 5.080645161290323e-06,
|
1226 |
+
"loss": 0.3457,
|
1227 |
+
"step": 203
|
1228 |
+
},
|
1229 |
+
{
|
1230 |
+
"epoch": 2.06,
|
1231 |
+
"learning_rate": 5.0537634408602155e-06,
|
1232 |
+
"loss": 0.351,
|
1233 |
+
"step": 204
|
1234 |
+
},
|
1235 |
+
{
|
1236 |
+
"epoch": 2.07,
|
1237 |
+
"learning_rate": 5.026881720430108e-06,
|
1238 |
+
"loss": 0.3531,
|
1239 |
+
"step": 205
|
1240 |
+
},
|
1241 |
+
{
|
1242 |
+
"epoch": 2.08,
|
1243 |
+
"learning_rate": 5e-06,
|
1244 |
+
"loss": 0.344,
|
1245 |
+
"step": 206
|
1246 |
+
},
|
1247 |
+
{
|
1248 |
+
"epoch": 2.09,
|
1249 |
+
"learning_rate": 4.973118279569893e-06,
|
1250 |
+
"loss": 0.3534,
|
1251 |
+
"step": 207
|
1252 |
+
},
|
1253 |
+
{
|
1254 |
+
"epoch": 2.1,
|
1255 |
+
"learning_rate": 4.946236559139785e-06,
|
1256 |
+
"loss": 0.3524,
|
1257 |
+
"step": 208
|
1258 |
+
},
|
1259 |
+
{
|
1260 |
+
"epoch": 2.11,
|
1261 |
+
"learning_rate": 4.919354838709678e-06,
|
1262 |
+
"loss": 0.3504,
|
1263 |
+
"step": 209
|
1264 |
+
},
|
1265 |
+
{
|
1266 |
+
"epoch": 2.12,
|
1267 |
+
"learning_rate": 4.89247311827957e-06,
|
1268 |
+
"loss": 0.3551,
|
1269 |
+
"step": 210
|
1270 |
+
},
|
1271 |
+
{
|
1272 |
+
"epoch": 2.13,
|
1273 |
+
"learning_rate": 4.865591397849463e-06,
|
1274 |
+
"loss": 0.3494,
|
1275 |
+
"step": 211
|
1276 |
+
},
|
1277 |
+
{
|
1278 |
+
"epoch": 2.14,
|
1279 |
+
"learning_rate": 4.838709677419355e-06,
|
1280 |
+
"loss": 0.3446,
|
1281 |
+
"step": 212
|
1282 |
+
},
|
1283 |
+
{
|
1284 |
+
"epoch": 2.15,
|
1285 |
+
"learning_rate": 4.811827956989248e-06,
|
1286 |
+
"loss": 0.3548,
|
1287 |
+
"step": 213
|
1288 |
+
},
|
1289 |
+
{
|
1290 |
+
"epoch": 2.16,
|
1291 |
+
"learning_rate": 4.78494623655914e-06,
|
1292 |
+
"loss": 0.3623,
|
1293 |
+
"step": 214
|
1294 |
+
},
|
1295 |
+
{
|
1296 |
+
"epoch": 2.17,
|
1297 |
+
"learning_rate": 4.758064516129033e-06,
|
1298 |
+
"loss": 0.3615,
|
1299 |
+
"step": 215
|
1300 |
+
},
|
1301 |
+
{
|
1302 |
+
"epoch": 2.18,
|
1303 |
+
"learning_rate": 4.731182795698925e-06,
|
1304 |
+
"loss": 0.3549,
|
1305 |
+
"step": 216
|
1306 |
+
},
|
1307 |
+
{
|
1308 |
+
"epoch": 2.19,
|
1309 |
+
"learning_rate": 4.7043010752688175e-06,
|
1310 |
+
"loss": 0.3433,
|
1311 |
+
"step": 217
|
1312 |
+
},
|
1313 |
+
{
|
1314 |
+
"epoch": 2.2,
|
1315 |
+
"learning_rate": 4.67741935483871e-06,
|
1316 |
+
"loss": 0.3484,
|
1317 |
+
"step": 218
|
1318 |
+
},
|
1319 |
+
{
|
1320 |
+
"epoch": 2.21,
|
1321 |
+
"learning_rate": 4.6505376344086025e-06,
|
1322 |
+
"loss": 0.3525,
|
1323 |
+
"step": 219
|
1324 |
+
},
|
1325 |
+
{
|
1326 |
+
"epoch": 2.22,
|
1327 |
+
"learning_rate": 4.623655913978495e-06,
|
1328 |
+
"loss": 0.3495,
|
1329 |
+
"step": 220
|
1330 |
+
},
|
1331 |
+
{
|
1332 |
+
"epoch": 2.23,
|
1333 |
+
"learning_rate": 4.596774193548387e-06,
|
1334 |
+
"loss": 0.3612,
|
1335 |
+
"step": 221
|
1336 |
+
},
|
1337 |
+
{
|
1338 |
+
"epoch": 2.24,
|
1339 |
+
"learning_rate": 4.56989247311828e-06,
|
1340 |
+
"loss": 0.3446,
|
1341 |
+
"step": 222
|
1342 |
+
},
|
1343 |
+
{
|
1344 |
+
"epoch": 2.25,
|
1345 |
+
"learning_rate": 4.543010752688172e-06,
|
1346 |
+
"loss": 0.3506,
|
1347 |
+
"step": 223
|
1348 |
+
},
|
1349 |
+
{
|
1350 |
+
"epoch": 2.26,
|
1351 |
+
"learning_rate": 4.516129032258065e-06,
|
1352 |
+
"loss": 0.3525,
|
1353 |
+
"step": 224
|
1354 |
+
},
|
1355 |
+
{
|
1356 |
+
"epoch": 2.27,
|
1357 |
+
"learning_rate": 4.489247311827957e-06,
|
1358 |
+
"loss": 0.3545,
|
1359 |
+
"step": 225
|
1360 |
+
},
|
1361 |
+
{
|
1362 |
+
"epoch": 2.28,
|
1363 |
+
"learning_rate": 4.46236559139785e-06,
|
1364 |
+
"loss": 0.3525,
|
1365 |
+
"step": 226
|
1366 |
+
},
|
1367 |
+
{
|
1368 |
+
"epoch": 2.29,
|
1369 |
+
"learning_rate": 4.435483870967742e-06,
|
1370 |
+
"loss": 0.3509,
|
1371 |
+
"step": 227
|
1372 |
+
},
|
1373 |
+
{
|
1374 |
+
"epoch": 2.3,
|
1375 |
+
"learning_rate": 4.408602150537635e-06,
|
1376 |
+
"loss": 0.3549,
|
1377 |
+
"step": 228
|
1378 |
+
},
|
1379 |
+
{
|
1380 |
+
"epoch": 2.31,
|
1381 |
+
"learning_rate": 4.381720430107527e-06,
|
1382 |
+
"loss": 0.3477,
|
1383 |
+
"step": 229
|
1384 |
+
},
|
1385 |
+
{
|
1386 |
+
"epoch": 2.32,
|
1387 |
+
"learning_rate": 4.35483870967742e-06,
|
1388 |
+
"loss": 0.3654,
|
1389 |
+
"step": 230
|
1390 |
+
},
|
1391 |
+
{
|
1392 |
+
"epoch": 2.33,
|
1393 |
+
"learning_rate": 4.327956989247312e-06,
|
1394 |
+
"loss": 0.3439,
|
1395 |
+
"step": 231
|
1396 |
+
},
|
1397 |
+
{
|
1398 |
+
"epoch": 2.34,
|
1399 |
+
"learning_rate": 4.3010752688172045e-06,
|
1400 |
+
"loss": 0.3462,
|
1401 |
+
"step": 232
|
1402 |
+
},
|
1403 |
+
{
|
1404 |
+
"epoch": 2.35,
|
1405 |
+
"learning_rate": 4.274193548387097e-06,
|
1406 |
+
"loss": 0.3387,
|
1407 |
+
"step": 233
|
1408 |
+
},
|
1409 |
+
{
|
1410 |
+
"epoch": 2.36,
|
1411 |
+
"learning_rate": 4.2473118279569895e-06,
|
1412 |
+
"loss": 0.3458,
|
1413 |
+
"step": 234
|
1414 |
+
},
|
1415 |
+
{
|
1416 |
+
"epoch": 2.37,
|
1417 |
+
"learning_rate": 4.220430107526882e-06,
|
1418 |
+
"loss": 0.3482,
|
1419 |
+
"step": 235
|
1420 |
+
},
|
1421 |
+
{
|
1422 |
+
"epoch": 2.39,
|
1423 |
+
"learning_rate": 4.193548387096774e-06,
|
1424 |
+
"loss": 0.3614,
|
1425 |
+
"step": 236
|
1426 |
+
},
|
1427 |
+
{
|
1428 |
+
"epoch": 2.4,
|
1429 |
+
"learning_rate": 4.166666666666667e-06,
|
1430 |
+
"loss": 0.3511,
|
1431 |
+
"step": 237
|
1432 |
+
},
|
1433 |
+
{
|
1434 |
+
"epoch": 2.41,
|
1435 |
+
"learning_rate": 4.139784946236559e-06,
|
1436 |
+
"loss": 0.349,
|
1437 |
+
"step": 238
|
1438 |
+
},
|
1439 |
+
{
|
1440 |
+
"epoch": 2.42,
|
1441 |
+
"learning_rate": 4.112903225806452e-06,
|
1442 |
+
"loss": 0.354,
|
1443 |
+
"step": 239
|
1444 |
+
},
|
1445 |
+
{
|
1446 |
+
"epoch": 2.43,
|
1447 |
+
"learning_rate": 4.086021505376344e-06,
|
1448 |
+
"loss": 0.3539,
|
1449 |
+
"step": 240
|
1450 |
+
},
|
1451 |
+
{
|
1452 |
+
"epoch": 2.44,
|
1453 |
+
"learning_rate": 4.059139784946237e-06,
|
1454 |
+
"loss": 0.3566,
|
1455 |
+
"step": 241
|
1456 |
+
},
|
1457 |
+
{
|
1458 |
+
"epoch": 2.45,
|
1459 |
+
"learning_rate": 4.032258064516129e-06,
|
1460 |
+
"loss": 0.3441,
|
1461 |
+
"step": 242
|
1462 |
+
},
|
1463 |
+
{
|
1464 |
+
"epoch": 2.46,
|
1465 |
+
"learning_rate": 4.005376344086022e-06,
|
1466 |
+
"loss": 0.3476,
|
1467 |
+
"step": 243
|
1468 |
+
},
|
1469 |
+
{
|
1470 |
+
"epoch": 2.47,
|
1471 |
+
"learning_rate": 3.978494623655914e-06,
|
1472 |
+
"loss": 0.3533,
|
1473 |
+
"step": 244
|
1474 |
+
},
|
1475 |
+
{
|
1476 |
+
"epoch": 2.48,
|
1477 |
+
"learning_rate": 3.951612903225807e-06,
|
1478 |
+
"loss": 0.3419,
|
1479 |
+
"step": 245
|
1480 |
+
},
|
1481 |
+
{
|
1482 |
+
"epoch": 2.49,
|
1483 |
+
"learning_rate": 3.924731182795699e-06,
|
1484 |
+
"loss": 0.353,
|
1485 |
+
"step": 246
|
1486 |
+
},
|
1487 |
+
{
|
1488 |
+
"epoch": 2.5,
|
1489 |
+
"learning_rate": 3.8978494623655915e-06,
|
1490 |
+
"loss": 0.3533,
|
1491 |
+
"step": 247
|
1492 |
+
},
|
1493 |
+
{
|
1494 |
+
"epoch": 2.51,
|
1495 |
+
"learning_rate": 3.870967741935484e-06,
|
1496 |
+
"loss": 0.3529,
|
1497 |
+
"step": 248
|
1498 |
+
},
|
1499 |
+
{
|
1500 |
+
"epoch": 2.52,
|
1501 |
+
"learning_rate": 3.8440860215053765e-06,
|
1502 |
+
"loss": 0.3491,
|
1503 |
+
"step": 249
|
1504 |
+
},
|
1505 |
+
{
|
1506 |
+
"epoch": 2.53,
|
1507 |
+
"learning_rate": 3.817204301075269e-06,
|
1508 |
+
"loss": 0.3509,
|
1509 |
+
"step": 250
|
1510 |
+
},
|
1511 |
+
{
|
1512 |
+
"epoch": 2.54,
|
1513 |
+
"learning_rate": 3.7903225806451614e-06,
|
1514 |
+
"loss": 0.3533,
|
1515 |
+
"step": 251
|
1516 |
+
},
|
1517 |
+
{
|
1518 |
+
"epoch": 2.55,
|
1519 |
+
"learning_rate": 3.763440860215054e-06,
|
1520 |
+
"loss": 0.3548,
|
1521 |
+
"step": 252
|
1522 |
+
},
|
1523 |
+
{
|
1524 |
+
"epoch": 2.56,
|
1525 |
+
"learning_rate": 3.7365591397849468e-06,
|
1526 |
+
"loss": 0.3567,
|
1527 |
+
"step": 253
|
1528 |
+
},
|
1529 |
+
{
|
1530 |
+
"epoch": 2.57,
|
1531 |
+
"learning_rate": 3.7096774193548392e-06,
|
1532 |
+
"loss": 0.3439,
|
1533 |
+
"step": 254
|
1534 |
+
},
|
1535 |
+
{
|
1536 |
+
"epoch": 2.58,
|
1537 |
+
"learning_rate": 3.6827956989247317e-06,
|
1538 |
+
"loss": 0.3439,
|
1539 |
+
"step": 255
|
1540 |
+
},
|
1541 |
+
{
|
1542 |
+
"epoch": 2.59,
|
1543 |
+
"learning_rate": 3.655913978494624e-06,
|
1544 |
+
"loss": 0.3479,
|
1545 |
+
"step": 256
|
1546 |
+
},
|
1547 |
+
{
|
1548 |
+
"epoch": 2.6,
|
1549 |
+
"learning_rate": 3.6290322580645166e-06,
|
1550 |
+
"loss": 0.3487,
|
1551 |
+
"step": 257
|
1552 |
+
},
|
1553 |
+
{
|
1554 |
+
"epoch": 2.61,
|
1555 |
+
"learning_rate": 3.602150537634409e-06,
|
1556 |
+
"loss": 0.3538,
|
1557 |
+
"step": 258
|
1558 |
+
},
|
1559 |
+
{
|
1560 |
+
"epoch": 2.62,
|
1561 |
+
"learning_rate": 3.5752688172043015e-06,
|
1562 |
+
"loss": 0.3481,
|
1563 |
+
"step": 259
|
1564 |
+
},
|
1565 |
+
{
|
1566 |
+
"epoch": 2.63,
|
1567 |
+
"learning_rate": 3.548387096774194e-06,
|
1568 |
+
"loss": 0.3414,
|
1569 |
+
"step": 260
|
1570 |
+
},
|
1571 |
+
{
|
1572 |
+
"epoch": 2.64,
|
1573 |
+
"learning_rate": 3.5215053763440865e-06,
|
1574 |
+
"loss": 0.3496,
|
1575 |
+
"step": 261
|
1576 |
+
},
|
1577 |
+
{
|
1578 |
+
"epoch": 2.65,
|
1579 |
+
"learning_rate": 3.494623655913979e-06,
|
1580 |
+
"loss": 0.3546,
|
1581 |
+
"step": 262
|
1582 |
+
},
|
1583 |
+
{
|
1584 |
+
"epoch": 2.66,
|
1585 |
+
"learning_rate": 3.4677419354838714e-06,
|
1586 |
+
"loss": 0.3431,
|
1587 |
+
"step": 263
|
1588 |
+
},
|
1589 |
+
{
|
1590 |
+
"epoch": 2.67,
|
1591 |
+
"learning_rate": 3.440860215053764e-06,
|
1592 |
+
"loss": 0.3547,
|
1593 |
+
"step": 264
|
1594 |
+
},
|
1595 |
+
{
|
1596 |
+
"epoch": 2.68,
|
1597 |
+
"learning_rate": 3.413978494623656e-06,
|
1598 |
+
"loss": 0.3471,
|
1599 |
+
"step": 265
|
1600 |
+
},
|
1601 |
+
{
|
1602 |
+
"epoch": 2.69,
|
1603 |
+
"learning_rate": 3.3870967741935484e-06,
|
1604 |
+
"loss": 0.3435,
|
1605 |
+
"step": 266
|
1606 |
+
},
|
1607 |
+
{
|
1608 |
+
"epoch": 2.7,
|
1609 |
+
"learning_rate": 3.360215053763441e-06,
|
1610 |
+
"loss": 0.3397,
|
1611 |
+
"step": 267
|
1612 |
+
},
|
1613 |
+
{
|
1614 |
+
"epoch": 2.71,
|
1615 |
+
"learning_rate": 3.3333333333333333e-06,
|
1616 |
+
"loss": 0.3571,
|
1617 |
+
"step": 268
|
1618 |
+
},
|
1619 |
+
{
|
1620 |
+
"epoch": 2.72,
|
1621 |
+
"learning_rate": 3.306451612903226e-06,
|
1622 |
+
"loss": 0.3401,
|
1623 |
+
"step": 269
|
1624 |
+
},
|
1625 |
+
{
|
1626 |
+
"epoch": 2.73,
|
1627 |
+
"learning_rate": 3.2795698924731183e-06,
|
1628 |
+
"loss": 0.3489,
|
1629 |
+
"step": 270
|
1630 |
+
},
|
1631 |
+
{
|
1632 |
+
"epoch": 2.74,
|
1633 |
+
"learning_rate": 3.2526881720430107e-06,
|
1634 |
+
"loss": 0.3416,
|
1635 |
+
"step": 271
|
1636 |
+
},
|
1637 |
+
{
|
1638 |
+
"epoch": 2.75,
|
1639 |
+
"learning_rate": 3.225806451612903e-06,
|
1640 |
+
"loss": 0.3506,
|
1641 |
+
"step": 272
|
1642 |
+
},
|
1643 |
+
{
|
1644 |
+
"epoch": 2.76,
|
1645 |
+
"learning_rate": 3.198924731182796e-06,
|
1646 |
+
"loss": 0.3612,
|
1647 |
+
"step": 273
|
1648 |
+
},
|
1649 |
+
{
|
1650 |
+
"epoch": 2.77,
|
1651 |
+
"learning_rate": 3.1720430107526885e-06,
|
1652 |
+
"loss": 0.3559,
|
1653 |
+
"step": 274
|
1654 |
+
},
|
1655 |
+
{
|
1656 |
+
"epoch": 2.78,
|
1657 |
+
"learning_rate": 3.145161290322581e-06,
|
1658 |
+
"loss": 0.3398,
|
1659 |
+
"step": 275
|
1660 |
+
},
|
1661 |
+
{
|
1662 |
+
"epoch": 2.79,
|
1663 |
+
"learning_rate": 3.1182795698924735e-06,
|
1664 |
+
"loss": 0.3587,
|
1665 |
+
"step": 276
|
1666 |
+
},
|
1667 |
+
{
|
1668 |
+
"epoch": 2.8,
|
1669 |
+
"learning_rate": 3.091397849462366e-06,
|
1670 |
+
"loss": 0.3677,
|
1671 |
+
"step": 277
|
1672 |
+
},
|
1673 |
+
{
|
1674 |
+
"epoch": 2.81,
|
1675 |
+
"learning_rate": 3.0645161290322584e-06,
|
1676 |
+
"loss": 0.3595,
|
1677 |
+
"step": 278
|
1678 |
+
},
|
1679 |
+
{
|
1680 |
+
"epoch": 2.82,
|
1681 |
+
"learning_rate": 3.037634408602151e-06,
|
1682 |
+
"loss": 0.3512,
|
1683 |
+
"step": 279
|
1684 |
+
},
|
1685 |
+
{
|
1686 |
+
"epoch": 2.83,
|
1687 |
+
"learning_rate": 3.0107526881720433e-06,
|
1688 |
+
"loss": 0.3429,
|
1689 |
+
"step": 280
|
1690 |
+
},
|
1691 |
+
{
|
1692 |
+
"epoch": 2.84,
|
1693 |
+
"learning_rate": 2.983870967741936e-06,
|
1694 |
+
"loss": 0.3471,
|
1695 |
+
"step": 281
|
1696 |
+
},
|
1697 |
+
{
|
1698 |
+
"epoch": 2.85,
|
1699 |
+
"learning_rate": 2.9569892473118283e-06,
|
1700 |
+
"loss": 0.3448,
|
1701 |
+
"step": 282
|
1702 |
+
},
|
1703 |
+
{
|
1704 |
+
"epoch": 2.86,
|
1705 |
+
"learning_rate": 2.9301075268817207e-06,
|
1706 |
+
"loss": 0.3608,
|
1707 |
+
"step": 283
|
1708 |
+
},
|
1709 |
+
{
|
1710 |
+
"epoch": 2.87,
|
1711 |
+
"learning_rate": 2.903225806451613e-06,
|
1712 |
+
"loss": 0.3401,
|
1713 |
+
"step": 284
|
1714 |
+
},
|
1715 |
+
{
|
1716 |
+
"epoch": 2.88,
|
1717 |
+
"learning_rate": 2.8763440860215057e-06,
|
1718 |
+
"loss": 0.3403,
|
1719 |
+
"step": 285
|
1720 |
+
},
|
1721 |
+
{
|
1722 |
+
"epoch": 2.89,
|
1723 |
+
"learning_rate": 2.849462365591398e-06,
|
1724 |
+
"loss": 0.3497,
|
1725 |
+
"step": 286
|
1726 |
+
},
|
1727 |
+
{
|
1728 |
+
"epoch": 2.9,
|
1729 |
+
"learning_rate": 2.822580645161291e-06,
|
1730 |
+
"loss": 0.3541,
|
1731 |
+
"step": 287
|
1732 |
+
},
|
1733 |
+
{
|
1734 |
+
"epoch": 2.91,
|
1735 |
+
"learning_rate": 2.7956989247311827e-06,
|
1736 |
+
"loss": 0.3565,
|
1737 |
+
"step": 288
|
1738 |
+
},
|
1739 |
+
{
|
1740 |
+
"epoch": 2.92,
|
1741 |
+
"learning_rate": 2.768817204301075e-06,
|
1742 |
+
"loss": 0.351,
|
1743 |
+
"step": 289
|
1744 |
+
},
|
1745 |
+
{
|
1746 |
+
"epoch": 2.93,
|
1747 |
+
"learning_rate": 2.7419354838709676e-06,
|
1748 |
+
"loss": 0.3542,
|
1749 |
+
"step": 290
|
1750 |
+
},
|
1751 |
+
{
|
1752 |
+
"epoch": 2.94,
|
1753 |
+
"learning_rate": 2.71505376344086e-06,
|
1754 |
+
"loss": 0.3387,
|
1755 |
+
"step": 291
|
1756 |
+
},
|
1757 |
+
{
|
1758 |
+
"epoch": 2.95,
|
1759 |
+
"learning_rate": 2.688172043010753e-06,
|
1760 |
+
"loss": 0.3541,
|
1761 |
+
"step": 292
|
1762 |
+
},
|
1763 |
+
{
|
1764 |
+
"epoch": 2.96,
|
1765 |
+
"learning_rate": 2.6612903225806454e-06,
|
1766 |
+
"loss": 0.349,
|
1767 |
+
"step": 293
|
1768 |
+
},
|
1769 |
+
{
|
1770 |
+
"epoch": 2.97,
|
1771 |
+
"learning_rate": 2.634408602150538e-06,
|
1772 |
+
"loss": 0.3569,
|
1773 |
+
"step": 294
|
1774 |
+
},
|
1775 |
+
{
|
1776 |
+
"epoch": 2.98,
|
1777 |
+
"learning_rate": 2.6075268817204303e-06,
|
1778 |
+
"loss": 0.3474,
|
1779 |
+
"step": 295
|
1780 |
+
},
|
1781 |
+
{
|
1782 |
+
"epoch": 2.99,
|
1783 |
+
"learning_rate": 2.580645161290323e-06,
|
1784 |
+
"loss": 0.3668,
|
1785 |
+
"step": 296
|
1786 |
+
},
|
1787 |
+
{
|
1788 |
+
"epoch": 3.0,
|
1789 |
+
"learning_rate": 2.5537634408602153e-06,
|
1790 |
+
"loss": 0.3428,
|
1791 |
+
"step": 297
|
1792 |
+
},
|
1793 |
+
{
|
1794 |
+
"epoch": 3.01,
|
1795 |
+
"learning_rate": 2.5268817204301077e-06,
|
1796 |
+
"loss": 0.3323,
|
1797 |
+
"step": 298
|
1798 |
+
},
|
1799 |
+
{
|
1800 |
+
"epoch": 3.02,
|
1801 |
+
"learning_rate": 2.5e-06,
|
1802 |
+
"loss": 0.343,
|
1803 |
+
"step": 299
|
1804 |
+
},
|
1805 |
+
{
|
1806 |
+
"epoch": 3.03,
|
1807 |
+
"learning_rate": 2.4731182795698927e-06,
|
1808 |
+
"loss": 0.3446,
|
1809 |
+
"step": 300
|
1810 |
+
},
|
1811 |
+
{
|
1812 |
+
"epoch": 3.04,
|
1813 |
+
"learning_rate": 2.446236559139785e-06,
|
1814 |
+
"loss": 0.3439,
|
1815 |
+
"step": 301
|
1816 |
+
},
|
1817 |
+
{
|
1818 |
+
"epoch": 3.05,
|
1819 |
+
"learning_rate": 2.4193548387096776e-06,
|
1820 |
+
"loss": 0.3535,
|
1821 |
+
"step": 302
|
1822 |
+
},
|
1823 |
+
{
|
1824 |
+
"epoch": 3.06,
|
1825 |
+
"learning_rate": 2.39247311827957e-06,
|
1826 |
+
"loss": 0.3318,
|
1827 |
+
"step": 303
|
1828 |
+
},
|
1829 |
+
{
|
1830 |
+
"epoch": 3.07,
|
1831 |
+
"learning_rate": 2.3655913978494625e-06,
|
1832 |
+
"loss": 0.3304,
|
1833 |
+
"step": 304
|
1834 |
+
},
|
1835 |
+
{
|
1836 |
+
"epoch": 3.08,
|
1837 |
+
"learning_rate": 2.338709677419355e-06,
|
1838 |
+
"loss": 0.3361,
|
1839 |
+
"step": 305
|
1840 |
+
},
|
1841 |
+
{
|
1842 |
+
"epoch": 3.09,
|
1843 |
+
"learning_rate": 2.3118279569892475e-06,
|
1844 |
+
"loss": 0.3508,
|
1845 |
+
"step": 306
|
1846 |
+
},
|
1847 |
+
{
|
1848 |
+
"epoch": 3.1,
|
1849 |
+
"learning_rate": 2.28494623655914e-06,
|
1850 |
+
"loss": 0.3443,
|
1851 |
+
"step": 307
|
1852 |
+
},
|
1853 |
+
{
|
1854 |
+
"epoch": 3.11,
|
1855 |
+
"learning_rate": 2.2580645161290324e-06,
|
1856 |
+
"loss": 0.3461,
|
1857 |
+
"step": 308
|
1858 |
+
},
|
1859 |
+
{
|
1860 |
+
"epoch": 3.12,
|
1861 |
+
"learning_rate": 2.231182795698925e-06,
|
1862 |
+
"loss": 0.3448,
|
1863 |
+
"step": 309
|
1864 |
+
},
|
1865 |
+
{
|
1866 |
+
"epoch": 3.13,
|
1867 |
+
"learning_rate": 2.2043010752688173e-06,
|
1868 |
+
"loss": 0.3423,
|
1869 |
+
"step": 310
|
1870 |
+
},
|
1871 |
+
{
|
1872 |
+
"epoch": 3.14,
|
1873 |
+
"learning_rate": 2.17741935483871e-06,
|
1874 |
+
"loss": 0.3463,
|
1875 |
+
"step": 311
|
1876 |
+
},
|
1877 |
+
{
|
1878 |
+
"epoch": 3.15,
|
1879 |
+
"learning_rate": 2.1505376344086023e-06,
|
1880 |
+
"loss": 0.3342,
|
1881 |
+
"step": 312
|
1882 |
+
},
|
1883 |
+
{
|
1884 |
+
"epoch": 3.16,
|
1885 |
+
"learning_rate": 2.1236559139784947e-06,
|
1886 |
+
"loss": 0.349,
|
1887 |
+
"step": 313
|
1888 |
+
},
|
1889 |
+
{
|
1890 |
+
"epoch": 3.17,
|
1891 |
+
"learning_rate": 2.096774193548387e-06,
|
1892 |
+
"loss": 0.3436,
|
1893 |
+
"step": 314
|
1894 |
+
},
|
1895 |
+
{
|
1896 |
+
"epoch": 3.18,
|
1897 |
+
"learning_rate": 2.0698924731182797e-06,
|
1898 |
+
"loss": 0.3451,
|
1899 |
+
"step": 315
|
1900 |
+
},
|
1901 |
+
{
|
1902 |
+
"epoch": 3.19,
|
1903 |
+
"learning_rate": 2.043010752688172e-06,
|
1904 |
+
"loss": 0.3428,
|
1905 |
+
"step": 316
|
1906 |
+
},
|
1907 |
+
{
|
1908 |
+
"epoch": 3.2,
|
1909 |
+
"learning_rate": 2.0161290322580646e-06,
|
1910 |
+
"loss": 0.3476,
|
1911 |
+
"step": 317
|
1912 |
+
},
|
1913 |
+
{
|
1914 |
+
"epoch": 3.21,
|
1915 |
+
"learning_rate": 1.989247311827957e-06,
|
1916 |
+
"loss": 0.3395,
|
1917 |
+
"step": 318
|
1918 |
+
},
|
1919 |
+
{
|
1920 |
+
"epoch": 3.22,
|
1921 |
+
"learning_rate": 1.9623655913978495e-06,
|
1922 |
+
"loss": 0.3423,
|
1923 |
+
"step": 319
|
1924 |
+
},
|
1925 |
+
{
|
1926 |
+
"epoch": 3.23,
|
1927 |
+
"learning_rate": 1.935483870967742e-06,
|
1928 |
+
"loss": 0.3444,
|
1929 |
+
"step": 320
|
1930 |
+
},
|
1931 |
+
{
|
1932 |
+
"epoch": 3.24,
|
1933 |
+
"learning_rate": 1.9086021505376345e-06,
|
1934 |
+
"loss": 0.3511,
|
1935 |
+
"step": 321
|
1936 |
+
},
|
1937 |
+
{
|
1938 |
+
"epoch": 3.25,
|
1939 |
+
"learning_rate": 1.881720430107527e-06,
|
1940 |
+
"loss": 0.3459,
|
1941 |
+
"step": 322
|
1942 |
+
},
|
1943 |
+
{
|
1944 |
+
"epoch": 3.26,
|
1945 |
+
"learning_rate": 1.8548387096774196e-06,
|
1946 |
+
"loss": 0.335,
|
1947 |
+
"step": 323
|
1948 |
+
},
|
1949 |
+
{
|
1950 |
+
"epoch": 3.27,
|
1951 |
+
"learning_rate": 1.827956989247312e-06,
|
1952 |
+
"loss": 0.3533,
|
1953 |
+
"step": 324
|
1954 |
+
},
|
1955 |
+
{
|
1956 |
+
"epoch": 3.28,
|
1957 |
+
"learning_rate": 1.8010752688172045e-06,
|
1958 |
+
"loss": 0.3455,
|
1959 |
+
"step": 325
|
1960 |
+
},
|
1961 |
+
{
|
1962 |
+
"epoch": 3.29,
|
1963 |
+
"learning_rate": 1.774193548387097e-06,
|
1964 |
+
"loss": 0.3526,
|
1965 |
+
"step": 326
|
1966 |
+
},
|
1967 |
+
{
|
1968 |
+
"epoch": 3.3,
|
1969 |
+
"learning_rate": 1.7473118279569895e-06,
|
1970 |
+
"loss": 0.3448,
|
1971 |
+
"step": 327
|
1972 |
+
},
|
1973 |
+
{
|
1974 |
+
"epoch": 3.31,
|
1975 |
+
"learning_rate": 1.720430107526882e-06,
|
1976 |
+
"loss": 0.3446,
|
1977 |
+
"step": 328
|
1978 |
+
},
|
1979 |
+
{
|
1980 |
+
"epoch": 3.32,
|
1981 |
+
"learning_rate": 1.6935483870967742e-06,
|
1982 |
+
"loss": 0.3464,
|
1983 |
+
"step": 329
|
1984 |
+
},
|
1985 |
+
{
|
1986 |
+
"epoch": 3.34,
|
1987 |
+
"learning_rate": 1.6666666666666667e-06,
|
1988 |
+
"loss": 0.3455,
|
1989 |
+
"step": 330
|
1990 |
+
},
|
1991 |
+
{
|
1992 |
+
"epoch": 3.35,
|
1993 |
+
"learning_rate": 1.6397849462365591e-06,
|
1994 |
+
"loss": 0.3434,
|
1995 |
+
"step": 331
|
1996 |
+
},
|
1997 |
+
{
|
1998 |
+
"epoch": 3.36,
|
1999 |
+
"learning_rate": 1.6129032258064516e-06,
|
2000 |
+
"loss": 0.3451,
|
2001 |
+
"step": 332
|
2002 |
+
},
|
2003 |
+
{
|
2004 |
+
"epoch": 3.37,
|
2005 |
+
"learning_rate": 1.5860215053763443e-06,
|
2006 |
+
"loss": 0.3409,
|
2007 |
+
"step": 333
|
2008 |
+
},
|
2009 |
+
{
|
2010 |
+
"epoch": 3.38,
|
2011 |
+
"learning_rate": 1.5591397849462367e-06,
|
2012 |
+
"loss": 0.342,
|
2013 |
+
"step": 334
|
2014 |
+
},
|
2015 |
+
{
|
2016 |
+
"epoch": 3.39,
|
2017 |
+
"learning_rate": 1.5322580645161292e-06,
|
2018 |
+
"loss": 0.3383,
|
2019 |
+
"step": 335
|
2020 |
+
},
|
2021 |
+
{
|
2022 |
+
"epoch": 3.4,
|
2023 |
+
"learning_rate": 1.5053763440860217e-06,
|
2024 |
+
"loss": 0.3534,
|
2025 |
+
"step": 336
|
2026 |
+
},
|
2027 |
+
{
|
2028 |
+
"epoch": 3.41,
|
2029 |
+
"learning_rate": 1.4784946236559141e-06,
|
2030 |
+
"loss": 0.3452,
|
2031 |
+
"step": 337
|
2032 |
+
},
|
2033 |
+
{
|
2034 |
+
"epoch": 3.42,
|
2035 |
+
"learning_rate": 1.4516129032258066e-06,
|
2036 |
+
"loss": 0.3414,
|
2037 |
+
"step": 338
|
2038 |
+
},
|
2039 |
+
{
|
2040 |
+
"epoch": 3.43,
|
2041 |
+
"learning_rate": 1.424731182795699e-06,
|
2042 |
+
"loss": 0.3459,
|
2043 |
+
"step": 339
|
2044 |
+
},
|
2045 |
+
{
|
2046 |
+
"epoch": 3.44,
|
2047 |
+
"learning_rate": 1.3978494623655913e-06,
|
2048 |
+
"loss": 0.3457,
|
2049 |
+
"step": 340
|
2050 |
+
},
|
2051 |
+
{
|
2052 |
+
"epoch": 3.45,
|
2053 |
+
"learning_rate": 1.3709677419354838e-06,
|
2054 |
+
"loss": 0.3426,
|
2055 |
+
"step": 341
|
2056 |
+
},
|
2057 |
+
{
|
2058 |
+
"epoch": 3.46,
|
2059 |
+
"learning_rate": 1.3440860215053765e-06,
|
2060 |
+
"loss": 0.3413,
|
2061 |
+
"step": 342
|
2062 |
+
},
|
2063 |
+
{
|
2064 |
+
"epoch": 3.47,
|
2065 |
+
"learning_rate": 1.317204301075269e-06,
|
2066 |
+
"loss": 0.3454,
|
2067 |
+
"step": 343
|
2068 |
+
},
|
2069 |
+
{
|
2070 |
+
"epoch": 3.48,
|
2071 |
+
"learning_rate": 1.2903225806451614e-06,
|
2072 |
+
"loss": 0.3354,
|
2073 |
+
"step": 344
|
2074 |
+
},
|
2075 |
+
{
|
2076 |
+
"epoch": 3.49,
|
2077 |
+
"learning_rate": 1.2634408602150539e-06,
|
2078 |
+
"loss": 0.3504,
|
2079 |
+
"step": 345
|
2080 |
+
},
|
2081 |
+
{
|
2082 |
+
"epoch": 3.5,
|
2083 |
+
"learning_rate": 1.2365591397849463e-06,
|
2084 |
+
"loss": 0.3423,
|
2085 |
+
"step": 346
|
2086 |
+
},
|
2087 |
+
{
|
2088 |
+
"epoch": 3.51,
|
2089 |
+
"learning_rate": 1.2096774193548388e-06,
|
2090 |
+
"loss": 0.338,
|
2091 |
+
"step": 347
|
2092 |
+
},
|
2093 |
+
{
|
2094 |
+
"epoch": 3.52,
|
2095 |
+
"learning_rate": 1.1827956989247313e-06,
|
2096 |
+
"loss": 0.3366,
|
2097 |
+
"step": 348
|
2098 |
+
},
|
2099 |
+
{
|
2100 |
+
"epoch": 3.53,
|
2101 |
+
"learning_rate": 1.1559139784946237e-06,
|
2102 |
+
"loss": 0.34,
|
2103 |
+
"step": 349
|
2104 |
+
},
|
2105 |
+
{
|
2106 |
+
"epoch": 3.54,
|
2107 |
+
"learning_rate": 1.1290322580645162e-06,
|
2108 |
+
"loss": 0.3369,
|
2109 |
+
"step": 350
|
2110 |
+
},
|
2111 |
+
{
|
2112 |
+
"epoch": 3.55,
|
2113 |
+
"learning_rate": 1.1021505376344087e-06,
|
2114 |
+
"loss": 0.346,
|
2115 |
+
"step": 351
|
2116 |
+
},
|
2117 |
+
{
|
2118 |
+
"epoch": 3.56,
|
2119 |
+
"learning_rate": 1.0752688172043011e-06,
|
2120 |
+
"loss": 0.3334,
|
2121 |
+
"step": 352
|
2122 |
+
},
|
2123 |
+
{
|
2124 |
+
"epoch": 3.57,
|
2125 |
+
"learning_rate": 1.0483870967741936e-06,
|
2126 |
+
"loss": 0.3401,
|
2127 |
+
"step": 353
|
2128 |
+
},
|
2129 |
+
{
|
2130 |
+
"epoch": 3.58,
|
2131 |
+
"learning_rate": 1.021505376344086e-06,
|
2132 |
+
"loss": 0.3432,
|
2133 |
+
"step": 354
|
2134 |
+
},
|
2135 |
+
{
|
2136 |
+
"epoch": 3.59,
|
2137 |
+
"learning_rate": 9.946236559139785e-07,
|
2138 |
+
"loss": 0.3401,
|
2139 |
+
"step": 355
|
2140 |
+
},
|
2141 |
+
{
|
2142 |
+
"epoch": 3.6,
|
2143 |
+
"learning_rate": 9.67741935483871e-07,
|
2144 |
+
"loss": 0.3399,
|
2145 |
+
"step": 356
|
2146 |
+
},
|
2147 |
+
{
|
2148 |
+
"epoch": 3.61,
|
2149 |
+
"learning_rate": 9.408602150537635e-07,
|
2150 |
+
"loss": 0.3482,
|
2151 |
+
"step": 357
|
2152 |
+
},
|
2153 |
+
{
|
2154 |
+
"epoch": 3.62,
|
2155 |
+
"learning_rate": 9.13978494623656e-07,
|
2156 |
+
"loss": 0.3398,
|
2157 |
+
"step": 358
|
2158 |
+
},
|
2159 |
+
{
|
2160 |
+
"epoch": 3.63,
|
2161 |
+
"learning_rate": 8.870967741935485e-07,
|
2162 |
+
"loss": 0.3384,
|
2163 |
+
"step": 359
|
2164 |
+
},
|
2165 |
+
{
|
2166 |
+
"epoch": 3.64,
|
2167 |
+
"learning_rate": 8.60215053763441e-07,
|
2168 |
+
"loss": 0.3338,
|
2169 |
+
"step": 360
|
2170 |
+
},
|
2171 |
+
{
|
2172 |
+
"epoch": 3.65,
|
2173 |
+
"learning_rate": 8.333333333333333e-07,
|
2174 |
+
"loss": 0.3433,
|
2175 |
+
"step": 361
|
2176 |
+
},
|
2177 |
+
{
|
2178 |
+
"epoch": 3.66,
|
2179 |
+
"learning_rate": 8.064516129032258e-07,
|
2180 |
+
"loss": 0.3445,
|
2181 |
+
"step": 362
|
2182 |
+
},
|
2183 |
+
{
|
2184 |
+
"epoch": 3.67,
|
2185 |
+
"learning_rate": 7.795698924731184e-07,
|
2186 |
+
"loss": 0.3514,
|
2187 |
+
"step": 363
|
2188 |
+
},
|
2189 |
+
{
|
2190 |
+
"epoch": 3.68,
|
2191 |
+
"learning_rate": 7.526881720430108e-07,
|
2192 |
+
"loss": 0.3402,
|
2193 |
+
"step": 364
|
2194 |
+
},
|
2195 |
+
{
|
2196 |
+
"epoch": 3.69,
|
2197 |
+
"learning_rate": 7.258064516129033e-07,
|
2198 |
+
"loss": 0.3449,
|
2199 |
+
"step": 365
|
2200 |
+
},
|
2201 |
+
{
|
2202 |
+
"epoch": 3.7,
|
2203 |
+
"learning_rate": 6.989247311827957e-07,
|
2204 |
+
"loss": 0.348,
|
2205 |
+
"step": 366
|
2206 |
+
},
|
2207 |
+
{
|
2208 |
+
"epoch": 3.71,
|
2209 |
+
"learning_rate": 6.720430107526882e-07,
|
2210 |
+
"loss": 0.3457,
|
2211 |
+
"step": 367
|
2212 |
+
},
|
2213 |
+
{
|
2214 |
+
"epoch": 3.72,
|
2215 |
+
"learning_rate": 6.451612903225807e-07,
|
2216 |
+
"loss": 0.343,
|
2217 |
+
"step": 368
|
2218 |
+
},
|
2219 |
+
{
|
2220 |
+
"epoch": 3.73,
|
2221 |
+
"learning_rate": 6.182795698924732e-07,
|
2222 |
+
"loss": 0.3351,
|
2223 |
+
"step": 369
|
2224 |
+
},
|
2225 |
+
{
|
2226 |
+
"epoch": 3.74,
|
2227 |
+
"learning_rate": 5.913978494623656e-07,
|
2228 |
+
"loss": 0.3391,
|
2229 |
+
"step": 370
|
2230 |
+
},
|
2231 |
+
{
|
2232 |
+
"epoch": 3.75,
|
2233 |
+
"learning_rate": 5.645161290322581e-07,
|
2234 |
+
"loss": 0.3448,
|
2235 |
+
"step": 371
|
2236 |
+
},
|
2237 |
+
{
|
2238 |
+
"epoch": 3.76,
|
2239 |
+
"learning_rate": 5.376344086021506e-07,
|
2240 |
+
"loss": 0.3449,
|
2241 |
+
"step": 372
|
2242 |
+
},
|
2243 |
+
{
|
2244 |
+
"epoch": 3.77,
|
2245 |
+
"learning_rate": 5.10752688172043e-07,
|
2246 |
+
"loss": 0.3409,
|
2247 |
+
"step": 373
|
2248 |
+
},
|
2249 |
+
{
|
2250 |
+
"epoch": 3.78,
|
2251 |
+
"learning_rate": 4.838709677419355e-07,
|
2252 |
+
"loss": 0.3399,
|
2253 |
+
"step": 374
|
2254 |
+
},
|
2255 |
+
{
|
2256 |
+
"epoch": 3.79,
|
2257 |
+
"learning_rate": 4.56989247311828e-07,
|
2258 |
+
"loss": 0.3421,
|
2259 |
+
"step": 375
|
2260 |
+
},
|
2261 |
+
{
|
2262 |
+
"epoch": 3.8,
|
2263 |
+
"learning_rate": 4.301075268817205e-07,
|
2264 |
+
"loss": 0.3499,
|
2265 |
+
"step": 376
|
2266 |
+
},
|
2267 |
+
{
|
2268 |
+
"epoch": 3.81,
|
2269 |
+
"learning_rate": 4.032258064516129e-07,
|
2270 |
+
"loss": 0.3432,
|
2271 |
+
"step": 377
|
2272 |
+
},
|
2273 |
+
{
|
2274 |
+
"epoch": 3.82,
|
2275 |
+
"learning_rate": 3.763440860215054e-07,
|
2276 |
+
"loss": 0.3416,
|
2277 |
+
"step": 378
|
2278 |
+
},
|
2279 |
+
{
|
2280 |
+
"epoch": 3.83,
|
2281 |
+
"learning_rate": 3.4946236559139783e-07,
|
2282 |
+
"loss": 0.3437,
|
2283 |
+
"step": 379
|
2284 |
+
},
|
2285 |
+
{
|
2286 |
+
"epoch": 3.84,
|
2287 |
+
"learning_rate": 3.2258064516129035e-07,
|
2288 |
+
"loss": 0.3374,
|
2289 |
+
"step": 380
|
2290 |
+
},
|
2291 |
+
{
|
2292 |
+
"epoch": 3.85,
|
2293 |
+
"learning_rate": 2.956989247311828e-07,
|
2294 |
+
"loss": 0.3524,
|
2295 |
+
"step": 381
|
2296 |
+
},
|
2297 |
+
{
|
2298 |
+
"epoch": 3.86,
|
2299 |
+
"learning_rate": 2.688172043010753e-07,
|
2300 |
+
"loss": 0.3452,
|
2301 |
+
"step": 382
|
2302 |
+
},
|
2303 |
+
{
|
2304 |
+
"epoch": 3.87,
|
2305 |
+
"learning_rate": 2.4193548387096775e-07,
|
2306 |
+
"loss": 0.3479,
|
2307 |
+
"step": 383
|
2308 |
+
},
|
2309 |
+
{
|
2310 |
+
"epoch": 3.88,
|
2311 |
+
"learning_rate": 2.1505376344086024e-07,
|
2312 |
+
"loss": 0.3502,
|
2313 |
+
"step": 384
|
2314 |
+
},
|
2315 |
+
{
|
2316 |
+
"epoch": 3.89,
|
2317 |
+
"learning_rate": 1.881720430107527e-07,
|
2318 |
+
"loss": 0.3493,
|
2319 |
+
"step": 385
|
2320 |
+
},
|
2321 |
+
{
|
2322 |
+
"epoch": 3.9,
|
2323 |
+
"learning_rate": 1.6129032258064518e-07,
|
2324 |
+
"loss": 0.3484,
|
2325 |
+
"step": 386
|
2326 |
+
},
|
2327 |
+
{
|
2328 |
+
"epoch": 3.91,
|
2329 |
+
"learning_rate": 1.3440860215053764e-07,
|
2330 |
+
"loss": 0.3482,
|
2331 |
+
"step": 387
|
2332 |
+
},
|
2333 |
+
{
|
2334 |
+
"epoch": 3.92,
|
2335 |
+
"learning_rate": 1.0752688172043012e-07,
|
2336 |
+
"loss": 0.3489,
|
2337 |
+
"step": 388
|
2338 |
+
},
|
2339 |
+
{
|
2340 |
+
"epoch": 3.93,
|
2341 |
+
"learning_rate": 8.064516129032259e-08,
|
2342 |
+
"loss": 0.3431,
|
2343 |
+
"step": 389
|
2344 |
+
},
|
2345 |
+
{
|
2346 |
+
"epoch": 3.94,
|
2347 |
+
"learning_rate": 5.376344086021506e-08,
|
2348 |
+
"loss": 0.3485,
|
2349 |
+
"step": 390
|
2350 |
+
},
|
2351 |
+
{
|
2352 |
+
"epoch": 3.95,
|
2353 |
+
"learning_rate": 2.688172043010753e-08,
|
2354 |
+
"loss": 0.3424,
|
2355 |
+
"step": 391
|
2356 |
+
},
|
2357 |
+
{
|
2358 |
+
"epoch": 3.96,
|
2359 |
+
"learning_rate": 0.0,
|
2360 |
+
"loss": 0.3413,
|
2361 |
+
"step": 392
|
2362 |
+
},
|
2363 |
+
{
|
2364 |
+
"epoch": 3.96,
|
2365 |
+
"step": 392,
|
2366 |
+
"total_flos": 1.522775275380357e+18,
|
2367 |
+
"train_loss": 0.3698531324614067,
|
2368 |
+
"train_runtime": 14359.9048,
|
2369 |
+
"train_samples_per_second": 14.112,
|
2370 |
+
"train_steps_per_second": 0.027
|
2371 |
+
}
|
2372 |
+
],
|
2373 |
+
"logging_steps": 1.0,
|
2374 |
+
"max_steps": 392,
|
2375 |
+
"num_input_tokens_seen": 0,
|
2376 |
+
"num_train_epochs": 4,
|
2377 |
+
"save_steps": 500,
|
2378 |
+
"total_flos": 1.522775275380357e+18,
|
2379 |
+
"train_batch_size": 2,
|
2380 |
+
"trial_name": null,
|
2381 |
+
"trial_params": null
|
2382 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c78ee39a071f58d7a4c5606175577bdbcc463d26b5f632601ece1e31b58deed5
|
3 |
+
size 4475
|
vocab.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|