End of training
Browse files- README.md +56 -0
- config.json +25 -0
- generation_config.json +6 -0
- pytorch_model-00001-of-00002.bin +3 -0
- pytorch_model-00002-of-00002.bin +3 -0
- pytorch_model.bin.index.json +298 -0
- special_tokens_map.json +24 -0
- tokenizer.model +3 -0
- tokenizer_config.json +43 -0
- trainer_state.json +712 -0
- training_args.bin +3 -0
README.md
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- generated_from_trainer
|
| 4 |
+
model-index:
|
| 5 |
+
- name: mistral-7b-300k-10k-a100-6e-valid
|
| 6 |
+
results: []
|
| 7 |
+
---
|
| 8 |
+
|
| 9 |
+
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
| 10 |
+
should probably proofread and complete it, then remove this comment. -->
|
| 11 |
+
|
| 12 |
+
# mistral-7b-300k-10k-a100-6e-valid
|
| 13 |
+
|
| 14 |
+
This model was trained from scratch on an unknown dataset.
|
| 15 |
+
|
| 16 |
+
## Model description
|
| 17 |
+
|
| 18 |
+
More information needed
|
| 19 |
+
|
| 20 |
+
## Intended uses & limitations
|
| 21 |
+
|
| 22 |
+
More information needed
|
| 23 |
+
|
| 24 |
+
## Training and evaluation data
|
| 25 |
+
|
| 26 |
+
More information needed
|
| 27 |
+
|
| 28 |
+
## Training procedure
|
| 29 |
+
|
| 30 |
+
### Training hyperparameters
|
| 31 |
+
|
| 32 |
+
The following hyperparameters were used during training:
|
| 33 |
+
- learning_rate: 2e-05
|
| 34 |
+
- train_batch_size: 1
|
| 35 |
+
- eval_batch_size: 1
|
| 36 |
+
- seed: 42
|
| 37 |
+
- distributed_type: multi-GPU
|
| 38 |
+
- num_devices: 4
|
| 39 |
+
- gradient_accumulation_steps: 128
|
| 40 |
+
- total_train_batch_size: 512
|
| 41 |
+
- total_eval_batch_size: 4
|
| 42 |
+
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
|
| 43 |
+
- lr_scheduler_type: cosine
|
| 44 |
+
- lr_scheduler_warmup_ratio: 0.1
|
| 45 |
+
- num_epochs: 6.0
|
| 46 |
+
|
| 47 |
+
### Training results
|
| 48 |
+
|
| 49 |
+
|
| 50 |
+
|
| 51 |
+
### Framework versions
|
| 52 |
+
|
| 53 |
+
- Transformers 4.34.1
|
| 54 |
+
- Pytorch 2.1.0+cu121
|
| 55 |
+
- Datasets 2.14.6
|
| 56 |
+
- Tokenizers 0.14.1
|
config.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_name_or_path": "models/Mistral-7B-v0.1",
|
| 3 |
+
"architectures": [
|
| 4 |
+
"MistralForCausalLM"
|
| 5 |
+
],
|
| 6 |
+
"bos_token_id": 1,
|
| 7 |
+
"eos_token_id": 2,
|
| 8 |
+
"hidden_act": "silu",
|
| 9 |
+
"hidden_size": 4096,
|
| 10 |
+
"initializer_range": 0.02,
|
| 11 |
+
"intermediate_size": 14336,
|
| 12 |
+
"max_position_embeddings": 32768,
|
| 13 |
+
"model_type": "mistral",
|
| 14 |
+
"num_attention_heads": 32,
|
| 15 |
+
"num_hidden_layers": 32,
|
| 16 |
+
"num_key_value_heads": 8,
|
| 17 |
+
"rms_norm_eps": 1e-05,
|
| 18 |
+
"rope_theta": 10000.0,
|
| 19 |
+
"sliding_window": 4096,
|
| 20 |
+
"tie_word_embeddings": false,
|
| 21 |
+
"torch_dtype": "bfloat16",
|
| 22 |
+
"transformers_version": "4.34.1",
|
| 23 |
+
"use_cache": false,
|
| 24 |
+
"vocab_size": 32000
|
| 25 |
+
}
|
generation_config.json
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_from_model_config": true,
|
| 3 |
+
"bos_token_id": 1,
|
| 4 |
+
"eos_token_id": 2,
|
| 5 |
+
"transformers_version": "4.34.1"
|
| 6 |
+
}
|
pytorch_model-00001-of-00002.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d1a35cfb271f0563208fdd86b8a81647fec29bc4429d2373b089de0e7a855a0c
|
| 3 |
+
size 9943028531
|
pytorch_model-00002-of-00002.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b999fee8ee473a653b9834808af15b39e3e045c0d30c7f284e1f3585cca4122c
|
| 3 |
+
size 4540536134
|
pytorch_model.bin.index.json
ADDED
|
@@ -0,0 +1,298 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata": {
|
| 3 |
+
"total_size": 14483464192
|
| 4 |
+
},
|
| 5 |
+
"weight_map": {
|
| 6 |
+
"lm_head.weight": "pytorch_model-00002-of-00002.bin",
|
| 7 |
+
"model.embed_tokens.weight": "pytorch_model-00001-of-00002.bin",
|
| 8 |
+
"model.layers.0.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
| 9 |
+
"model.layers.0.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 10 |
+
"model.layers.0.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 11 |
+
"model.layers.0.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 12 |
+
"model.layers.0.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
| 13 |
+
"model.layers.0.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 14 |
+
"model.layers.0.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 15 |
+
"model.layers.0.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 16 |
+
"model.layers.0.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 17 |
+
"model.layers.1.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
| 18 |
+
"model.layers.1.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 19 |
+
"model.layers.1.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 20 |
+
"model.layers.1.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 21 |
+
"model.layers.1.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
| 22 |
+
"model.layers.1.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 23 |
+
"model.layers.1.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 24 |
+
"model.layers.1.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 25 |
+
"model.layers.1.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 26 |
+
"model.layers.10.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
| 27 |
+
"model.layers.10.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 28 |
+
"model.layers.10.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 29 |
+
"model.layers.10.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 30 |
+
"model.layers.10.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
| 31 |
+
"model.layers.10.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 32 |
+
"model.layers.10.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 33 |
+
"model.layers.10.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 34 |
+
"model.layers.10.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 35 |
+
"model.layers.11.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
| 36 |
+
"model.layers.11.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 37 |
+
"model.layers.11.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 38 |
+
"model.layers.11.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 39 |
+
"model.layers.11.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
| 40 |
+
"model.layers.11.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 41 |
+
"model.layers.11.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 42 |
+
"model.layers.11.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 43 |
+
"model.layers.11.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 44 |
+
"model.layers.12.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
| 45 |
+
"model.layers.12.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 46 |
+
"model.layers.12.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 47 |
+
"model.layers.12.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 48 |
+
"model.layers.12.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
| 49 |
+
"model.layers.12.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 50 |
+
"model.layers.12.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 51 |
+
"model.layers.12.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 52 |
+
"model.layers.12.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 53 |
+
"model.layers.13.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
| 54 |
+
"model.layers.13.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 55 |
+
"model.layers.13.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 56 |
+
"model.layers.13.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 57 |
+
"model.layers.13.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
| 58 |
+
"model.layers.13.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 59 |
+
"model.layers.13.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 60 |
+
"model.layers.13.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 61 |
+
"model.layers.13.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 62 |
+
"model.layers.14.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
| 63 |
+
"model.layers.14.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 64 |
+
"model.layers.14.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 65 |
+
"model.layers.14.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 66 |
+
"model.layers.14.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
| 67 |
+
"model.layers.14.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 68 |
+
"model.layers.14.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 69 |
+
"model.layers.14.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 70 |
+
"model.layers.14.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 71 |
+
"model.layers.15.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
| 72 |
+
"model.layers.15.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 73 |
+
"model.layers.15.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 74 |
+
"model.layers.15.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 75 |
+
"model.layers.15.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
| 76 |
+
"model.layers.15.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 77 |
+
"model.layers.15.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 78 |
+
"model.layers.15.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 79 |
+
"model.layers.15.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 80 |
+
"model.layers.16.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
| 81 |
+
"model.layers.16.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 82 |
+
"model.layers.16.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 83 |
+
"model.layers.16.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 84 |
+
"model.layers.16.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
| 85 |
+
"model.layers.16.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 86 |
+
"model.layers.16.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 87 |
+
"model.layers.16.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 88 |
+
"model.layers.16.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 89 |
+
"model.layers.17.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
| 90 |
+
"model.layers.17.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 91 |
+
"model.layers.17.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 92 |
+
"model.layers.17.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 93 |
+
"model.layers.17.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
| 94 |
+
"model.layers.17.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 95 |
+
"model.layers.17.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 96 |
+
"model.layers.17.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 97 |
+
"model.layers.17.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 98 |
+
"model.layers.18.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
| 99 |
+
"model.layers.18.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 100 |
+
"model.layers.18.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 101 |
+
"model.layers.18.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 102 |
+
"model.layers.18.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
| 103 |
+
"model.layers.18.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 104 |
+
"model.layers.18.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 105 |
+
"model.layers.18.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 106 |
+
"model.layers.18.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 107 |
+
"model.layers.19.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
| 108 |
+
"model.layers.19.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 109 |
+
"model.layers.19.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 110 |
+
"model.layers.19.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 111 |
+
"model.layers.19.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
| 112 |
+
"model.layers.19.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 113 |
+
"model.layers.19.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 114 |
+
"model.layers.19.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 115 |
+
"model.layers.19.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 116 |
+
"model.layers.2.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
| 117 |
+
"model.layers.2.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 118 |
+
"model.layers.2.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 119 |
+
"model.layers.2.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 120 |
+
"model.layers.2.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
| 121 |
+
"model.layers.2.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 122 |
+
"model.layers.2.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 123 |
+
"model.layers.2.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 124 |
+
"model.layers.2.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 125 |
+
"model.layers.20.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
| 126 |
+
"model.layers.20.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 127 |
+
"model.layers.20.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 128 |
+
"model.layers.20.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 129 |
+
"model.layers.20.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
| 130 |
+
"model.layers.20.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 131 |
+
"model.layers.20.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 132 |
+
"model.layers.20.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 133 |
+
"model.layers.20.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 134 |
+
"model.layers.21.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
| 135 |
+
"model.layers.21.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 136 |
+
"model.layers.21.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 137 |
+
"model.layers.21.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 138 |
+
"model.layers.21.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
| 139 |
+
"model.layers.21.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 140 |
+
"model.layers.21.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 141 |
+
"model.layers.21.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 142 |
+
"model.layers.21.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 143 |
+
"model.layers.22.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
|
| 144 |
+
"model.layers.22.mlp.down_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 145 |
+
"model.layers.22.mlp.gate_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 146 |
+
"model.layers.22.mlp.up_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 147 |
+
"model.layers.22.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
|
| 148 |
+
"model.layers.22.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 149 |
+
"model.layers.22.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 150 |
+
"model.layers.22.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 151 |
+
"model.layers.22.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 152 |
+
"model.layers.23.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
|
| 153 |
+
"model.layers.23.mlp.down_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 154 |
+
"model.layers.23.mlp.gate_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 155 |
+
"model.layers.23.mlp.up_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 156 |
+
"model.layers.23.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
|
| 157 |
+
"model.layers.23.self_attn.k_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 158 |
+
"model.layers.23.self_attn.o_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 159 |
+
"model.layers.23.self_attn.q_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 160 |
+
"model.layers.23.self_attn.v_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 161 |
+
"model.layers.24.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
|
| 162 |
+
"model.layers.24.mlp.down_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 163 |
+
"model.layers.24.mlp.gate_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 164 |
+
"model.layers.24.mlp.up_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 165 |
+
"model.layers.24.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
|
| 166 |
+
"model.layers.24.self_attn.k_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 167 |
+
"model.layers.24.self_attn.o_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 168 |
+
"model.layers.24.self_attn.q_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 169 |
+
"model.layers.24.self_attn.v_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 170 |
+
"model.layers.25.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
|
| 171 |
+
"model.layers.25.mlp.down_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 172 |
+
"model.layers.25.mlp.gate_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 173 |
+
"model.layers.25.mlp.up_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 174 |
+
"model.layers.25.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
|
| 175 |
+
"model.layers.25.self_attn.k_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 176 |
+
"model.layers.25.self_attn.o_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 177 |
+
"model.layers.25.self_attn.q_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 178 |
+
"model.layers.25.self_attn.v_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 179 |
+
"model.layers.26.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
|
| 180 |
+
"model.layers.26.mlp.down_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 181 |
+
"model.layers.26.mlp.gate_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 182 |
+
"model.layers.26.mlp.up_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 183 |
+
"model.layers.26.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
|
| 184 |
+
"model.layers.26.self_attn.k_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 185 |
+
"model.layers.26.self_attn.o_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 186 |
+
"model.layers.26.self_attn.q_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 187 |
+
"model.layers.26.self_attn.v_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 188 |
+
"model.layers.27.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
|
| 189 |
+
"model.layers.27.mlp.down_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 190 |
+
"model.layers.27.mlp.gate_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 191 |
+
"model.layers.27.mlp.up_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 192 |
+
"model.layers.27.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
|
| 193 |
+
"model.layers.27.self_attn.k_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 194 |
+
"model.layers.27.self_attn.o_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 195 |
+
"model.layers.27.self_attn.q_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 196 |
+
"model.layers.27.self_attn.v_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 197 |
+
"model.layers.28.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
|
| 198 |
+
"model.layers.28.mlp.down_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 199 |
+
"model.layers.28.mlp.gate_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 200 |
+
"model.layers.28.mlp.up_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 201 |
+
"model.layers.28.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
|
| 202 |
+
"model.layers.28.self_attn.k_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 203 |
+
"model.layers.28.self_attn.o_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 204 |
+
"model.layers.28.self_attn.q_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 205 |
+
"model.layers.28.self_attn.v_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 206 |
+
"model.layers.29.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
|
| 207 |
+
"model.layers.29.mlp.down_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 208 |
+
"model.layers.29.mlp.gate_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 209 |
+
"model.layers.29.mlp.up_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 210 |
+
"model.layers.29.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
|
| 211 |
+
"model.layers.29.self_attn.k_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 212 |
+
"model.layers.29.self_attn.o_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 213 |
+
"model.layers.29.self_attn.q_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 214 |
+
"model.layers.29.self_attn.v_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 215 |
+
"model.layers.3.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
| 216 |
+
"model.layers.3.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 217 |
+
"model.layers.3.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 218 |
+
"model.layers.3.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 219 |
+
"model.layers.3.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
| 220 |
+
"model.layers.3.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 221 |
+
"model.layers.3.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 222 |
+
"model.layers.3.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 223 |
+
"model.layers.3.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 224 |
+
"model.layers.30.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
|
| 225 |
+
"model.layers.30.mlp.down_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 226 |
+
"model.layers.30.mlp.gate_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 227 |
+
"model.layers.30.mlp.up_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 228 |
+
"model.layers.30.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
|
| 229 |
+
"model.layers.30.self_attn.k_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 230 |
+
"model.layers.30.self_attn.o_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 231 |
+
"model.layers.30.self_attn.q_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 232 |
+
"model.layers.30.self_attn.v_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 233 |
+
"model.layers.31.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
|
| 234 |
+
"model.layers.31.mlp.down_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 235 |
+
"model.layers.31.mlp.gate_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 236 |
+
"model.layers.31.mlp.up_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 237 |
+
"model.layers.31.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
|
| 238 |
+
"model.layers.31.self_attn.k_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 239 |
+
"model.layers.31.self_attn.o_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 240 |
+
"model.layers.31.self_attn.q_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 241 |
+
"model.layers.31.self_attn.v_proj.weight": "pytorch_model-00002-of-00002.bin",
|
| 242 |
+
"model.layers.4.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
| 243 |
+
"model.layers.4.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 244 |
+
"model.layers.4.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 245 |
+
"model.layers.4.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 246 |
+
"model.layers.4.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
| 247 |
+
"model.layers.4.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 248 |
+
"model.layers.4.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 249 |
+
"model.layers.4.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 250 |
+
"model.layers.4.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 251 |
+
"model.layers.5.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
| 252 |
+
"model.layers.5.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 253 |
+
"model.layers.5.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 254 |
+
"model.layers.5.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 255 |
+
"model.layers.5.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
| 256 |
+
"model.layers.5.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 257 |
+
"model.layers.5.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 258 |
+
"model.layers.5.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 259 |
+
"model.layers.5.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 260 |
+
"model.layers.6.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
| 261 |
+
"model.layers.6.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 262 |
+
"model.layers.6.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 263 |
+
"model.layers.6.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 264 |
+
"model.layers.6.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
| 265 |
+
"model.layers.6.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 266 |
+
"model.layers.6.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 267 |
+
"model.layers.6.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 268 |
+
"model.layers.6.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 269 |
+
"model.layers.7.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
| 270 |
+
"model.layers.7.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 271 |
+
"model.layers.7.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 272 |
+
"model.layers.7.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 273 |
+
"model.layers.7.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
| 274 |
+
"model.layers.7.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 275 |
+
"model.layers.7.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 276 |
+
"model.layers.7.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 277 |
+
"model.layers.7.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 278 |
+
"model.layers.8.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
| 279 |
+
"model.layers.8.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 280 |
+
"model.layers.8.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 281 |
+
"model.layers.8.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 282 |
+
"model.layers.8.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
| 283 |
+
"model.layers.8.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 284 |
+
"model.layers.8.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 285 |
+
"model.layers.8.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 286 |
+
"model.layers.8.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 287 |
+
"model.layers.9.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
| 288 |
+
"model.layers.9.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 289 |
+
"model.layers.9.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 290 |
+
"model.layers.9.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 291 |
+
"model.layers.9.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
| 292 |
+
"model.layers.9.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 293 |
+
"model.layers.9.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 294 |
+
"model.layers.9.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 295 |
+
"model.layers.9.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
| 296 |
+
"model.norm.weight": "pytorch_model-00002-of-00002.bin"
|
| 297 |
+
}
|
| 298 |
+
}
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": {
|
| 3 |
+
"content": "<s>",
|
| 4 |
+
"lstrip": false,
|
| 5 |
+
"normalized": false,
|
| 6 |
+
"rstrip": false,
|
| 7 |
+
"single_word": false
|
| 8 |
+
},
|
| 9 |
+
"eos_token": {
|
| 10 |
+
"content": "</s>",
|
| 11 |
+
"lstrip": false,
|
| 12 |
+
"normalized": false,
|
| 13 |
+
"rstrip": false,
|
| 14 |
+
"single_word": false
|
| 15 |
+
},
|
| 16 |
+
"pad_token": "<unk>",
|
| 17 |
+
"unk_token": {
|
| 18 |
+
"content": "<unk>",
|
| 19 |
+
"lstrip": false,
|
| 20 |
+
"normalized": false,
|
| 21 |
+
"rstrip": false,
|
| 22 |
+
"single_word": false
|
| 23 |
+
}
|
| 24 |
+
}
|
tokenizer.model
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dadfd56d766715c61d2ef780a525ab43b8e6da4de6865bda3d95fdef5e134055
|
| 3 |
+
size 493443
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_bos_token": true,
|
| 3 |
+
"add_eos_token": false,
|
| 4 |
+
"added_tokens_decoder": {
|
| 5 |
+
"0": {
|
| 6 |
+
"content": "<unk>",
|
| 7 |
+
"lstrip": false,
|
| 8 |
+
"normalized": false,
|
| 9 |
+
"rstrip": false,
|
| 10 |
+
"single_word": false,
|
| 11 |
+
"special": true
|
| 12 |
+
},
|
| 13 |
+
"1": {
|
| 14 |
+
"content": "<s>",
|
| 15 |
+
"lstrip": false,
|
| 16 |
+
"normalized": false,
|
| 17 |
+
"rstrip": false,
|
| 18 |
+
"single_word": false,
|
| 19 |
+
"special": true
|
| 20 |
+
},
|
| 21 |
+
"2": {
|
| 22 |
+
"content": "</s>",
|
| 23 |
+
"lstrip": false,
|
| 24 |
+
"normalized": false,
|
| 25 |
+
"rstrip": false,
|
| 26 |
+
"single_word": false,
|
| 27 |
+
"special": true
|
| 28 |
+
}
|
| 29 |
+
},
|
| 30 |
+
"additional_special_tokens": [],
|
| 31 |
+
"bos_token": "<s>",
|
| 32 |
+
"clean_up_tokenization_spaces": false,
|
| 33 |
+
"eos_token": "</s>",
|
| 34 |
+
"legacy": true,
|
| 35 |
+
"model_max_length": 2048,
|
| 36 |
+
"pad_token": "<unk>",
|
| 37 |
+
"padding_side": "left",
|
| 38 |
+
"sp_model_kwargs": {},
|
| 39 |
+
"spaces_between_special_tokens": false,
|
| 40 |
+
"tokenizer_class": "LlamaTokenizer",
|
| 41 |
+
"unk_token": "<unk>",
|
| 42 |
+
"use_default_system_prompt": false
|
| 43 |
+
}
|
trainer_state.json
ADDED
|
@@ -0,0 +1,712 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_metric": null,
|
| 3 |
+
"best_model_checkpoint": null,
|
| 4 |
+
"epoch": 5.955918367346939,
|
| 5 |
+
"eval_steps": 50.0,
|
| 6 |
+
"global_step": 114,
|
| 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.05,
|
| 13 |
+
"learning_rate": 1.6666666666666667e-06,
|
| 14 |
+
"loss": 1.8797,
|
| 15 |
+
"step": 1
|
| 16 |
+
},
|
| 17 |
+
{
|
| 18 |
+
"epoch": 0.1,
|
| 19 |
+
"learning_rate": 3.3333333333333333e-06,
|
| 20 |
+
"loss": 1.0534,
|
| 21 |
+
"step": 2
|
| 22 |
+
},
|
| 23 |
+
{
|
| 24 |
+
"epoch": 0.16,
|
| 25 |
+
"learning_rate": 5e-06,
|
| 26 |
+
"loss": 0.8717,
|
| 27 |
+
"step": 3
|
| 28 |
+
},
|
| 29 |
+
{
|
| 30 |
+
"epoch": 0.21,
|
| 31 |
+
"learning_rate": 6.666666666666667e-06,
|
| 32 |
+
"loss": 1.7959,
|
| 33 |
+
"step": 4
|
| 34 |
+
},
|
| 35 |
+
{
|
| 36 |
+
"epoch": 0.26,
|
| 37 |
+
"learning_rate": 8.333333333333334e-06,
|
| 38 |
+
"loss": 3.2059,
|
| 39 |
+
"step": 5
|
| 40 |
+
},
|
| 41 |
+
{
|
| 42 |
+
"epoch": 0.31,
|
| 43 |
+
"learning_rate": 1e-05,
|
| 44 |
+
"loss": 0.8372,
|
| 45 |
+
"step": 6
|
| 46 |
+
},
|
| 47 |
+
{
|
| 48 |
+
"epoch": 0.37,
|
| 49 |
+
"learning_rate": 1.1666666666666668e-05,
|
| 50 |
+
"loss": 1.1969,
|
| 51 |
+
"step": 7
|
| 52 |
+
},
|
| 53 |
+
{
|
| 54 |
+
"epoch": 0.42,
|
| 55 |
+
"learning_rate": 1.3333333333333333e-05,
|
| 56 |
+
"loss": 1.254,
|
| 57 |
+
"step": 8
|
| 58 |
+
},
|
| 59 |
+
{
|
| 60 |
+
"epoch": 0.47,
|
| 61 |
+
"learning_rate": 1.5000000000000002e-05,
|
| 62 |
+
"loss": 1.1179,
|
| 63 |
+
"step": 9
|
| 64 |
+
},
|
| 65 |
+
{
|
| 66 |
+
"epoch": 0.52,
|
| 67 |
+
"learning_rate": 1.6666666666666667e-05,
|
| 68 |
+
"loss": 1.1814,
|
| 69 |
+
"step": 10
|
| 70 |
+
},
|
| 71 |
+
{
|
| 72 |
+
"epoch": 0.57,
|
| 73 |
+
"learning_rate": 1.8333333333333333e-05,
|
| 74 |
+
"loss": 1.347,
|
| 75 |
+
"step": 11
|
| 76 |
+
},
|
| 77 |
+
{
|
| 78 |
+
"epoch": 0.63,
|
| 79 |
+
"learning_rate": 2e-05,
|
| 80 |
+
"loss": 1.7794,
|
| 81 |
+
"step": 12
|
| 82 |
+
},
|
| 83 |
+
{
|
| 84 |
+
"epoch": 0.68,
|
| 85 |
+
"learning_rate": 1.999525719713366e-05,
|
| 86 |
+
"loss": 1.8954,
|
| 87 |
+
"step": 13
|
| 88 |
+
},
|
| 89 |
+
{
|
| 90 |
+
"epoch": 0.73,
|
| 91 |
+
"learning_rate": 1.9981033287370443e-05,
|
| 92 |
+
"loss": 2.2458,
|
| 93 |
+
"step": 14
|
| 94 |
+
},
|
| 95 |
+
{
|
| 96 |
+
"epoch": 0.78,
|
| 97 |
+
"learning_rate": 1.9957341762950346e-05,
|
| 98 |
+
"loss": 3.2685,
|
| 99 |
+
"step": 15
|
| 100 |
+
},
|
| 101 |
+
{
|
| 102 |
+
"epoch": 0.84,
|
| 103 |
+
"learning_rate": 1.992420509671936e-05,
|
| 104 |
+
"loss": 0.7298,
|
| 105 |
+
"step": 16
|
| 106 |
+
},
|
| 107 |
+
{
|
| 108 |
+
"epoch": 0.89,
|
| 109 |
+
"learning_rate": 1.9881654720812594e-05,
|
| 110 |
+
"loss": 0.9609,
|
| 111 |
+
"step": 17
|
| 112 |
+
},
|
| 113 |
+
{
|
| 114 |
+
"epoch": 0.94,
|
| 115 |
+
"learning_rate": 1.982973099683902e-05,
|
| 116 |
+
"loss": 1.4588,
|
| 117 |
+
"step": 18
|
| 118 |
+
},
|
| 119 |
+
{
|
| 120 |
+
"epoch": 0.99,
|
| 121 |
+
"learning_rate": 1.9768483177596008e-05,
|
| 122 |
+
"loss": 2.8982,
|
| 123 |
+
"step": 19
|
| 124 |
+
},
|
| 125 |
+
{
|
| 126 |
+
"epoch": 1.04,
|
| 127 |
+
"learning_rate": 1.9697969360350098e-05,
|
| 128 |
+
"loss": 2.4402,
|
| 129 |
+
"step": 20
|
| 130 |
+
},
|
| 131 |
+
{
|
| 132 |
+
"epoch": 1.1,
|
| 133 |
+
"learning_rate": 1.961825643172819e-05,
|
| 134 |
+
"loss": 1.1163,
|
| 135 |
+
"step": 21
|
| 136 |
+
},
|
| 137 |
+
{
|
| 138 |
+
"epoch": 1.15,
|
| 139 |
+
"learning_rate": 1.9529420004271568e-05,
|
| 140 |
+
"loss": 0.8707,
|
| 141 |
+
"step": 22
|
| 142 |
+
},
|
| 143 |
+
{
|
| 144 |
+
"epoch": 1.2,
|
| 145 |
+
"learning_rate": 1.9431544344712776e-05,
|
| 146 |
+
"loss": 1.7509,
|
| 147 |
+
"step": 23
|
| 148 |
+
},
|
| 149 |
+
{
|
| 150 |
+
"epoch": 1.25,
|
| 151 |
+
"learning_rate": 1.932472229404356e-05,
|
| 152 |
+
"loss": 2.3267,
|
| 153 |
+
"step": 24
|
| 154 |
+
},
|
| 155 |
+
{
|
| 156 |
+
"epoch": 1.31,
|
| 157 |
+
"learning_rate": 1.920905517944954e-05,
|
| 158 |
+
"loss": 0.9076,
|
| 159 |
+
"step": 25
|
| 160 |
+
},
|
| 161 |
+
{
|
| 162 |
+
"epoch": 1.36,
|
| 163 |
+
"learning_rate": 1.9084652718195237e-05,
|
| 164 |
+
"loss": 1.1937,
|
| 165 |
+
"step": 26
|
| 166 |
+
},
|
| 167 |
+
{
|
| 168 |
+
"epoch": 1.41,
|
| 169 |
+
"learning_rate": 1.8951632913550625e-05,
|
| 170 |
+
"loss": 1.3822,
|
| 171 |
+
"step": 27
|
| 172 |
+
},
|
| 173 |
+
{
|
| 174 |
+
"epoch": 1.46,
|
| 175 |
+
"learning_rate": 1.8810121942857848e-05,
|
| 176 |
+
"loss": 0.9578,
|
| 177 |
+
"step": 28
|
| 178 |
+
},
|
| 179 |
+
{
|
| 180 |
+
"epoch": 1.52,
|
| 181 |
+
"learning_rate": 1.866025403784439e-05,
|
| 182 |
+
"loss": 1.2731,
|
| 183 |
+
"step": 29
|
| 184 |
+
},
|
| 185 |
+
{
|
| 186 |
+
"epoch": 1.57,
|
| 187 |
+
"learning_rate": 1.8502171357296144e-05,
|
| 188 |
+
"loss": 1.0392,
|
| 189 |
+
"step": 30
|
| 190 |
+
},
|
| 191 |
+
{
|
| 192 |
+
"epoch": 1.62,
|
| 193 |
+
"learning_rate": 1.8336023852211197e-05,
|
| 194 |
+
"loss": 1.1563,
|
| 195 |
+
"step": 31
|
| 196 |
+
},
|
| 197 |
+
{
|
| 198 |
+
"epoch": 1.67,
|
| 199 |
+
"learning_rate": 1.816196912356222e-05,
|
| 200 |
+
"loss": 2.1663,
|
| 201 |
+
"step": 32
|
| 202 |
+
},
|
| 203 |
+
{
|
| 204 |
+
"epoch": 1.72,
|
| 205 |
+
"learning_rate": 1.7980172272802398e-05,
|
| 206 |
+
"loss": 0.902,
|
| 207 |
+
"step": 33
|
| 208 |
+
},
|
| 209 |
+
{
|
| 210 |
+
"epoch": 1.78,
|
| 211 |
+
"learning_rate": 1.7790805745256703e-05,
|
| 212 |
+
"loss": 3.3316,
|
| 213 |
+
"step": 34
|
| 214 |
+
},
|
| 215 |
+
{
|
| 216 |
+
"epoch": 1.83,
|
| 217 |
+
"learning_rate": 1.7594049166547073e-05,
|
| 218 |
+
"loss": 0.6502,
|
| 219 |
+
"step": 35
|
| 220 |
+
},
|
| 221 |
+
{
|
| 222 |
+
"epoch": 1.88,
|
| 223 |
+
"learning_rate": 1.7390089172206594e-05,
|
| 224 |
+
"loss": 0.8059,
|
| 225 |
+
"step": 36
|
| 226 |
+
},
|
| 227 |
+
{
|
| 228 |
+
"epoch": 1.93,
|
| 229 |
+
"learning_rate": 1.717911923064442e-05,
|
| 230 |
+
"loss": 1.1848,
|
| 231 |
+
"step": 37
|
| 232 |
+
},
|
| 233 |
+
{
|
| 234 |
+
"epoch": 1.99,
|
| 235 |
+
"learning_rate": 1.696133945962927e-05,
|
| 236 |
+
"loss": 2.206,
|
| 237 |
+
"step": 38
|
| 238 |
+
},
|
| 239 |
+
{
|
| 240 |
+
"epoch": 2.04,
|
| 241 |
+
"learning_rate": 1.6736956436465573e-05,
|
| 242 |
+
"loss": 2.4701,
|
| 243 |
+
"step": 39
|
| 244 |
+
},
|
| 245 |
+
{
|
| 246 |
+
"epoch": 2.09,
|
| 247 |
+
"learning_rate": 1.650618300204242e-05,
|
| 248 |
+
"loss": 0.6776,
|
| 249 |
+
"step": 40
|
| 250 |
+
},
|
| 251 |
+
{
|
| 252 |
+
"epoch": 2.14,
|
| 253 |
+
"learning_rate": 1.626923805894107e-05,
|
| 254 |
+
"loss": 0.7389,
|
| 255 |
+
"step": 41
|
| 256 |
+
},
|
| 257 |
+
{
|
| 258 |
+
"epoch": 2.19,
|
| 259 |
+
"learning_rate": 1.6026346363792565e-05,
|
| 260 |
+
"loss": 1.3054,
|
| 261 |
+
"step": 42
|
| 262 |
+
},
|
| 263 |
+
{
|
| 264 |
+
"epoch": 2.25,
|
| 265 |
+
"learning_rate": 1.5777738314082514e-05,
|
| 266 |
+
"loss": 1.8761,
|
| 267 |
+
"step": 43
|
| 268 |
+
},
|
| 269 |
+
{
|
| 270 |
+
"epoch": 2.3,
|
| 271 |
+
"learning_rate": 1.552364972960506e-05,
|
| 272 |
+
"loss": 0.6992,
|
| 273 |
+
"step": 44
|
| 274 |
+
},
|
| 275 |
+
{
|
| 276 |
+
"epoch": 2.35,
|
| 277 |
+
"learning_rate": 1.526432162877356e-05,
|
| 278 |
+
"loss": 0.9598,
|
| 279 |
+
"step": 45
|
| 280 |
+
},
|
| 281 |
+
{
|
| 282 |
+
"epoch": 2.4,
|
| 283 |
+
"learning_rate": 1.5000000000000002e-05,
|
| 284 |
+
"loss": 0.915,
|
| 285 |
+
"step": 46
|
| 286 |
+
},
|
| 287 |
+
{
|
| 288 |
+
"epoch": 2.46,
|
| 289 |
+
"learning_rate": 1.4730935568360103e-05,
|
| 290 |
+
"loss": 0.6342,
|
| 291 |
+
"step": 47
|
| 292 |
+
},
|
| 293 |
+
{
|
| 294 |
+
"epoch": 2.51,
|
| 295 |
+
"learning_rate": 1.4457383557765385e-05,
|
| 296 |
+
"loss": 1.183,
|
| 297 |
+
"step": 48
|
| 298 |
+
},
|
| 299 |
+
{
|
| 300 |
+
"epoch": 2.56,
|
| 301 |
+
"learning_rate": 1.4179603448867836e-05,
|
| 302 |
+
"loss": 0.4343,
|
| 303 |
+
"step": 49
|
| 304 |
+
},
|
| 305 |
+
{
|
| 306 |
+
"epoch": 2.61,
|
| 307 |
+
"learning_rate": 1.3897858732926794e-05,
|
| 308 |
+
"loss": 1.1305,
|
| 309 |
+
"step": 50
|
| 310 |
+
},
|
| 311 |
+
{
|
| 312 |
+
"epoch": 2.66,
|
| 313 |
+
"learning_rate": 1.3612416661871532e-05,
|
| 314 |
+
"loss": 1.8615,
|
| 315 |
+
"step": 51
|
| 316 |
+
},
|
| 317 |
+
{
|
| 318 |
+
"epoch": 2.72,
|
| 319 |
+
"learning_rate": 1.3323547994796597e-05,
|
| 320 |
+
"loss": 0.4561,
|
| 321 |
+
"step": 52
|
| 322 |
+
},
|
| 323 |
+
{
|
| 324 |
+
"epoch": 2.77,
|
| 325 |
+
"learning_rate": 1.3031526741130435e-05,
|
| 326 |
+
"loss": 1.5047,
|
| 327 |
+
"step": 53
|
| 328 |
+
},
|
| 329 |
+
{
|
| 330 |
+
"epoch": 2.82,
|
| 331 |
+
"learning_rate": 1.2736629900720832e-05,
|
| 332 |
+
"loss": 0.4501,
|
| 333 |
+
"step": 54
|
| 334 |
+
},
|
| 335 |
+
{
|
| 336 |
+
"epoch": 2.87,
|
| 337 |
+
"learning_rate": 1.2439137201083772e-05,
|
| 338 |
+
"loss": 0.5707,
|
| 339 |
+
"step": 55
|
| 340 |
+
},
|
| 341 |
+
{
|
| 342 |
+
"epoch": 2.93,
|
| 343 |
+
"learning_rate": 1.2139330832064975e-05,
|
| 344 |
+
"loss": 0.6563,
|
| 345 |
+
"step": 56
|
| 346 |
+
},
|
| 347 |
+
{
|
| 348 |
+
"epoch": 2.98,
|
| 349 |
+
"learning_rate": 1.1837495178165706e-05,
|
| 350 |
+
"loss": 2.1239,
|
| 351 |
+
"step": 57
|
| 352 |
+
},
|
| 353 |
+
{
|
| 354 |
+
"epoch": 3.03,
|
| 355 |
+
"learning_rate": 1.1533916548786856e-05,
|
| 356 |
+
"loss": 1.5156,
|
| 357 |
+
"step": 58
|
| 358 |
+
},
|
| 359 |
+
{
|
| 360 |
+
"epoch": 3.08,
|
| 361 |
+
"learning_rate": 1.1228882906647142e-05,
|
| 362 |
+
"loss": 0.4064,
|
| 363 |
+
"step": 59
|
| 364 |
+
},
|
| 365 |
+
{
|
| 366 |
+
"epoch": 3.13,
|
| 367 |
+
"learning_rate": 1.092268359463302e-05,
|
| 368 |
+
"loss": 0.4697,
|
| 369 |
+
"step": 60
|
| 370 |
+
},
|
| 371 |
+
{
|
| 372 |
+
"epoch": 3.19,
|
| 373 |
+
"learning_rate": 1.0615609061339431e-05,
|
| 374 |
+
"loss": 0.6203,
|
| 375 |
+
"step": 61
|
| 376 |
+
},
|
| 377 |
+
{
|
| 378 |
+
"epoch": 3.24,
|
| 379 |
+
"learning_rate": 1.0307950585561705e-05,
|
| 380 |
+
"loss": 1.0488,
|
| 381 |
+
"step": 62
|
| 382 |
+
},
|
| 383 |
+
{
|
| 384 |
+
"epoch": 3.29,
|
| 385 |
+
"learning_rate": 1e-05,
|
| 386 |
+
"loss": 0.5809,
|
| 387 |
+
"step": 63
|
| 388 |
+
},
|
| 389 |
+
{
|
| 390 |
+
"epoch": 3.34,
|
| 391 |
+
"learning_rate": 9.692049414438298e-06,
|
| 392 |
+
"loss": 0.5637,
|
| 393 |
+
"step": 64
|
| 394 |
+
},
|
| 395 |
+
{
|
| 396 |
+
"epoch": 3.4,
|
| 397 |
+
"learning_rate": 9.384390938660572e-06,
|
| 398 |
+
"loss": 0.6708,
|
| 399 |
+
"step": 65
|
| 400 |
+
},
|
| 401 |
+
{
|
| 402 |
+
"epoch": 3.45,
|
| 403 |
+
"learning_rate": 9.07731640536698e-06,
|
| 404 |
+
"loss": 0.4084,
|
| 405 |
+
"step": 66
|
| 406 |
+
},
|
| 407 |
+
{
|
| 408 |
+
"epoch": 3.5,
|
| 409 |
+
"learning_rate": 8.771117093352861e-06,
|
| 410 |
+
"loss": 0.6342,
|
| 411 |
+
"step": 67
|
| 412 |
+
},
|
| 413 |
+
{
|
| 414 |
+
"epoch": 3.55,
|
| 415 |
+
"learning_rate": 8.466083451213145e-06,
|
| 416 |
+
"loss": 0.3105,
|
| 417 |
+
"step": 68
|
| 418 |
+
},
|
| 419 |
+
{
|
| 420 |
+
"epoch": 3.6,
|
| 421 |
+
"learning_rate": 8.162504821834296e-06,
|
| 422 |
+
"loss": 0.7767,
|
| 423 |
+
"step": 69
|
| 424 |
+
},
|
| 425 |
+
{
|
| 426 |
+
"epoch": 3.66,
|
| 427 |
+
"learning_rate": 7.860669167935028e-06,
|
| 428 |
+
"loss": 1.0683,
|
| 429 |
+
"step": 70
|
| 430 |
+
},
|
| 431 |
+
{
|
| 432 |
+
"epoch": 3.71,
|
| 433 |
+
"learning_rate": 7.560862798916229e-06,
|
| 434 |
+
"loss": 0.3493,
|
| 435 |
+
"step": 71
|
| 436 |
+
},
|
| 437 |
+
{
|
| 438 |
+
"epoch": 3.76,
|
| 439 |
+
"learning_rate": 7.263370099279173e-06,
|
| 440 |
+
"loss": 0.7215,
|
| 441 |
+
"step": 72
|
| 442 |
+
},
|
| 443 |
+
{
|
| 444 |
+
"epoch": 3.81,
|
| 445 |
+
"learning_rate": 6.968473258869566e-06,
|
| 446 |
+
"loss": 0.364,
|
| 447 |
+
"step": 73
|
| 448 |
+
},
|
| 449 |
+
{
|
| 450 |
+
"epoch": 3.87,
|
| 451 |
+
"learning_rate": 6.6764520052034054e-06,
|
| 452 |
+
"loss": 0.3022,
|
| 453 |
+
"step": 74
|
| 454 |
+
},
|
| 455 |
+
{
|
| 456 |
+
"epoch": 3.92,
|
| 457 |
+
"learning_rate": 6.387583338128471e-06,
|
| 458 |
+
"loss": 0.2838,
|
| 459 |
+
"step": 75
|
| 460 |
+
},
|
| 461 |
+
{
|
| 462 |
+
"epoch": 3.97,
|
| 463 |
+
"learning_rate": 6.102141267073207e-06,
|
| 464 |
+
"loss": 1.0471,
|
| 465 |
+
"step": 76
|
| 466 |
+
},
|
| 467 |
+
{
|
| 468 |
+
"epoch": 4.02,
|
| 469 |
+
"learning_rate": 5.82039655113217e-06,
|
| 470 |
+
"loss": 1.0706,
|
| 471 |
+
"step": 77
|
| 472 |
+
},
|
| 473 |
+
{
|
| 474 |
+
"epoch": 4.08,
|
| 475 |
+
"learning_rate": 5.542616442234618e-06,
|
| 476 |
+
"loss": 0.2637,
|
| 477 |
+
"step": 78
|
| 478 |
+
},
|
| 479 |
+
{
|
| 480 |
+
"epoch": 4.13,
|
| 481 |
+
"learning_rate": 5.269064431639901e-06,
|
| 482 |
+
"loss": 0.2863,
|
| 483 |
+
"step": 79
|
| 484 |
+
},
|
| 485 |
+
{
|
| 486 |
+
"epoch": 4.18,
|
| 487 |
+
"learning_rate": 5.000000000000003e-06,
|
| 488 |
+
"loss": 0.427,
|
| 489 |
+
"step": 80
|
| 490 |
+
},
|
| 491 |
+
{
|
| 492 |
+
"epoch": 4.23,
|
| 493 |
+
"learning_rate": 4.7356783712264405e-06,
|
| 494 |
+
"loss": 0.8951,
|
| 495 |
+
"step": 81
|
| 496 |
+
},
|
| 497 |
+
{
|
| 498 |
+
"epoch": 4.28,
|
| 499 |
+
"learning_rate": 4.476350270394942e-06,
|
| 500 |
+
"loss": 0.4509,
|
| 501 |
+
"step": 82
|
| 502 |
+
},
|
| 503 |
+
{
|
| 504 |
+
"epoch": 4.34,
|
| 505 |
+
"learning_rate": 4.222261685917489e-06,
|
| 506 |
+
"loss": 0.4164,
|
| 507 |
+
"step": 83
|
| 508 |
+
},
|
| 509 |
+
{
|
| 510 |
+
"epoch": 4.39,
|
| 511 |
+
"learning_rate": 3.973653636207437e-06,
|
| 512 |
+
"loss": 0.4345,
|
| 513 |
+
"step": 84
|
| 514 |
+
},
|
| 515 |
+
{
|
| 516 |
+
"epoch": 4.44,
|
| 517 |
+
"learning_rate": 3.730761941058938e-06,
|
| 518 |
+
"loss": 0.2924,
|
| 519 |
+
"step": 85
|
| 520 |
+
},
|
| 521 |
+
{
|
| 522 |
+
"epoch": 4.49,
|
| 523 |
+
"learning_rate": 3.493816997957582e-06,
|
| 524 |
+
"loss": 0.5268,
|
| 525 |
+
"step": 86
|
| 526 |
+
},
|
| 527 |
+
{
|
| 528 |
+
"epoch": 4.55,
|
| 529 |
+
"learning_rate": 3.2630435635344283e-06,
|
| 530 |
+
"loss": 0.2499,
|
| 531 |
+
"step": 87
|
| 532 |
+
},
|
| 533 |
+
{
|
| 534 |
+
"epoch": 4.6,
|
| 535 |
+
"learning_rate": 3.0386605403707347e-06,
|
| 536 |
+
"loss": 0.5463,
|
| 537 |
+
"step": 88
|
| 538 |
+
},
|
| 539 |
+
{
|
| 540 |
+
"epoch": 4.65,
|
| 541 |
+
"learning_rate": 2.820880769355582e-06,
|
| 542 |
+
"loss": 0.8528,
|
| 543 |
+
"step": 89
|
| 544 |
+
},
|
| 545 |
+
{
|
| 546 |
+
"epoch": 4.7,
|
| 547 |
+
"learning_rate": 2.6099108277934105e-06,
|
| 548 |
+
"loss": 0.2086,
|
| 549 |
+
"step": 90
|
| 550 |
+
},
|
| 551 |
+
{
|
| 552 |
+
"epoch": 4.75,
|
| 553 |
+
"learning_rate": 2.405950833452928e-06,
|
| 554 |
+
"loss": 0.5901,
|
| 555 |
+
"step": 91
|
| 556 |
+
},
|
| 557 |
+
{
|
| 558 |
+
"epoch": 4.81,
|
| 559 |
+
"learning_rate": 2.209194254743295e-06,
|
| 560 |
+
"loss": 0.3309,
|
| 561 |
+
"step": 92
|
| 562 |
+
},
|
| 563 |
+
{
|
| 564 |
+
"epoch": 4.86,
|
| 565 |
+
"learning_rate": 2.019827727197605e-06,
|
| 566 |
+
"loss": 0.2144,
|
| 567 |
+
"step": 93
|
| 568 |
+
},
|
| 569 |
+
{
|
| 570 |
+
"epoch": 4.91,
|
| 571 |
+
"learning_rate": 1.8380308764377841e-06,
|
| 572 |
+
"loss": 0.208,
|
| 573 |
+
"step": 94
|
| 574 |
+
},
|
| 575 |
+
{
|
| 576 |
+
"epoch": 4.96,
|
| 577 |
+
"learning_rate": 1.663976147788806e-06,
|
| 578 |
+
"loss": 0.9179,
|
| 579 |
+
"step": 95
|
| 580 |
+
},
|
| 581 |
+
{
|
| 582 |
+
"epoch": 5.02,
|
| 583 |
+
"learning_rate": 1.4978286427038602e-06,
|
| 584 |
+
"loss": 0.384,
|
| 585 |
+
"step": 96
|
| 586 |
+
},
|
| 587 |
+
{
|
| 588 |
+
"epoch": 5.07,
|
| 589 |
+
"learning_rate": 1.339745962155613e-06,
|
| 590 |
+
"loss": 0.2262,
|
| 591 |
+
"step": 97
|
| 592 |
+
},
|
| 593 |
+
{
|
| 594 |
+
"epoch": 5.12,
|
| 595 |
+
"learning_rate": 1.1898780571421554e-06,
|
| 596 |
+
"loss": 0.2064,
|
| 597 |
+
"step": 98
|
| 598 |
+
},
|
| 599 |
+
{
|
| 600 |
+
"epoch": 5.17,
|
| 601 |
+
"learning_rate": 1.0483670864493777e-06,
|
| 602 |
+
"loss": 0.2237,
|
| 603 |
+
"step": 99
|
| 604 |
+
},
|
| 605 |
+
{
|
| 606 |
+
"epoch": 5.22,
|
| 607 |
+
"learning_rate": 9.153472818047627e-07,
|
| 608 |
+
"loss": 0.3679,
|
| 609 |
+
"step": 100
|
| 610 |
+
},
|
| 611 |
+
{
|
| 612 |
+
"epoch": 5.28,
|
| 613 |
+
"learning_rate": 7.909448205504633e-07,
|
| 614 |
+
"loss": 0.3021,
|
| 615 |
+
"step": 101
|
| 616 |
+
},
|
| 617 |
+
{
|
| 618 |
+
"epoch": 5.33,
|
| 619 |
+
"learning_rate": 6.752777059564431e-07,
|
| 620 |
+
"loss": 0.3259,
|
| 621 |
+
"step": 102
|
| 622 |
+
},
|
| 623 |
+
{
|
| 624 |
+
"epoch": 5.38,
|
| 625 |
+
"learning_rate": 5.684556552872256e-07,
|
| 626 |
+
"loss": 0.2477,
|
| 627 |
+
"step": 103
|
| 628 |
+
},
|
| 629 |
+
{
|
| 630 |
+
"epoch": 5.43,
|
| 631 |
+
"learning_rate": 4.7057999572843516e-07,
|
| 632 |
+
"loss": 0.1951,
|
| 633 |
+
"step": 104
|
| 634 |
+
},
|
| 635 |
+
{
|
| 636 |
+
"epoch": 5.49,
|
| 637 |
+
"learning_rate": 3.817435682718096e-07,
|
| 638 |
+
"loss": 0.3738,
|
| 639 |
+
"step": 105
|
| 640 |
+
},
|
| 641 |
+
{
|
| 642 |
+
"epoch": 5.54,
|
| 643 |
+
"learning_rate": 3.020306396499062e-07,
|
| 644 |
+
"loss": 0.2194,
|
| 645 |
+
"step": 106
|
| 646 |
+
},
|
| 647 |
+
{
|
| 648 |
+
"epoch": 5.59,
|
| 649 |
+
"learning_rate": 2.315168224039932e-07,
|
| 650 |
+
"loss": 0.4283,
|
| 651 |
+
"step": 107
|
| 652 |
+
},
|
| 653 |
+
{
|
| 654 |
+
"epoch": 5.64,
|
| 655 |
+
"learning_rate": 1.7026900316098217e-07,
|
| 656 |
+
"loss": 0.86,
|
| 657 |
+
"step": 108
|
| 658 |
+
},
|
| 659 |
+
{
|
| 660 |
+
"epoch": 5.69,
|
| 661 |
+
"learning_rate": 1.1834527918740624e-07,
|
| 662 |
+
"loss": 0.1774,
|
| 663 |
+
"step": 109
|
| 664 |
+
},
|
| 665 |
+
{
|
| 666 |
+
"epoch": 5.75,
|
| 667 |
+
"learning_rate": 7.579490328064265e-08,
|
| 668 |
+
"loss": 0.2705,
|
| 669 |
+
"step": 110
|
| 670 |
+
},
|
| 671 |
+
{
|
| 672 |
+
"epoch": 5.8,
|
| 673 |
+
"learning_rate": 4.2658237049655325e-08,
|
| 674 |
+
"loss": 0.3743,
|
| 675 |
+
"step": 111
|
| 676 |
+
},
|
| 677 |
+
{
|
| 678 |
+
"epoch": 5.85,
|
| 679 |
+
"learning_rate": 1.896671262955896e-08,
|
| 680 |
+
"loss": 0.1744,
|
| 681 |
+
"step": 112
|
| 682 |
+
},
|
| 683 |
+
{
|
| 684 |
+
"epoch": 5.9,
|
| 685 |
+
"learning_rate": 4.74280286634099e-09,
|
| 686 |
+
"loss": 0.1446,
|
| 687 |
+
"step": 113
|
| 688 |
+
},
|
| 689 |
+
{
|
| 690 |
+
"epoch": 5.96,
|
| 691 |
+
"learning_rate": 0.0,
|
| 692 |
+
"loss": 0.6711,
|
| 693 |
+
"step": 114
|
| 694 |
+
},
|
| 695 |
+
{
|
| 696 |
+
"epoch": 5.96,
|
| 697 |
+
"step": 114,
|
| 698 |
+
"total_flos": 5.099950184243134e+18,
|
| 699 |
+
"train_loss": 0.9367022931314352,
|
| 700 |
+
"train_runtime": 10489.7515,
|
| 701 |
+
"train_samples_per_second": 5.605,
|
| 702 |
+
"train_steps_per_second": 0.011
|
| 703 |
+
}
|
| 704 |
+
],
|
| 705 |
+
"logging_steps": 1.0,
|
| 706 |
+
"max_steps": 114,
|
| 707 |
+
"num_train_epochs": 6,
|
| 708 |
+
"save_steps": 100,
|
| 709 |
+
"total_flos": 5.099950184243134e+18,
|
| 710 |
+
"trial_name": null,
|
| 711 |
+
"trial_params": null
|
| 712 |
+
}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ff712400c5bcdc839e3a24f63bd9dbd285160537bf97a6c2d13204da5c91fcbe
|
| 3 |
+
size 6072
|