ai-modelscope
commited on
Commit
·
641dd6c
1
Parent(s):
d131fa2
first commit
Browse files- .gitattributes +4 -0
- README.md +66 -3
- added_tokens.json +5 -0
- config.json +29 -0
- configuration.json +1 -0
- generation_config.json +10 -0
- merges.txt +0 -0
- model-00001-of-00004.safetensors +3 -0
- model-00002-of-00004.safetensors +3 -0
- model-00003-of-00004.safetensors +3 -0
- model-00004-of-00004.safetensors +3 -0
- model.safetensors.index.json +346 -0
- sft_args.json +261 -0
- special_tokens_map.json +14 -0
- tokenizer.json +0 -0
- tokenizer_config.json +43 -0
- trainer_state.json +1510 -0
- training_args.bin +3 -0
- vocab.json +0 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,7 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
model-00004-of-00004.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
model-00001-of-00004.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
model-00002-of-00004.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
model-00003-of-00004.safetensors filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
|
@@ -1,3 +1,66 @@
|
|
| 1 |
-
---
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
frameworks:
|
| 3 |
+
- Pytorch
|
| 4 |
+
license: Apache License 2.0
|
| 5 |
+
tasks:
|
| 6 |
+
- text-generation
|
| 7 |
+
|
| 8 |
+
#model-type:
|
| 9 |
+
##如 gpt、phi、llama、chatglm、baichuan 等
|
| 10 |
+
#- gpt
|
| 11 |
+
|
| 12 |
+
#domain:
|
| 13 |
+
##如 nlp、cv、audio、multi-modal
|
| 14 |
+
#- nlp
|
| 15 |
+
|
| 16 |
+
#language:
|
| 17 |
+
##语言代码列表 https://help.aliyun.com/document_detail/215387.html?spm=a2c4g.11186623.0.0.9f8d7467kni6Aa
|
| 18 |
+
#- cn
|
| 19 |
+
|
| 20 |
+
#metrics:
|
| 21 |
+
##如 CIDEr、Blue、ROUGE 等
|
| 22 |
+
#- CIDEr
|
| 23 |
+
|
| 24 |
+
#tags:
|
| 25 |
+
##各种自定义,包括 pretrained、fine-tuned、instruction-tuned、RL-tuned 等训练方法和其他
|
| 26 |
+
#- pretrained
|
| 27 |
+
|
| 28 |
+
#tools:
|
| 29 |
+
##如 vllm、fastchat、llamacpp、AdaSeq 等
|
| 30 |
+
#- vllm
|
| 31 |
+
---
|
| 32 |
+
|
| 33 |
+
Fine-tuning the qwen2-7b-instruct model using the [msagent-pro](https://modelscope.cn/datasets/iic/MSAgent-Pro/summary) dataset and the loss_scale technique with [swift](https://github.com/modelscope/swift), the script is as follows:
|
| 34 |
+
```bash
|
| 35 |
+
NPROC_PER_NODE=8 \
|
| 36 |
+
CUDA_VISIBLE_DEVICES=0,1,2,3,4,5,6,7 \
|
| 37 |
+
MASTER_PORT=29500 \
|
| 38 |
+
swift sft \
|
| 39 |
+
--model_type qwen2-7b-instruct \
|
| 40 |
+
--learning_rate 2e-6 \
|
| 41 |
+
--sft_type full \
|
| 42 |
+
--dataset msagent-pro \
|
| 43 |
+
--gradient_checkpointing true \
|
| 44 |
+
--gradient_accumulation_steps 8 \
|
| 45 |
+
--deepspeed default-zero3 \
|
| 46 |
+
--use_loss_scale true \
|
| 47 |
+
--save_strategy epoch \
|
| 48 |
+
--batch_size 1 \
|
| 49 |
+
--num_train_epochs 1 \
|
| 50 |
+
--max_length 4096 \
|
| 51 |
+
--preprocess_num_proc 4 \
|
| 52 |
+
--use_loss_scale true \
|
| 53 |
+
--loss_scale_config_path agent-flan \
|
| 54 |
+
--ddp_backend nccl \
|
| 55 |
+
```
|
| 56 |
+
|
| 57 |
+
Comparison with the Original Model on the ToolBench Evaluation Set
|
| 58 |
+
|
| 59 |
+
| Model | ToolBench (in-domain) | | | | | ToolBench (out-of-domain) | | | |
|
| 60 |
+
|-------------------------|----------------------------------------------|-------|-------|-------|-------|--------------------------------------------|-------|-------|-------|
|
| 61 |
+
| | Plan.EM | Act.EM| HalluRate (lower is better) | Avg.F1 | R-L | Plan.EM | Act.EM| HalluRate (lower is better) | Avg.F1 | R-L |
|
| 62 |
+
| llama3-8b-instruct | 74.11 | 54.74 | 4.16 | 46.53 | 8.51 | 73.17 | 57.67 | 3.84 | 48.58 | 11.23 |
|
| 63 |
+
| llama3-8b-agent-instruct-v2 | **83.37** | **60.01** | **2.58** | **54.41** | **26.34** | **82.57** | **60.14** | **1.79** | **55.25** | **31.34** |
|
| 64 |
+
|
| 65 |
+
For detailed explanations of the evaluation metrics, please refer to [document](https://github.com/modelscope/eval-scope/tree/main/llmuses/third_party/toolbench_static)
|
| 66 |
+
|
added_tokens.json
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"<|endoftext|>": 151643,
|
| 3 |
+
"<|im_end|>": 151645,
|
| 4 |
+
"<|im_start|>": 151644
|
| 5 |
+
}
|
config.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_name_or_path": "/mnt/workspace/hujinghan.hjh/agent/qwen2-7b",
|
| 3 |
+
"architectures": [
|
| 4 |
+
"Qwen2ForCausalLM"
|
| 5 |
+
],
|
| 6 |
+
"attention_dropout": 0.0,
|
| 7 |
+
"bos_token_id": 151643,
|
| 8 |
+
"eos_token_id": 151645,
|
| 9 |
+
"hidden_act": "silu",
|
| 10 |
+
"hidden_size": 3584,
|
| 11 |
+
"initializer_range": 0.02,
|
| 12 |
+
"intermediate_size": 18944,
|
| 13 |
+
"max_length": 8192,
|
| 14 |
+
"max_position_embeddings": 32768,
|
| 15 |
+
"max_window_layers": 28,
|
| 16 |
+
"model_type": "qwen2",
|
| 17 |
+
"num_attention_heads": 28,
|
| 18 |
+
"num_hidden_layers": 28,
|
| 19 |
+
"num_key_value_heads": 4,
|
| 20 |
+
"rms_norm_eps": 1e-06,
|
| 21 |
+
"rope_theta": 1000000.0,
|
| 22 |
+
"sliding_window": 131072,
|
| 23 |
+
"tie_word_embeddings": false,
|
| 24 |
+
"torch_dtype": "bfloat16",
|
| 25 |
+
"transformers_version": "4.41.2",
|
| 26 |
+
"use_cache": false,
|
| 27 |
+
"use_sliding_window": false,
|
| 28 |
+
"vocab_size": 152064
|
| 29 |
+
}
|
configuration.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"framework":"Pytorch","task":"text-generation"}
|
generation_config.json
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"do_sample": true,
|
| 3 |
+
"eos_token_id": 151645,
|
| 4 |
+
"max_new_tokens": 2048,
|
| 5 |
+
"pad_token_id": 151643,
|
| 6 |
+
"temperature": 0.3,
|
| 7 |
+
"top_k": 20,
|
| 8 |
+
"top_p": 0.7,
|
| 9 |
+
"transformers_version": "4.41.2"
|
| 10 |
+
}
|
merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
model-00001-of-00004.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:812b70a2c71c24d6c7fc184d28083b82949c45a9764441e97bbc97d8a3f5272e
|
| 3 |
+
size 4877660776
|
model-00002-of-00004.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ecd1ffdb4cc2107bc33398e08c11189d226739d39b12220fdda6585677521f90
|
| 3 |
+
size 4932751008
|
model-00003-of-00004.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dd81b3ff97bdca69f129eaba2eb10aab3031b861eb80fd9a55c50d18f2457ffb
|
| 3 |
+
size 4330865200
|
model-00004-of-00004.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d52cde21411eb2aa9abb73e0ae37e66df8d0153fb3a9069c0d75bf0c1f01ff03
|
| 3 |
+
size 1089994880
|
model.safetensors.index.json
ADDED
|
@@ -0,0 +1,346 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata": {
|
| 3 |
+
"total_size": 15231233024
|
| 4 |
+
},
|
| 5 |
+
"weight_map": {
|
| 6 |
+
"lm_head.weight": "model-00004-of-00004.safetensors",
|
| 7 |
+
"model.embed_tokens.weight": "model-00001-of-00004.safetensors",
|
| 8 |
+
"model.layers.0.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 9 |
+
"model.layers.0.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 10 |
+
"model.layers.0.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 11 |
+
"model.layers.0.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 12 |
+
"model.layers.0.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 13 |
+
"model.layers.0.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
|
| 14 |
+
"model.layers.0.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 15 |
+
"model.layers.0.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 16 |
+
"model.layers.0.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
|
| 17 |
+
"model.layers.0.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 18 |
+
"model.layers.0.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
|
| 19 |
+
"model.layers.0.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 20 |
+
"model.layers.1.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 21 |
+
"model.layers.1.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 22 |
+
"model.layers.1.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 23 |
+
"model.layers.1.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 24 |
+
"model.layers.1.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 25 |
+
"model.layers.1.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
|
| 26 |
+
"model.layers.1.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 27 |
+
"model.layers.1.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 28 |
+
"model.layers.1.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
|
| 29 |
+
"model.layers.1.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 30 |
+
"model.layers.1.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
|
| 31 |
+
"model.layers.1.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 32 |
+
"model.layers.10.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 33 |
+
"model.layers.10.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 34 |
+
"model.layers.10.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 35 |
+
"model.layers.10.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 36 |
+
"model.layers.10.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 37 |
+
"model.layers.10.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
|
| 38 |
+
"model.layers.10.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 39 |
+
"model.layers.10.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 40 |
+
"model.layers.10.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
|
| 41 |
+
"model.layers.10.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 42 |
+
"model.layers.10.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
|
| 43 |
+
"model.layers.10.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 44 |
+
"model.layers.11.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 45 |
+
"model.layers.11.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 46 |
+
"model.layers.11.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 47 |
+
"model.layers.11.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 48 |
+
"model.layers.11.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 49 |
+
"model.layers.11.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
|
| 50 |
+
"model.layers.11.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 51 |
+
"model.layers.11.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 52 |
+
"model.layers.11.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
|
| 53 |
+
"model.layers.11.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 54 |
+
"model.layers.11.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
|
| 55 |
+
"model.layers.11.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 56 |
+
"model.layers.12.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 57 |
+
"model.layers.12.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 58 |
+
"model.layers.12.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 59 |
+
"model.layers.12.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 60 |
+
"model.layers.12.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 61 |
+
"model.layers.12.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
|
| 62 |
+
"model.layers.12.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 63 |
+
"model.layers.12.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 64 |
+
"model.layers.12.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
|
| 65 |
+
"model.layers.12.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 66 |
+
"model.layers.12.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
|
| 67 |
+
"model.layers.12.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 68 |
+
"model.layers.13.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 69 |
+
"model.layers.13.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 70 |
+
"model.layers.13.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 71 |
+
"model.layers.13.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 72 |
+
"model.layers.13.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 73 |
+
"model.layers.13.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
|
| 74 |
+
"model.layers.13.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 75 |
+
"model.layers.13.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 76 |
+
"model.layers.13.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
|
| 77 |
+
"model.layers.13.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 78 |
+
"model.layers.13.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
|
| 79 |
+
"model.layers.13.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 80 |
+
"model.layers.14.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 81 |
+
"model.layers.14.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 82 |
+
"model.layers.14.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 83 |
+
"model.layers.14.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 84 |
+
"model.layers.14.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 85 |
+
"model.layers.14.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
|
| 86 |
+
"model.layers.14.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 87 |
+
"model.layers.14.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 88 |
+
"model.layers.14.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
|
| 89 |
+
"model.layers.14.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 90 |
+
"model.layers.14.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
|
| 91 |
+
"model.layers.14.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 92 |
+
"model.layers.15.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 93 |
+
"model.layers.15.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 94 |
+
"model.layers.15.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 95 |
+
"model.layers.15.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 96 |
+
"model.layers.15.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 97 |
+
"model.layers.15.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
|
| 98 |
+
"model.layers.15.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 99 |
+
"model.layers.15.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 100 |
+
"model.layers.15.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
|
| 101 |
+
"model.layers.15.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 102 |
+
"model.layers.15.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
|
| 103 |
+
"model.layers.15.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 104 |
+
"model.layers.16.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 105 |
+
"model.layers.16.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 106 |
+
"model.layers.16.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 107 |
+
"model.layers.16.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 108 |
+
"model.layers.16.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 109 |
+
"model.layers.16.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
|
| 110 |
+
"model.layers.16.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 111 |
+
"model.layers.16.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 112 |
+
"model.layers.16.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
|
| 113 |
+
"model.layers.16.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 114 |
+
"model.layers.16.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
|
| 115 |
+
"model.layers.16.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 116 |
+
"model.layers.17.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 117 |
+
"model.layers.17.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 118 |
+
"model.layers.17.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 119 |
+
"model.layers.17.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 120 |
+
"model.layers.17.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 121 |
+
"model.layers.17.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
|
| 122 |
+
"model.layers.17.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 123 |
+
"model.layers.17.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 124 |
+
"model.layers.17.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
|
| 125 |
+
"model.layers.17.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 126 |
+
"model.layers.17.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
|
| 127 |
+
"model.layers.17.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 128 |
+
"model.layers.18.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 129 |
+
"model.layers.18.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 130 |
+
"model.layers.18.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 131 |
+
"model.layers.18.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 132 |
+
"model.layers.18.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 133 |
+
"model.layers.18.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
|
| 134 |
+
"model.layers.18.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 135 |
+
"model.layers.18.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 136 |
+
"model.layers.18.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
|
| 137 |
+
"model.layers.18.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 138 |
+
"model.layers.18.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
|
| 139 |
+
"model.layers.18.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 140 |
+
"model.layers.19.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 141 |
+
"model.layers.19.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 142 |
+
"model.layers.19.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 143 |
+
"model.layers.19.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 144 |
+
"model.layers.19.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 145 |
+
"model.layers.19.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
|
| 146 |
+
"model.layers.19.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 147 |
+
"model.layers.19.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 148 |
+
"model.layers.19.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
|
| 149 |
+
"model.layers.19.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 150 |
+
"model.layers.19.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
|
| 151 |
+
"model.layers.19.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 152 |
+
"model.layers.2.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 153 |
+
"model.layers.2.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 154 |
+
"model.layers.2.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 155 |
+
"model.layers.2.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 156 |
+
"model.layers.2.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 157 |
+
"model.layers.2.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
|
| 158 |
+
"model.layers.2.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 159 |
+
"model.layers.2.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 160 |
+
"model.layers.2.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
|
| 161 |
+
"model.layers.2.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 162 |
+
"model.layers.2.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
|
| 163 |
+
"model.layers.2.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 164 |
+
"model.layers.20.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 165 |
+
"model.layers.20.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 166 |
+
"model.layers.20.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 167 |
+
"model.layers.20.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 168 |
+
"model.layers.20.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 169 |
+
"model.layers.20.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
|
| 170 |
+
"model.layers.20.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 171 |
+
"model.layers.20.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 172 |
+
"model.layers.20.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
|
| 173 |
+
"model.layers.20.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 174 |
+
"model.layers.20.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
|
| 175 |
+
"model.layers.20.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 176 |
+
"model.layers.21.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 177 |
+
"model.layers.21.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 178 |
+
"model.layers.21.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 179 |
+
"model.layers.21.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 180 |
+
"model.layers.21.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 181 |
+
"model.layers.21.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
|
| 182 |
+
"model.layers.21.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 183 |
+
"model.layers.21.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 184 |
+
"model.layers.21.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
|
| 185 |
+
"model.layers.21.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 186 |
+
"model.layers.21.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
|
| 187 |
+
"model.layers.21.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 188 |
+
"model.layers.22.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 189 |
+
"model.layers.22.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 190 |
+
"model.layers.22.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 191 |
+
"model.layers.22.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 192 |
+
"model.layers.22.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 193 |
+
"model.layers.22.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
|
| 194 |
+
"model.layers.22.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 195 |
+
"model.layers.22.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 196 |
+
"model.layers.22.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
|
| 197 |
+
"model.layers.22.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 198 |
+
"model.layers.22.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
|
| 199 |
+
"model.layers.22.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 200 |
+
"model.layers.23.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 201 |
+
"model.layers.23.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 202 |
+
"model.layers.23.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 203 |
+
"model.layers.23.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 204 |
+
"model.layers.23.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 205 |
+
"model.layers.23.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
|
| 206 |
+
"model.layers.23.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 207 |
+
"model.layers.23.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 208 |
+
"model.layers.23.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
|
| 209 |
+
"model.layers.23.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 210 |
+
"model.layers.23.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
|
| 211 |
+
"model.layers.23.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 212 |
+
"model.layers.24.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 213 |
+
"model.layers.24.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 214 |
+
"model.layers.24.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 215 |
+
"model.layers.24.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 216 |
+
"model.layers.24.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 217 |
+
"model.layers.24.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
|
| 218 |
+
"model.layers.24.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 219 |
+
"model.layers.24.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 220 |
+
"model.layers.24.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
|
| 221 |
+
"model.layers.24.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 222 |
+
"model.layers.24.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
|
| 223 |
+
"model.layers.24.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 224 |
+
"model.layers.25.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 225 |
+
"model.layers.25.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 226 |
+
"model.layers.25.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 227 |
+
"model.layers.25.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 228 |
+
"model.layers.25.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 229 |
+
"model.layers.25.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
|
| 230 |
+
"model.layers.25.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 231 |
+
"model.layers.25.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 232 |
+
"model.layers.25.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
|
| 233 |
+
"model.layers.25.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 234 |
+
"model.layers.25.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
|
| 235 |
+
"model.layers.25.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 236 |
+
"model.layers.26.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 237 |
+
"model.layers.26.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 238 |
+
"model.layers.26.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 239 |
+
"model.layers.26.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 240 |
+
"model.layers.26.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 241 |
+
"model.layers.26.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
|
| 242 |
+
"model.layers.26.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 243 |
+
"model.layers.26.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 244 |
+
"model.layers.26.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
|
| 245 |
+
"model.layers.26.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 246 |
+
"model.layers.26.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
|
| 247 |
+
"model.layers.26.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 248 |
+
"model.layers.27.input_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 249 |
+
"model.layers.27.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
|
| 250 |
+
"model.layers.27.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
|
| 251 |
+
"model.layers.27.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
|
| 252 |
+
"model.layers.27.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
|
| 253 |
+
"model.layers.27.self_attn.k_proj.bias": "model-00003-of-00004.safetensors",
|
| 254 |
+
"model.layers.27.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
|
| 255 |
+
"model.layers.27.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
|
| 256 |
+
"model.layers.27.self_attn.q_proj.bias": "model-00003-of-00004.safetensors",
|
| 257 |
+
"model.layers.27.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
|
| 258 |
+
"model.layers.27.self_attn.v_proj.bias": "model-00003-of-00004.safetensors",
|
| 259 |
+
"model.layers.27.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
|
| 260 |
+
"model.layers.3.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 261 |
+
"model.layers.3.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 262 |
+
"model.layers.3.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 263 |
+
"model.layers.3.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 264 |
+
"model.layers.3.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 265 |
+
"model.layers.3.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
|
| 266 |
+
"model.layers.3.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 267 |
+
"model.layers.3.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 268 |
+
"model.layers.3.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
|
| 269 |
+
"model.layers.3.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 270 |
+
"model.layers.3.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
|
| 271 |
+
"model.layers.3.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 272 |
+
"model.layers.4.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 273 |
+
"model.layers.4.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 274 |
+
"model.layers.4.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 275 |
+
"model.layers.4.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 276 |
+
"model.layers.4.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 277 |
+
"model.layers.4.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
|
| 278 |
+
"model.layers.4.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 279 |
+
"model.layers.4.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 280 |
+
"model.layers.4.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
|
| 281 |
+
"model.layers.4.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 282 |
+
"model.layers.4.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
|
| 283 |
+
"model.layers.4.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 284 |
+
"model.layers.5.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 285 |
+
"model.layers.5.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 286 |
+
"model.layers.5.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 287 |
+
"model.layers.5.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 288 |
+
"model.layers.5.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 289 |
+
"model.layers.5.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
|
| 290 |
+
"model.layers.5.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 291 |
+
"model.layers.5.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 292 |
+
"model.layers.5.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
|
| 293 |
+
"model.layers.5.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 294 |
+
"model.layers.5.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
|
| 295 |
+
"model.layers.5.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 296 |
+
"model.layers.6.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 297 |
+
"model.layers.6.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 298 |
+
"model.layers.6.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 299 |
+
"model.layers.6.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 300 |
+
"model.layers.6.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 301 |
+
"model.layers.6.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
|
| 302 |
+
"model.layers.6.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 303 |
+
"model.layers.6.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 304 |
+
"model.layers.6.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
|
| 305 |
+
"model.layers.6.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 306 |
+
"model.layers.6.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
|
| 307 |
+
"model.layers.6.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 308 |
+
"model.layers.7.input_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 309 |
+
"model.layers.7.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
|
| 310 |
+
"model.layers.7.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
|
| 311 |
+
"model.layers.7.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
|
| 312 |
+
"model.layers.7.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
|
| 313 |
+
"model.layers.7.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
|
| 314 |
+
"model.layers.7.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 315 |
+
"model.layers.7.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 316 |
+
"model.layers.7.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
|
| 317 |
+
"model.layers.7.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 318 |
+
"model.layers.7.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
|
| 319 |
+
"model.layers.7.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 320 |
+
"model.layers.8.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 321 |
+
"model.layers.8.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 322 |
+
"model.layers.8.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 323 |
+
"model.layers.8.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 324 |
+
"model.layers.8.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 325 |
+
"model.layers.8.self_attn.k_proj.bias": "model-00001-of-00004.safetensors",
|
| 326 |
+
"model.layers.8.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
|
| 327 |
+
"model.layers.8.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
|
| 328 |
+
"model.layers.8.self_attn.q_proj.bias": "model-00001-of-00004.safetensors",
|
| 329 |
+
"model.layers.8.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
|
| 330 |
+
"model.layers.8.self_attn.v_proj.bias": "model-00001-of-00004.safetensors",
|
| 331 |
+
"model.layers.8.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
|
| 332 |
+
"model.layers.9.input_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 333 |
+
"model.layers.9.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
|
| 334 |
+
"model.layers.9.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
|
| 335 |
+
"model.layers.9.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
|
| 336 |
+
"model.layers.9.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
|
| 337 |
+
"model.layers.9.self_attn.k_proj.bias": "model-00002-of-00004.safetensors",
|
| 338 |
+
"model.layers.9.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
|
| 339 |
+
"model.layers.9.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
|
| 340 |
+
"model.layers.9.self_attn.q_proj.bias": "model-00002-of-00004.safetensors",
|
| 341 |
+
"model.layers.9.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
|
| 342 |
+
"model.layers.9.self_attn.v_proj.bias": "model-00002-of-00004.safetensors",
|
| 343 |
+
"model.layers.9.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
|
| 344 |
+
"model.norm.weight": "model-00003-of-00004.safetensors"
|
| 345 |
+
}
|
| 346 |
+
}
|
sft_args.json
ADDED
|
@@ -0,0 +1,261 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model_type": "qwen2-7b-instruct",
|
| 3 |
+
"model_id_or_path": "/mnt/workspace/hujinghan.hjh/agent/qwen2-7b",
|
| 4 |
+
"model_revision": "master",
|
| 5 |
+
"sft_type": "full",
|
| 6 |
+
"freeze_parameters": 0.0,
|
| 7 |
+
"additional_trainable_parameters": [],
|
| 8 |
+
"tuner_backend": "peft",
|
| 9 |
+
"template_type": "qwen",
|
| 10 |
+
"output_dir": "/mnt/workspace/hujinghan.hjh/agent/agent-flan/qwen2-7b-instruct/v5-20240613-004226",
|
| 11 |
+
"add_output_dir_suffix": true,
|
| 12 |
+
"ddp_backend": "nccl",
|
| 13 |
+
"ddp_find_unused_parameters": null,
|
| 14 |
+
"ddp_broadcast_buffers": null,
|
| 15 |
+
"seed": 42,
|
| 16 |
+
"resume_from_checkpoint": null,
|
| 17 |
+
"ignore_data_skip": false,
|
| 18 |
+
"dtype": "bf16",
|
| 19 |
+
"packing": false,
|
| 20 |
+
"dataset": [
|
| 21 |
+
"msagent-pro"
|
| 22 |
+
],
|
| 23 |
+
"val_dataset": [],
|
| 24 |
+
"dataset_seed": 42,
|
| 25 |
+
"dataset_test_ratio": 0.01,
|
| 26 |
+
"use_loss_scale": true,
|
| 27 |
+
"loss_scale_config_path": "/mnt/workspace/hujinghan.hjh/swift/swift/llm/agent/agentflan.json",
|
| 28 |
+
"system": "You are a helpful assistant.",
|
| 29 |
+
"tools_prompt": "react_en",
|
| 30 |
+
"max_length": 8192,
|
| 31 |
+
"truncation_strategy": "delete",
|
| 32 |
+
"check_dataset_strategy": "none",
|
| 33 |
+
"model_name": [
|
| 34 |
+
null,
|
| 35 |
+
null
|
| 36 |
+
],
|
| 37 |
+
"model_author": [
|
| 38 |
+
null,
|
| 39 |
+
null
|
| 40 |
+
],
|
| 41 |
+
"quant_method": null,
|
| 42 |
+
"quantization_bit": 0,
|
| 43 |
+
"hqq_axis": 0,
|
| 44 |
+
"hqq_dynamic_config_path": null,
|
| 45 |
+
"bnb_4bit_comp_dtype": "bf16",
|
| 46 |
+
"bnb_4bit_quant_type": "nf4",
|
| 47 |
+
"bnb_4bit_use_double_quant": true,
|
| 48 |
+
"bnb_4bit_quant_storage": null,
|
| 49 |
+
"lora_target_modules": [
|
| 50 |
+
"q_proj",
|
| 51 |
+
"k_proj",
|
| 52 |
+
"v_proj"
|
| 53 |
+
],
|
| 54 |
+
"lora_rank": 8,
|
| 55 |
+
"lora_alpha": 32,
|
| 56 |
+
"lora_dropout_p": 0.05,
|
| 57 |
+
"lora_bias_trainable": "none",
|
| 58 |
+
"lora_modules_to_save": [],
|
| 59 |
+
"lora_dtype": "AUTO",
|
| 60 |
+
"lora_lr_ratio": null,
|
| 61 |
+
"use_rslora": false,
|
| 62 |
+
"use_dora": false,
|
| 63 |
+
"init_lora_weights": "true",
|
| 64 |
+
"rope_scaling": null,
|
| 65 |
+
"boft_block_size": 4,
|
| 66 |
+
"boft_block_num": 0,
|
| 67 |
+
"boft_n_butterfly_factor": 1,
|
| 68 |
+
"boft_target_modules": [
|
| 69 |
+
"DEFAULT"
|
| 70 |
+
],
|
| 71 |
+
"boft_dropout": 0.0,
|
| 72 |
+
"boft_modules_to_save": [],
|
| 73 |
+
"vera_rank": 256,
|
| 74 |
+
"vera_target_modules": [
|
| 75 |
+
"DEFAULT"
|
| 76 |
+
],
|
| 77 |
+
"vera_projection_prng_key": 0,
|
| 78 |
+
"vera_dropout": 0.0,
|
| 79 |
+
"vera_d_initial": 0.1,
|
| 80 |
+
"vera_modules_to_save": [],
|
| 81 |
+
"adapter_act": "gelu",
|
| 82 |
+
"adapter_length": 128,
|
| 83 |
+
"use_galore": false,
|
| 84 |
+
"galore_rank": 128,
|
| 85 |
+
"galore_target_modules": null,
|
| 86 |
+
"galore_update_proj_gap": 50,
|
| 87 |
+
"galore_scale": 1.0,
|
| 88 |
+
"galore_proj_type": "std",
|
| 89 |
+
"galore_optim_per_parameter": false,
|
| 90 |
+
"galore_with_embedding": false,
|
| 91 |
+
"adalora_target_r": 8,
|
| 92 |
+
"adalora_init_r": 12,
|
| 93 |
+
"adalora_tinit": 0,
|
| 94 |
+
"adalora_tfinal": 0,
|
| 95 |
+
"adalora_deltaT": 1,
|
| 96 |
+
"adalora_beta1": 0.85,
|
| 97 |
+
"adalora_beta2": 0.85,
|
| 98 |
+
"adalora_orth_reg_weight": 0.5,
|
| 99 |
+
"ia3_target_modules": [
|
| 100 |
+
"DEFAULT"
|
| 101 |
+
],
|
| 102 |
+
"ia3_feedforward_modules": [],
|
| 103 |
+
"ia3_modules_to_save": [],
|
| 104 |
+
"llamapro_num_new_blocks": 4,
|
| 105 |
+
"llamapro_num_groups": null,
|
| 106 |
+
"neftune_noise_alpha": null,
|
| 107 |
+
"neftune_backend": "transformers",
|
| 108 |
+
"lisa_activated_layers": 0,
|
| 109 |
+
"lisa_step_interval": 20,
|
| 110 |
+
"gradient_checkpointing": true,
|
| 111 |
+
"deepspeed": {
|
| 112 |
+
"fp16": {
|
| 113 |
+
"enabled": "auto",
|
| 114 |
+
"loss_scale": 0,
|
| 115 |
+
"loss_scale_window": 1000,
|
| 116 |
+
"initial_scale_power": 16,
|
| 117 |
+
"hysteresis": 2,
|
| 118 |
+
"min_loss_scale": 1
|
| 119 |
+
},
|
| 120 |
+
"bf16": {
|
| 121 |
+
"enabled": "auto"
|
| 122 |
+
},
|
| 123 |
+
"optimizer": {
|
| 124 |
+
"type": "AdamW",
|
| 125 |
+
"params": {
|
| 126 |
+
"lr": "auto",
|
| 127 |
+
"betas": "auto",
|
| 128 |
+
"eps": "auto",
|
| 129 |
+
"weight_decay": "auto"
|
| 130 |
+
}
|
| 131 |
+
},
|
| 132 |
+
"scheduler": {
|
| 133 |
+
"type": "WarmupDecayLR",
|
| 134 |
+
"params": {
|
| 135 |
+
"total_num_steps": "auto",
|
| 136 |
+
"warmup_min_lr": "auto",
|
| 137 |
+
"warmup_max_lr": "auto",
|
| 138 |
+
"warmup_num_steps": "auto"
|
| 139 |
+
}
|
| 140 |
+
},
|
| 141 |
+
"zero_optimization": {
|
| 142 |
+
"stage": 3,
|
| 143 |
+
"offload_optimizer": {
|
| 144 |
+
"device": "none",
|
| 145 |
+
"pin_memory": true
|
| 146 |
+
},
|
| 147 |
+
"offload_param": {
|
| 148 |
+
"device": "none",
|
| 149 |
+
"pin_memory": true
|
| 150 |
+
},
|
| 151 |
+
"overlap_comm": true,
|
| 152 |
+
"contiguous_gradients": true,
|
| 153 |
+
"sub_group_size": 1000000000.0,
|
| 154 |
+
"reduce_bucket_size": "auto",
|
| 155 |
+
"stage3_prefetch_bucket_size": "auto",
|
| 156 |
+
"stage3_param_persistence_threshold": "auto",
|
| 157 |
+
"stage3_max_live_parameters": 1000000000.0,
|
| 158 |
+
"stage3_max_reuse_distance": 1000000000.0,
|
| 159 |
+
"stage3_gather_16bit_weights_on_model_save": true
|
| 160 |
+
},
|
| 161 |
+
"gradient_accumulation_steps": "auto",
|
| 162 |
+
"gradient_clipping": "auto",
|
| 163 |
+
"steps_per_print": 2000,
|
| 164 |
+
"train_batch_size": "auto",
|
| 165 |
+
"train_micro_batch_size_per_gpu": "auto",
|
| 166 |
+
"wall_clock_breakdown": false
|
| 167 |
+
},
|
| 168 |
+
"batch_size": 1,
|
| 169 |
+
"eval_batch_size": 1,
|
| 170 |
+
"num_train_epochs": 2,
|
| 171 |
+
"max_steps": -1,
|
| 172 |
+
"optim": "adamw_torch",
|
| 173 |
+
"adam_beta1": 0.9,
|
| 174 |
+
"adam_beta2": 0.999,
|
| 175 |
+
"adam_epsilon": 1e-08,
|
| 176 |
+
"learning_rate": 2e-06,
|
| 177 |
+
"weight_decay": 0.1,
|
| 178 |
+
"gradient_accumulation_steps": 4,
|
| 179 |
+
"max_grad_norm": 0.5,
|
| 180 |
+
"predict_with_generate": false,
|
| 181 |
+
"lr_scheduler_type": "linear",
|
| 182 |
+
"warmup_ratio": 0.05,
|
| 183 |
+
"eval_steps": 50,
|
| 184 |
+
"save_steps": 50,
|
| 185 |
+
"save_only_model": true,
|
| 186 |
+
"save_total_limit": 2,
|
| 187 |
+
"logging_steps": 5,
|
| 188 |
+
"dataloader_num_workers": 1,
|
| 189 |
+
"dataloader_pin_memory": true,
|
| 190 |
+
"dataloader_drop_last": false,
|
| 191 |
+
"push_to_hub": false,
|
| 192 |
+
"hub_model_id": null,
|
| 193 |
+
"hub_token": null,
|
| 194 |
+
"hub_private_repo": false,
|
| 195 |
+
"push_hub_strategy": "push_best",
|
| 196 |
+
"test_oom_error": false,
|
| 197 |
+
"disable_tqdm": true,
|
| 198 |
+
"lazy_tokenize": false,
|
| 199 |
+
"preprocess_num_proc": 4,
|
| 200 |
+
"use_flash_attn": null,
|
| 201 |
+
"ignore_args_error": false,
|
| 202 |
+
"check_model_is_latest": true,
|
| 203 |
+
"logging_dir": "/mnt/workspace/hujinghan.hjh/agent/agent-flan/qwen2-7b-instruct/v5-20240613-004226/runs",
|
| 204 |
+
"report_to": [
|
| 205 |
+
"tensorboard"
|
| 206 |
+
],
|
| 207 |
+
"acc_strategy": "token",
|
| 208 |
+
"save_on_each_node": true,
|
| 209 |
+
"evaluation_strategy": "steps",
|
| 210 |
+
"save_strategy": "epoch",
|
| 211 |
+
"save_safetensors": true,
|
| 212 |
+
"gpu_memory_fraction": null,
|
| 213 |
+
"include_num_input_tokens_seen": false,
|
| 214 |
+
"local_repo_path": null,
|
| 215 |
+
"custom_register_path": null,
|
| 216 |
+
"custom_dataset_info": null,
|
| 217 |
+
"device_map_config_path": null,
|
| 218 |
+
"max_new_tokens": 2048,
|
| 219 |
+
"do_sample": true,
|
| 220 |
+
"temperature": 0.3,
|
| 221 |
+
"top_k": 20,
|
| 222 |
+
"top_p": 0.7,
|
| 223 |
+
"repetition_penalty": 1.0,
|
| 224 |
+
"num_beams": 1,
|
| 225 |
+
"fsdp": "",
|
| 226 |
+
"fsdp_config": null,
|
| 227 |
+
"sequence_parallel_size": 1,
|
| 228 |
+
"model_layer_cls_name": null,
|
| 229 |
+
"metric_warmup_step": 0,
|
| 230 |
+
"fsdp_num": 1,
|
| 231 |
+
"per_device_train_batch_size": null,
|
| 232 |
+
"per_device_eval_batch_size": null,
|
| 233 |
+
"eval_strategy": null,
|
| 234 |
+
"self_cognition_sample": 0,
|
| 235 |
+
"train_dataset_mix_ratio": 0.0,
|
| 236 |
+
"train_dataset_mix_ds": [
|
| 237 |
+
"ms-bench"
|
| 238 |
+
],
|
| 239 |
+
"train_dataset_sample": -1,
|
| 240 |
+
"val_dataset_sample": null,
|
| 241 |
+
"safe_serialization": null,
|
| 242 |
+
"only_save_model": null,
|
| 243 |
+
"neftune_alpha": null,
|
| 244 |
+
"deepspeed_config_path": null,
|
| 245 |
+
"model_cache_dir": null,
|
| 246 |
+
"custom_train_dataset_path": [],
|
| 247 |
+
"custom_val_dataset_path": [],
|
| 248 |
+
"use_self_cognition": false,
|
| 249 |
+
"lora_use_embedding": false,
|
| 250 |
+
"lora_use_all": false,
|
| 251 |
+
"lora_m2s_use_embedding": false,
|
| 252 |
+
"lora_m2s_use_ln": false,
|
| 253 |
+
"torch_dtype": "torch.bfloat16",
|
| 254 |
+
"fp16": false,
|
| 255 |
+
"bf16": true,
|
| 256 |
+
"bnb_4bit_compute_dtype": "torch.bfloat16",
|
| 257 |
+
"load_in_4bit": false,
|
| 258 |
+
"load_in_8bit": false,
|
| 259 |
+
"train_sampler_random": true,
|
| 260 |
+
"training_args": "Seq2SeqTrainingArguments(output_dir='/mnt/workspace/hujinghan.hjh/agent/agent-flan/qwen2-7b-instruct/v5-20240613-004226', overwrite_output_dir=False, do_train=False, do_eval=True, do_predict=False, eval_strategy=<IntervalStrategy.STEPS: 'steps'>, prediction_loss_only=False, per_device_train_batch_size=1, per_device_eval_batch_size=1, per_gpu_train_batch_size=None, per_gpu_eval_batch_size=None, gradient_accumulation_steps=4, eval_accumulation_steps=None, eval_delay=0, learning_rate=2e-06, weight_decay=0.1, adam_beta1=0.9, adam_beta2=0.999, adam_epsilon=1e-08, max_grad_norm=0.5, num_train_epochs=2, max_steps=-1, lr_scheduler_type=<SchedulerType.LINEAR: 'linear'>, lr_scheduler_kwargs={}, warmup_ratio=0.05, warmup_steps=0, log_level='passive', log_level_replica='warning', log_on_each_node=True, logging_dir='/mnt/workspace/hujinghan.hjh/agent/agent-flan/qwen2-7b-instruct/v5-20240613-004226/runs', logging_strategy=<IntervalStrategy.STEPS: 'steps'>, logging_first_step=True, logging_steps=5, logging_nan_inf_filter=True, save_strategy=<IntervalStrategy.EPOCH: 'epoch'>, save_steps=50, save_total_limit=2, save_safetensors=True, save_on_each_node=True, save_only_model=True, restore_callback_states_from_checkpoint=False, no_cuda=False, use_cpu=False, use_mps_device=False, seed=42, data_seed=None, jit_mode_eval=False, use_ipex=False, bf16=True, fp16=False, fp16_opt_level='O1', half_precision_backend='auto', bf16_full_eval=False, fp16_full_eval=False, tf32=None, local_rank=0, ddp_backend='nccl', tpu_num_cores=None, tpu_metrics_debug=False, debug=[], dataloader_drop_last=False, eval_steps=50, dataloader_num_workers=1, dataloader_prefetch_factor=None, past_index=-1, run_name='/mnt/workspace/hujinghan.hjh/agent/agent-flan/qwen2-7b-instruct/v5-20240613-004226', disable_tqdm=True, remove_unused_columns=False, label_names=None, load_best_model_at_end=False, metric_for_best_model='loss', greater_is_better=False, ignore_data_skip=False, fsdp=[], fsdp_min_num_params=0, fsdp_config={'min_num_params': 0, 'xla': False, 'xla_fsdp_v2': False, 'xla_fsdp_grad_ckpt': False}, fsdp_transformer_layer_cls_to_wrap=None, accelerator_config=AcceleratorConfig(split_batches=False, dispatch_batches=None, even_batches=True, use_seedable_sampler=True, non_blocking=False, gradient_accumulation_kwargs=None), deepspeed={'fp16': {'enabled': 'auto', 'loss_scale': 0, 'loss_scale_window': 1000, 'initial_scale_power': 16, 'hysteresis': 2, 'min_loss_scale': 1}, 'bf16': {'enabled': 'auto'}, 'optimizer': {'type': 'AdamW', 'params': {'lr': 'auto', 'betas': 'auto', 'eps': 'auto', 'weight_decay': 'auto'}}, 'scheduler': {'type': 'WarmupDecayLR', 'params': {'total_num_steps': 'auto', 'warmup_min_lr': 'auto', 'warmup_max_lr': 'auto', 'warmup_num_steps': 'auto'}}, 'zero_optimization': {'stage': 3, 'offload_optimizer': {'device': 'none', 'pin_memory': True}, 'offload_param': {'device': 'none', 'pin_memory': True}, 'overlap_comm': True, 'contiguous_gradients': True, 'sub_group_size': 1000000000.0, 'reduce_bucket_size': 'auto', 'stage3_prefetch_bucket_size': 'auto', 'stage3_param_persistence_threshold': 'auto', 'stage3_max_live_parameters': 1000000000.0, 'stage3_max_reuse_distance': 1000000000.0, 'stage3_gather_16bit_weights_on_model_save': True}, 'gradient_accumulation_steps': 'auto', 'gradient_clipping': 'auto', 'steps_per_print': 2000, 'train_batch_size': 'auto', 'train_micro_batch_size_per_gpu': 'auto', 'wall_clock_breakdown': False}, label_smoothing_factor=0.0, optim=<OptimizerNames.ADAMW_TORCH: 'adamw_torch'>, optim_args=None, adafactor=False, group_by_length=False, length_column_name='length', report_to=['tensorboard'], ddp_find_unused_parameters=False, ddp_bucket_cap_mb=None, ddp_broadcast_buffers=False, dataloader_pin_memory=True, dataloader_persistent_workers=False, skip_memory_metrics=True, use_legacy_prediction_loop=False, push_to_hub=False, resume_from_checkpoint=None, hub_model_id=None, hub_strategy=<HubStrategy.EVERY_SAVE: 'every_save'>, hub_token=None, hub_private_repo=False, hub_always_push=False, gradient_checkpointing=True, gradient_checkpointing_kwargs=None, include_inputs_for_metrics=False, eval_do_concat_batches=True, fp16_backend='auto', evaluation_strategy=None, push_to_hub_model_id=None, push_to_hub_organization=None, push_to_hub_token=None, mp_parameters='', auto_find_batch_size=False, full_determinism=False, torchdynamo=None, ray_scope='last', ddp_timeout=1800, torch_compile=False, torch_compile_backend=None, torch_compile_mode=None, dispatch_batches=None, split_batches=None, include_tokens_per_second=False, include_num_input_tokens_seen=False, neftune_noise_alpha=None, optim_target_modules=None, batch_eval_metrics=False, sortish_sampler=True, predict_with_generate=False, generation_max_length=None, generation_num_beams=None, generation_config=GenerationConfig {\n \"do_sample\": true,\n \"eos_token_id\": 151645,\n \"max_new_tokens\": 2048,\n \"pad_token_id\": 151643,\n \"temperature\": 0.3,\n \"top_k\": 20,\n \"top_p\": 0.7\n}\n, train_sampler_random=True, push_hub_strategy='push_best', acc_strategy='token', additional_saved_files=[], metric_warmup_step=0, train_dataset_sample=21691)"
|
| 261 |
+
}
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"additional_special_tokens": [
|
| 3 |
+
"<|im_start|>",
|
| 4 |
+
"<|im_end|>"
|
| 5 |
+
],
|
| 6 |
+
"eos_token": "<|im_end|>",
|
| 7 |
+
"pad_token": {
|
| 8 |
+
"content": "<|endoftext|>",
|
| 9 |
+
"lstrip": false,
|
| 10 |
+
"normalized": false,
|
| 11 |
+
"rstrip": false,
|
| 12 |
+
"single_word": false
|
| 13 |
+
}
|
| 14 |
+
}
|
tokenizer.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_prefix_space": false,
|
| 3 |
+
"added_tokens_decoder": {
|
| 4 |
+
"151643": {
|
| 5 |
+
"content": "<|endoftext|>",
|
| 6 |
+
"lstrip": false,
|
| 7 |
+
"normalized": false,
|
| 8 |
+
"rstrip": false,
|
| 9 |
+
"single_word": false,
|
| 10 |
+
"special": true
|
| 11 |
+
},
|
| 12 |
+
"151644": {
|
| 13 |
+
"content": "<|im_start|>",
|
| 14 |
+
"lstrip": false,
|
| 15 |
+
"normalized": false,
|
| 16 |
+
"rstrip": false,
|
| 17 |
+
"single_word": false,
|
| 18 |
+
"special": true
|
| 19 |
+
},
|
| 20 |
+
"151645": {
|
| 21 |
+
"content": "<|im_end|>",
|
| 22 |
+
"lstrip": false,
|
| 23 |
+
"normalized": false,
|
| 24 |
+
"rstrip": false,
|
| 25 |
+
"single_word": false,
|
| 26 |
+
"special": true
|
| 27 |
+
}
|
| 28 |
+
},
|
| 29 |
+
"additional_special_tokens": [
|
| 30 |
+
"<|im_start|>",
|
| 31 |
+
"<|im_end|>"
|
| 32 |
+
],
|
| 33 |
+
"bos_token": null,
|
| 34 |
+
"chat_template": "{% for message in messages %}{% if loop.first and messages[0]['role'] != 'system' %}{{ '<|im_start|>system\nYou are a helpful assistant.<|im_end|>\n' }}{% endif %}{{'<|im_start|>' + message['role'] + '\n' + message['content'] + '<|im_end|>' + '\n'}}{% endfor %}{% if add_generation_prompt %}{{ '<|im_start|>assistant\n' }}{% endif %}",
|
| 35 |
+
"clean_up_tokenization_spaces": false,
|
| 36 |
+
"eos_token": "<|im_end|>",
|
| 37 |
+
"errors": "replace",
|
| 38 |
+
"model_max_length": 131072,
|
| 39 |
+
"pad_token": "<|endoftext|>",
|
| 40 |
+
"split_special_tokens": false,
|
| 41 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 42 |
+
"unk_token": null
|
| 43 |
+
}
|
trainer_state.json
ADDED
|
@@ -0,0 +1,1510 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_metric": null,
|
| 3 |
+
"best_model_checkpoint": null,
|
| 4 |
+
"epoch": 0.99889339727038,
|
| 5 |
+
"eval_steps": 50,
|
| 6 |
+
"global_step": 677,
|
| 7 |
+
"is_hyper_param_search": false,
|
| 8 |
+
"is_local_process_zero": true,
|
| 9 |
+
"is_world_process_zero": true,
|
| 10 |
+
"log_history": [
|
| 11 |
+
{
|
| 12 |
+
"acc": 0.85936797,
|
| 13 |
+
"epoch": 0.0014754703061600886,
|
| 14 |
+
"grad_norm": 7.874454151515785,
|
| 15 |
+
"learning_rate": 0.0,
|
| 16 |
+
"loss": 0.68658942,
|
| 17 |
+
"memory(GiB)": 24.89,
|
| 18 |
+
"step": 1,
|
| 19 |
+
"train_speed(iter/s)": 0.03037
|
| 20 |
+
},
|
| 21 |
+
{
|
| 22 |
+
"acc": 0.84321463,
|
| 23 |
+
"epoch": 0.0073773515308004425,
|
| 24 |
+
"grad_norm": 8.79654818500605,
|
| 25 |
+
"learning_rate": 7.628557760232497e-07,
|
| 26 |
+
"loss": 0.79017758,
|
| 27 |
+
"memory(GiB)": 31.87,
|
| 28 |
+
"step": 5,
|
| 29 |
+
"train_speed(iter/s)": 0.092709
|
| 30 |
+
},
|
| 31 |
+
{
|
| 32 |
+
"acc": 0.85256624,
|
| 33 |
+
"epoch": 0.014754703061600885,
|
| 34 |
+
"grad_norm": 8.005772072681205,
|
| 35 |
+
"learning_rate": 1.0913998759473501e-06,
|
| 36 |
+
"loss": 0.70760584,
|
| 37 |
+
"memory(GiB)": 33.75,
|
| 38 |
+
"step": 10,
|
| 39 |
+
"train_speed(iter/s)": 0.120868
|
| 40 |
+
},
|
| 41 |
+
{
|
| 42 |
+
"acc": 0.85825052,
|
| 43 |
+
"epoch": 0.022132054592401328,
|
| 44 |
+
"grad_norm": 4.861872738410458,
|
| 45 |
+
"learning_rate": 1.2835858542361333e-06,
|
| 46 |
+
"loss": 0.64002485,
|
| 47 |
+
"memory(GiB)": 33.01,
|
| 48 |
+
"step": 15,
|
| 49 |
+
"train_speed(iter/s)": 0.137764
|
| 50 |
+
},
|
| 51 |
+
{
|
| 52 |
+
"acc": 0.8677763,
|
| 53 |
+
"epoch": 0.02950940612320177,
|
| 54 |
+
"grad_norm": 2.624090927434735,
|
| 55 |
+
"learning_rate": 1.4199439758714505e-06,
|
| 56 |
+
"loss": 0.5428031,
|
| 57 |
+
"memory(GiB)": 34.84,
|
| 58 |
+
"step": 20,
|
| 59 |
+
"train_speed(iter/s)": 0.148523
|
| 60 |
+
},
|
| 61 |
+
{
|
| 62 |
+
"acc": 0.88262272,
|
| 63 |
+
"epoch": 0.03688675765400221,
|
| 64 |
+
"grad_norm": 2.2979293864903276,
|
| 65 |
+
"learning_rate": 1.5257115520464994e-06,
|
| 66 |
+
"loss": 0.45293074,
|
| 67 |
+
"memory(GiB)": 31.42,
|
| 68 |
+
"step": 25,
|
| 69 |
+
"train_speed(iter/s)": 0.152816
|
| 70 |
+
},
|
| 71 |
+
{
|
| 72 |
+
"acc": 0.88684368,
|
| 73 |
+
"epoch": 0.044264109184802655,
|
| 74 |
+
"grad_norm": 2.321279166108657,
|
| 75 |
+
"learning_rate": 1.6121299541602339e-06,
|
| 76 |
+
"loss": 0.44487882,
|
| 77 |
+
"memory(GiB)": 34.17,
|
| 78 |
+
"step": 30,
|
| 79 |
+
"train_speed(iter/s)": 0.158226
|
| 80 |
+
},
|
| 81 |
+
{
|
| 82 |
+
"acc": 0.88785019,
|
| 83 |
+
"epoch": 0.0516414607156031,
|
| 84 |
+
"grad_norm": 1.6462078924259171,
|
| 85 |
+
"learning_rate": 1.6851956720581583e-06,
|
| 86 |
+
"loss": 0.42431307,
|
| 87 |
+
"memory(GiB)": 33.89,
|
| 88 |
+
"step": 35,
|
| 89 |
+
"train_speed(iter/s)": 0.160915
|
| 90 |
+
},
|
| 91 |
+
{
|
| 92 |
+
"acc": 0.88771706,
|
| 93 |
+
"epoch": 0.05901881224640354,
|
| 94 |
+
"grad_norm": 2.0535907435541323,
|
| 95 |
+
"learning_rate": 1.7484880757955508e-06,
|
| 96 |
+
"loss": 0.41692309,
|
| 97 |
+
"memory(GiB)": 33.45,
|
| 98 |
+
"step": 40,
|
| 99 |
+
"train_speed(iter/s)": 0.162212
|
| 100 |
+
},
|
| 101 |
+
{
|
| 102 |
+
"acc": 0.89934006,
|
| 103 |
+
"epoch": 0.06639616377720399,
|
| 104 |
+
"grad_norm": 1.880024272875225,
|
| 105 |
+
"learning_rate": 1.8043159324490168e-06,
|
| 106 |
+
"loss": 0.37824535,
|
| 107 |
+
"memory(GiB)": 32.49,
|
| 108 |
+
"step": 45,
|
| 109 |
+
"train_speed(iter/s)": 0.164895
|
| 110 |
+
},
|
| 111 |
+
{
|
| 112 |
+
"acc": 0.89317064,
|
| 113 |
+
"epoch": 0.07377351530800443,
|
| 114 |
+
"grad_norm": 2.4862794709135483,
|
| 115 |
+
"learning_rate": 1.8542556519706e-06,
|
| 116 |
+
"loss": 0.39434323,
|
| 117 |
+
"memory(GiB)": 31.37,
|
| 118 |
+
"step": 50,
|
| 119 |
+
"train_speed(iter/s)": 0.166039
|
| 120 |
+
},
|
| 121 |
+
{
|
| 122 |
+
"epoch": 0.07377351530800443,
|
| 123 |
+
"eval_acc": 0.8897788969852836,
|
| 124 |
+
"eval_loss": 0.3586576581001282,
|
| 125 |
+
"eval_runtime": 9.1458,
|
| 126 |
+
"eval_samples_per_second": 23.836,
|
| 127 |
+
"eval_steps_per_second": 3.062,
|
| 128 |
+
"step": 50
|
| 129 |
+
},
|
| 130 |
+
{
|
| 131 |
+
"acc": 0.90738754,
|
| 132 |
+
"epoch": 0.08115086683880487,
|
| 133 |
+
"grad_norm": 1.818011862869067,
|
| 134 |
+
"learning_rate": 1.8994316234174147e-06,
|
| 135 |
+
"loss": 0.34018734,
|
| 136 |
+
"memory(GiB)": 43.99,
|
| 137 |
+
"step": 55,
|
| 138 |
+
"train_speed(iter/s)": 0.163069
|
| 139 |
+
},
|
| 140 |
+
{
|
| 141 |
+
"acc": 0.89877386,
|
| 142 |
+
"epoch": 0.08852821836960531,
|
| 143 |
+
"grad_norm": 2.769061395622785,
|
| 144 |
+
"learning_rate": 1.940674054084334e-06,
|
| 145 |
+
"loss": 0.3834722,
|
| 146 |
+
"memory(GiB)": 33.18,
|
| 147 |
+
"step": 60,
|
| 148 |
+
"train_speed(iter/s)": 0.163587
|
| 149 |
+
},
|
| 150 |
+
{
|
| 151 |
+
"acc": 0.89560518,
|
| 152 |
+
"epoch": 0.09590556990040576,
|
| 153 |
+
"grad_norm": 3.0254291124967776,
|
| 154 |
+
"learning_rate": 1.9786134125433064e-06,
|
| 155 |
+
"loss": 0.40774279,
|
| 156 |
+
"memory(GiB)": 36.96,
|
| 157 |
+
"step": 65,
|
| 158 |
+
"train_speed(iter/s)": 0.163438
|
| 159 |
+
},
|
| 160 |
+
{
|
| 161 |
+
"acc": 0.90745316,
|
| 162 |
+
"epoch": 0.1032829214312062,
|
| 163 |
+
"grad_norm": 1.9702664127406297,
|
| 164 |
+
"learning_rate": 1.998444790046656e-06,
|
| 165 |
+
"loss": 0.34646974,
|
| 166 |
+
"memory(GiB)": 33.91,
|
| 167 |
+
"step": 70,
|
| 168 |
+
"train_speed(iter/s)": 0.165839
|
| 169 |
+
},
|
| 170 |
+
{
|
| 171 |
+
"acc": 0.90453644,
|
| 172 |
+
"epoch": 0.11066027296200664,
|
| 173 |
+
"grad_norm": 1.956498769069037,
|
| 174 |
+
"learning_rate": 1.990668740279938e-06,
|
| 175 |
+
"loss": 0.34771657,
|
| 176 |
+
"memory(GiB)": 32.4,
|
| 177 |
+
"step": 75,
|
| 178 |
+
"train_speed(iter/s)": 0.166283
|
| 179 |
+
},
|
| 180 |
+
{
|
| 181 |
+
"acc": 0.90620461,
|
| 182 |
+
"epoch": 0.11803762449280708,
|
| 183 |
+
"grad_norm": 1.7929520466502804,
|
| 184 |
+
"learning_rate": 1.9828926905132194e-06,
|
| 185 |
+
"loss": 0.34979777,
|
| 186 |
+
"memory(GiB)": 32.69,
|
| 187 |
+
"step": 80,
|
| 188 |
+
"train_speed(iter/s)": 0.166045
|
| 189 |
+
},
|
| 190 |
+
{
|
| 191 |
+
"acc": 0.90826426,
|
| 192 |
+
"epoch": 0.12541497602360752,
|
| 193 |
+
"grad_norm": 2.255532399806791,
|
| 194 |
+
"learning_rate": 1.975116640746501e-06,
|
| 195 |
+
"loss": 0.34021211,
|
| 196 |
+
"memory(GiB)": 32.39,
|
| 197 |
+
"step": 85,
|
| 198 |
+
"train_speed(iter/s)": 0.16736
|
| 199 |
+
},
|
| 200 |
+
{
|
| 201 |
+
"acc": 0.90400352,
|
| 202 |
+
"epoch": 0.13279232755440798,
|
| 203 |
+
"grad_norm": 1.606426887028717,
|
| 204 |
+
"learning_rate": 1.9673405909797823e-06,
|
| 205 |
+
"loss": 0.3593976,
|
| 206 |
+
"memory(GiB)": 33.28,
|
| 207 |
+
"step": 90,
|
| 208 |
+
"train_speed(iter/s)": 0.166086
|
| 209 |
+
},
|
| 210 |
+
{
|
| 211 |
+
"acc": 0.90273075,
|
| 212 |
+
"epoch": 0.14016967908520842,
|
| 213 |
+
"grad_norm": 1.7550090784719037,
|
| 214 |
+
"learning_rate": 1.959564541213064e-06,
|
| 215 |
+
"loss": 0.34527693,
|
| 216 |
+
"memory(GiB)": 32.74,
|
| 217 |
+
"step": 95,
|
| 218 |
+
"train_speed(iter/s)": 0.167937
|
| 219 |
+
},
|
| 220 |
+
{
|
| 221 |
+
"acc": 0.90631161,
|
| 222 |
+
"epoch": 0.14754703061600885,
|
| 223 |
+
"grad_norm": 2.151177976553762,
|
| 224 |
+
"learning_rate": 1.9517884914463452e-06,
|
| 225 |
+
"loss": 0.34601164,
|
| 226 |
+
"memory(GiB)": 34.44,
|
| 227 |
+
"step": 100,
|
| 228 |
+
"train_speed(iter/s)": 0.167745
|
| 229 |
+
},
|
| 230 |
+
{
|
| 231 |
+
"epoch": 0.14754703061600885,
|
| 232 |
+
"eval_acc": 0.8985658665523646,
|
| 233 |
+
"eval_loss": 0.3217943012714386,
|
| 234 |
+
"eval_runtime": 9.0118,
|
| 235 |
+
"eval_samples_per_second": 24.19,
|
| 236 |
+
"eval_steps_per_second": 3.107,
|
| 237 |
+
"step": 100
|
| 238 |
+
},
|
| 239 |
+
{
|
| 240 |
+
"acc": 0.90445766,
|
| 241 |
+
"epoch": 0.1549243821468093,
|
| 242 |
+
"grad_norm": 2.0562867995030527,
|
| 243 |
+
"learning_rate": 1.9440124416796267e-06,
|
| 244 |
+
"loss": 0.34789481,
|
| 245 |
+
"memory(GiB)": 42.9,
|
| 246 |
+
"step": 105,
|
| 247 |
+
"train_speed(iter/s)": 0.164588
|
| 248 |
+
},
|
| 249 |
+
{
|
| 250 |
+
"acc": 0.90358963,
|
| 251 |
+
"epoch": 0.16230173367760975,
|
| 252 |
+
"grad_norm": 1.8705476431194374,
|
| 253 |
+
"learning_rate": 1.936236391912908e-06,
|
| 254 |
+
"loss": 0.34220786,
|
| 255 |
+
"memory(GiB)": 31.78,
|
| 256 |
+
"step": 110,
|
| 257 |
+
"train_speed(iter/s)": 0.165873
|
| 258 |
+
},
|
| 259 |
+
{
|
| 260 |
+
"acc": 0.9085845,
|
| 261 |
+
"epoch": 0.16967908520841019,
|
| 262 |
+
"grad_norm": 1.8278699994168497,
|
| 263 |
+
"learning_rate": 1.9284603421461896e-06,
|
| 264 |
+
"loss": 0.3233917,
|
| 265 |
+
"memory(GiB)": 31.86,
|
| 266 |
+
"step": 115,
|
| 267 |
+
"train_speed(iter/s)": 0.16598
|
| 268 |
+
},
|
| 269 |
+
{
|
| 270 |
+
"acc": 0.90997429,
|
| 271 |
+
"epoch": 0.17705643673921062,
|
| 272 |
+
"grad_norm": 1.945716912044592,
|
| 273 |
+
"learning_rate": 1.920684292379471e-06,
|
| 274 |
+
"loss": 0.34307232,
|
| 275 |
+
"memory(GiB)": 35.12,
|
| 276 |
+
"step": 120,
|
| 277 |
+
"train_speed(iter/s)": 0.166556
|
| 278 |
+
},
|
| 279 |
+
{
|
| 280 |
+
"acc": 0.91014824,
|
| 281 |
+
"epoch": 0.18443378827001106,
|
| 282 |
+
"grad_norm": 1.7135397704667659,
|
| 283 |
+
"learning_rate": 1.912908242612753e-06,
|
| 284 |
+
"loss": 0.32152495,
|
| 285 |
+
"memory(GiB)": 35.65,
|
| 286 |
+
"step": 125,
|
| 287 |
+
"train_speed(iter/s)": 0.167431
|
| 288 |
+
},
|
| 289 |
+
{
|
| 290 |
+
"acc": 0.9074892,
|
| 291 |
+
"epoch": 0.19181113980081152,
|
| 292 |
+
"grad_norm": 1.7116721779311537,
|
| 293 |
+
"learning_rate": 1.9051321928460342e-06,
|
| 294 |
+
"loss": 0.32937753,
|
| 295 |
+
"memory(GiB)": 33.19,
|
| 296 |
+
"step": 130,
|
| 297 |
+
"train_speed(iter/s)": 0.167152
|
| 298 |
+
},
|
| 299 |
+
{
|
| 300 |
+
"acc": 0.90999937,
|
| 301 |
+
"epoch": 0.19918849133161196,
|
| 302 |
+
"grad_norm": 1.6389355962957932,
|
| 303 |
+
"learning_rate": 1.8973561430793156e-06,
|
| 304 |
+
"loss": 0.33004179,
|
| 305 |
+
"memory(GiB)": 33.36,
|
| 306 |
+
"step": 135,
|
| 307 |
+
"train_speed(iter/s)": 0.168049
|
| 308 |
+
},
|
| 309 |
+
{
|
| 310 |
+
"acc": 0.9056819,
|
| 311 |
+
"epoch": 0.2065658428624124,
|
| 312 |
+
"grad_norm": 1.618401896535921,
|
| 313 |
+
"learning_rate": 1.889580093312597e-06,
|
| 314 |
+
"loss": 0.32887373,
|
| 315 |
+
"memory(GiB)": 31.72,
|
| 316 |
+
"step": 140,
|
| 317 |
+
"train_speed(iter/s)": 0.167987
|
| 318 |
+
},
|
| 319 |
+
{
|
| 320 |
+
"acc": 0.90799198,
|
| 321 |
+
"epoch": 0.21394319439321283,
|
| 322 |
+
"grad_norm": 2.0697336354422076,
|
| 323 |
+
"learning_rate": 1.8818040435458787e-06,
|
| 324 |
+
"loss": 0.33212447,
|
| 325 |
+
"memory(GiB)": 32.61,
|
| 326 |
+
"step": 145,
|
| 327 |
+
"train_speed(iter/s)": 0.168358
|
| 328 |
+
},
|
| 329 |
+
{
|
| 330 |
+
"acc": 0.89975605,
|
| 331 |
+
"epoch": 0.2213205459240133,
|
| 332 |
+
"grad_norm": 1.645561918074026,
|
| 333 |
+
"learning_rate": 1.8740279937791602e-06,
|
| 334 |
+
"loss": 0.35846872,
|
| 335 |
+
"memory(GiB)": 32.3,
|
| 336 |
+
"step": 150,
|
| 337 |
+
"train_speed(iter/s)": 0.169041
|
| 338 |
+
},
|
| 339 |
+
{
|
| 340 |
+
"epoch": 0.2213205459240133,
|
| 341 |
+
"eval_acc": 0.9009412058865552,
|
| 342 |
+
"eval_loss": 0.31137242913246155,
|
| 343 |
+
"eval_runtime": 8.9003,
|
| 344 |
+
"eval_samples_per_second": 24.494,
|
| 345 |
+
"eval_steps_per_second": 3.146,
|
| 346 |
+
"step": 150
|
| 347 |
+
},
|
| 348 |
+
{
|
| 349 |
+
"acc": 0.90751858,
|
| 350 |
+
"epoch": 0.22869789745481373,
|
| 351 |
+
"grad_norm": 1.717914687308357,
|
| 352 |
+
"learning_rate": 1.8662519440124416e-06,
|
| 353 |
+
"loss": 0.33635845,
|
| 354 |
+
"memory(GiB)": 43.6,
|
| 355 |
+
"step": 155,
|
| 356 |
+
"train_speed(iter/s)": 0.167082
|
| 357 |
+
},
|
| 358 |
+
{
|
| 359 |
+
"acc": 0.90450516,
|
| 360 |
+
"epoch": 0.23607524898561416,
|
| 361 |
+
"grad_norm": 1.6863266349964434,
|
| 362 |
+
"learning_rate": 1.858475894245723e-06,
|
| 363 |
+
"loss": 0.35405197,
|
| 364 |
+
"memory(GiB)": 33.81,
|
| 365 |
+
"step": 160,
|
| 366 |
+
"train_speed(iter/s)": 0.167855
|
| 367 |
+
},
|
| 368 |
+
{
|
| 369 |
+
"acc": 0.90395164,
|
| 370 |
+
"epoch": 0.2434526005164146,
|
| 371 |
+
"grad_norm": 2.1013428529714906,
|
| 372 |
+
"learning_rate": 1.8506998444790045e-06,
|
| 373 |
+
"loss": 0.34658258,
|
| 374 |
+
"memory(GiB)": 32.9,
|
| 375 |
+
"step": 165,
|
| 376 |
+
"train_speed(iter/s)": 0.167867
|
| 377 |
+
},
|
| 378 |
+
{
|
| 379 |
+
"acc": 0.91127558,
|
| 380 |
+
"epoch": 0.25082995204721503,
|
| 381 |
+
"grad_norm": 1.6631238092162342,
|
| 382 |
+
"learning_rate": 1.842923794712286e-06,
|
| 383 |
+
"loss": 0.32777104,
|
| 384 |
+
"memory(GiB)": 33.53,
|
| 385 |
+
"step": 170,
|
| 386 |
+
"train_speed(iter/s)": 0.168028
|
| 387 |
+
},
|
| 388 |
+
{
|
| 389 |
+
"acc": 0.90831413,
|
| 390 |
+
"epoch": 0.25820730357801547,
|
| 391 |
+
"grad_norm": 2.0857884493375756,
|
| 392 |
+
"learning_rate": 1.8351477449455676e-06,
|
| 393 |
+
"loss": 0.32164063,
|
| 394 |
+
"memory(GiB)": 32.03,
|
| 395 |
+
"step": 175,
|
| 396 |
+
"train_speed(iter/s)": 0.169138
|
| 397 |
+
},
|
| 398 |
+
{
|
| 399 |
+
"acc": 0.91539364,
|
| 400 |
+
"epoch": 0.26558465510881596,
|
| 401 |
+
"grad_norm": 2.0145344122511095,
|
| 402 |
+
"learning_rate": 1.827371695178849e-06,
|
| 403 |
+
"loss": 0.30975475,
|
| 404 |
+
"memory(GiB)": 34.31,
|
| 405 |
+
"step": 180,
|
| 406 |
+
"train_speed(iter/s)": 0.168973
|
| 407 |
+
},
|
| 408 |
+
{
|
| 409 |
+
"acc": 0.9064558,
|
| 410 |
+
"epoch": 0.2729620066396164,
|
| 411 |
+
"grad_norm": 1.6651879684580124,
|
| 412 |
+
"learning_rate": 1.8195956454121305e-06,
|
| 413 |
+
"loss": 0.3413609,
|
| 414 |
+
"memory(GiB)": 32.63,
|
| 415 |
+
"step": 185,
|
| 416 |
+
"train_speed(iter/s)": 0.169312
|
| 417 |
+
},
|
| 418 |
+
{
|
| 419 |
+
"acc": 0.90828686,
|
| 420 |
+
"epoch": 0.28033935817041683,
|
| 421 |
+
"grad_norm": 2.3469960245148056,
|
| 422 |
+
"learning_rate": 1.811819595645412e-06,
|
| 423 |
+
"loss": 0.32660947,
|
| 424 |
+
"memory(GiB)": 33.41,
|
| 425 |
+
"step": 190,
|
| 426 |
+
"train_speed(iter/s)": 0.169856
|
| 427 |
+
},
|
| 428 |
+
{
|
| 429 |
+
"acc": 0.91549397,
|
| 430 |
+
"epoch": 0.28771670970121727,
|
| 431 |
+
"grad_norm": 2.1806025367886117,
|
| 432 |
+
"learning_rate": 1.8040435458786937e-06,
|
| 433 |
+
"loss": 0.30616875,
|
| 434 |
+
"memory(GiB)": 36.24,
|
| 435 |
+
"step": 195,
|
| 436 |
+
"train_speed(iter/s)": 0.169761
|
| 437 |
+
},
|
| 438 |
+
{
|
| 439 |
+
"acc": 0.90924969,
|
| 440 |
+
"epoch": 0.2950940612320177,
|
| 441 |
+
"grad_norm": 1.5587292681869693,
|
| 442 |
+
"learning_rate": 1.7962674961119751e-06,
|
| 443 |
+
"loss": 0.32027857,
|
| 444 |
+
"memory(GiB)": 32.62,
|
| 445 |
+
"step": 200,
|
| 446 |
+
"train_speed(iter/s)": 0.170581
|
| 447 |
+
},
|
| 448 |
+
{
|
| 449 |
+
"epoch": 0.2950940612320177,
|
| 450 |
+
"eval_acc": 0.901896699528504,
|
| 451 |
+
"eval_loss": 0.3015853464603424,
|
| 452 |
+
"eval_runtime": 9.0231,
|
| 453 |
+
"eval_samples_per_second": 24.16,
|
| 454 |
+
"eval_steps_per_second": 3.103,
|
| 455 |
+
"step": 200
|
| 456 |
+
},
|
| 457 |
+
{
|
| 458 |
+
"acc": 0.91348085,
|
| 459 |
+
"epoch": 0.30247141276281814,
|
| 460 |
+
"grad_norm": 1.7818986098446097,
|
| 461 |
+
"learning_rate": 1.7884914463452566e-06,
|
| 462 |
+
"loss": 0.30208986,
|
| 463 |
+
"memory(GiB)": 44.06,
|
| 464 |
+
"step": 205,
|
| 465 |
+
"train_speed(iter/s)": 0.169194
|
| 466 |
+
},
|
| 467 |
+
{
|
| 468 |
+
"acc": 0.90921364,
|
| 469 |
+
"epoch": 0.3098487642936186,
|
| 470 |
+
"grad_norm": 4.02077354284952,
|
| 471 |
+
"learning_rate": 1.780715396578538e-06,
|
| 472 |
+
"loss": 0.31497798,
|
| 473 |
+
"memory(GiB)": 34.58,
|
| 474 |
+
"step": 210,
|
| 475 |
+
"train_speed(iter/s)": 0.169003
|
| 476 |
+
},
|
| 477 |
+
{
|
| 478 |
+
"acc": 0.91234264,
|
| 479 |
+
"epoch": 0.317226115824419,
|
| 480 |
+
"grad_norm": 1.856976113207096,
|
| 481 |
+
"learning_rate": 1.7729393468118195e-06,
|
| 482 |
+
"loss": 0.30694566,
|
| 483 |
+
"memory(GiB)": 33.8,
|
| 484 |
+
"step": 215,
|
| 485 |
+
"train_speed(iter/s)": 0.16984
|
| 486 |
+
},
|
| 487 |
+
{
|
| 488 |
+
"acc": 0.91051998,
|
| 489 |
+
"epoch": 0.3246034673552195,
|
| 490 |
+
"grad_norm": 1.7185168230569432,
|
| 491 |
+
"learning_rate": 1.765163297045101e-06,
|
| 492 |
+
"loss": 0.30961909,
|
| 493 |
+
"memory(GiB)": 32.79,
|
| 494 |
+
"step": 220,
|
| 495 |
+
"train_speed(iter/s)": 0.169666
|
| 496 |
+
},
|
| 497 |
+
{
|
| 498 |
+
"acc": 0.90716095,
|
| 499 |
+
"epoch": 0.33198081888601993,
|
| 500 |
+
"grad_norm": 1.340608010048739,
|
| 501 |
+
"learning_rate": 1.7573872472783826e-06,
|
| 502 |
+
"loss": 0.32777991,
|
| 503 |
+
"memory(GiB)": 32.43,
|
| 504 |
+
"step": 225,
|
| 505 |
+
"train_speed(iter/s)": 0.169965
|
| 506 |
+
},
|
| 507 |
+
{
|
| 508 |
+
"acc": 0.91547451,
|
| 509 |
+
"epoch": 0.33935817041682037,
|
| 510 |
+
"grad_norm": 1.6059763623857688,
|
| 511 |
+
"learning_rate": 1.749611197511664e-06,
|
| 512 |
+
"loss": 0.30423913,
|
| 513 |
+
"memory(GiB)": 34.95,
|
| 514 |
+
"step": 230,
|
| 515 |
+
"train_speed(iter/s)": 0.169935
|
| 516 |
+
},
|
| 517 |
+
{
|
| 518 |
+
"acc": 0.917132,
|
| 519 |
+
"epoch": 0.3467355219476208,
|
| 520 |
+
"grad_norm": 2.0390121908637644,
|
| 521 |
+
"learning_rate": 1.7418351477449455e-06,
|
| 522 |
+
"loss": 0.30788417,
|
| 523 |
+
"memory(GiB)": 34.18,
|
| 524 |
+
"step": 235,
|
| 525 |
+
"train_speed(iter/s)": 0.169583
|
| 526 |
+
},
|
| 527 |
+
{
|
| 528 |
+
"acc": 0.92253389,
|
| 529 |
+
"epoch": 0.35411287347842124,
|
| 530 |
+
"grad_norm": 1.7323441045370742,
|
| 531 |
+
"learning_rate": 1.734059097978227e-06,
|
| 532 |
+
"loss": 0.27823753,
|
| 533 |
+
"memory(GiB)": 31.85,
|
| 534 |
+
"step": 240,
|
| 535 |
+
"train_speed(iter/s)": 0.17024
|
| 536 |
+
},
|
| 537 |
+
{
|
| 538 |
+
"acc": 0.91325512,
|
| 539 |
+
"epoch": 0.3614902250092217,
|
| 540 |
+
"grad_norm": 1.6955182367729624,
|
| 541 |
+
"learning_rate": 1.7262830482115086e-06,
|
| 542 |
+
"loss": 0.31402481,
|
| 543 |
+
"memory(GiB)": 32.14,
|
| 544 |
+
"step": 245,
|
| 545 |
+
"train_speed(iter/s)": 0.169973
|
| 546 |
+
},
|
| 547 |
+
{
|
| 548 |
+
"acc": 0.91568565,
|
| 549 |
+
"epoch": 0.3688675765400221,
|
| 550 |
+
"grad_norm": 1.5212817841417117,
|
| 551 |
+
"learning_rate": 1.71850699844479e-06,
|
| 552 |
+
"loss": 0.29354782,
|
| 553 |
+
"memory(GiB)": 33.28,
|
| 554 |
+
"step": 250,
|
| 555 |
+
"train_speed(iter/s)": 0.169891
|
| 556 |
+
},
|
| 557 |
+
{
|
| 558 |
+
"epoch": 0.3688675765400221,
|
| 559 |
+
"eval_acc": 0.903888055436491,
|
| 560 |
+
"eval_loss": 0.2949393689632416,
|
| 561 |
+
"eval_runtime": 8.8569,
|
| 562 |
+
"eval_samples_per_second": 24.614,
|
| 563 |
+
"eval_steps_per_second": 3.161,
|
| 564 |
+
"step": 250
|
| 565 |
+
},
|
| 566 |
+
{
|
| 567 |
+
"acc": 0.91542091,
|
| 568 |
+
"epoch": 0.37624492807082255,
|
| 569 |
+
"grad_norm": 1.872512089057089,
|
| 570 |
+
"learning_rate": 1.7107309486780715e-06,
|
| 571 |
+
"loss": 0.29765024,
|
| 572 |
+
"memory(GiB)": 43.8,
|
| 573 |
+
"step": 255,
|
| 574 |
+
"train_speed(iter/s)": 0.169287
|
| 575 |
+
},
|
| 576 |
+
{
|
| 577 |
+
"acc": 0.90894642,
|
| 578 |
+
"epoch": 0.38362227960162304,
|
| 579 |
+
"grad_norm": 2.118992381164901,
|
| 580 |
+
"learning_rate": 1.702954898911353e-06,
|
| 581 |
+
"loss": 0.32009149,
|
| 582 |
+
"memory(GiB)": 33.0,
|
| 583 |
+
"step": 260,
|
| 584 |
+
"train_speed(iter/s)": 0.169108
|
| 585 |
+
},
|
| 586 |
+
{
|
| 587 |
+
"acc": 0.91895199,
|
| 588 |
+
"epoch": 0.3909996311324235,
|
| 589 |
+
"grad_norm": 1.8087446200238866,
|
| 590 |
+
"learning_rate": 1.6951788491446344e-06,
|
| 591 |
+
"loss": 0.28518291,
|
| 592 |
+
"memory(GiB)": 33.64,
|
| 593 |
+
"step": 265,
|
| 594 |
+
"train_speed(iter/s)": 0.169659
|
| 595 |
+
},
|
| 596 |
+
{
|
| 597 |
+
"acc": 0.91831837,
|
| 598 |
+
"epoch": 0.3983769826632239,
|
| 599 |
+
"grad_norm": 2.295227865477349,
|
| 600 |
+
"learning_rate": 1.6874027993779158e-06,
|
| 601 |
+
"loss": 0.29493954,
|
| 602 |
+
"memory(GiB)": 32.16,
|
| 603 |
+
"step": 270,
|
| 604 |
+
"train_speed(iter/s)": 0.16921
|
| 605 |
+
},
|
| 606 |
+
{
|
| 607 |
+
"acc": 0.91772842,
|
| 608 |
+
"epoch": 0.40575433419402435,
|
| 609 |
+
"grad_norm": 1.8335936104899577,
|
| 610 |
+
"learning_rate": 1.6796267496111975e-06,
|
| 611 |
+
"loss": 0.29295368,
|
| 612 |
+
"memory(GiB)": 32.48,
|
| 613 |
+
"step": 275,
|
| 614 |
+
"train_speed(iter/s)": 0.169211
|
| 615 |
+
},
|
| 616 |
+
{
|
| 617 |
+
"acc": 0.9184288,
|
| 618 |
+
"epoch": 0.4131316857248248,
|
| 619 |
+
"grad_norm": 1.9183997806679902,
|
| 620 |
+
"learning_rate": 1.671850699844479e-06,
|
| 621 |
+
"loss": 0.29449196,
|
| 622 |
+
"memory(GiB)": 32.65,
|
| 623 |
+
"step": 280,
|
| 624 |
+
"train_speed(iter/s)": 0.169821
|
| 625 |
+
},
|
| 626 |
+
{
|
| 627 |
+
"acc": 0.91275759,
|
| 628 |
+
"epoch": 0.4205090372556252,
|
| 629 |
+
"grad_norm": 1.5737005817463792,
|
| 630 |
+
"learning_rate": 1.6640746500777604e-06,
|
| 631 |
+
"loss": 0.30824404,
|
| 632 |
+
"memory(GiB)": 32.27,
|
| 633 |
+
"step": 285,
|
| 634 |
+
"train_speed(iter/s)": 0.169618
|
| 635 |
+
},
|
| 636 |
+
{
|
| 637 |
+
"acc": 0.91761837,
|
| 638 |
+
"epoch": 0.42788638878642565,
|
| 639 |
+
"grad_norm": 1.6411868652328097,
|
| 640 |
+
"learning_rate": 1.6562986003110419e-06,
|
| 641 |
+
"loss": 0.28589807,
|
| 642 |
+
"memory(GiB)": 33.9,
|
| 643 |
+
"step": 290,
|
| 644 |
+
"train_speed(iter/s)": 0.16978
|
| 645 |
+
},
|
| 646 |
+
{
|
| 647 |
+
"acc": 0.91096239,
|
| 648 |
+
"epoch": 0.4352637403172261,
|
| 649 |
+
"grad_norm": 1.4763719992796571,
|
| 650 |
+
"learning_rate": 1.6485225505443235e-06,
|
| 651 |
+
"loss": 0.31501875,
|
| 652 |
+
"memory(GiB)": 33.9,
|
| 653 |
+
"step": 295,
|
| 654 |
+
"train_speed(iter/s)": 0.170116
|
| 655 |
+
},
|
| 656 |
+
{
|
| 657 |
+
"acc": 0.92102461,
|
| 658 |
+
"epoch": 0.4426410918480266,
|
| 659 |
+
"grad_norm": 1.7038633862826587,
|
| 660 |
+
"learning_rate": 1.640746500777605e-06,
|
| 661 |
+
"loss": 0.28700156,
|
| 662 |
+
"memory(GiB)": 33.12,
|
| 663 |
+
"step": 300,
|
| 664 |
+
"train_speed(iter/s)": 0.16999
|
| 665 |
+
},
|
| 666 |
+
{
|
| 667 |
+
"epoch": 0.4426410918480266,
|
| 668 |
+
"eval_acc": 0.904986426632376,
|
| 669 |
+
"eval_loss": 0.28871360421180725,
|
| 670 |
+
"eval_runtime": 8.8172,
|
| 671 |
+
"eval_samples_per_second": 24.724,
|
| 672 |
+
"eval_steps_per_second": 3.176,
|
| 673 |
+
"step": 300
|
| 674 |
+
},
|
| 675 |
+
{
|
| 676 |
+
"acc": 0.9137413,
|
| 677 |
+
"epoch": 0.450018443378827,
|
| 678 |
+
"grad_norm": 1.5572757830459178,
|
| 679 |
+
"learning_rate": 1.6329704510108864e-06,
|
| 680 |
+
"loss": 0.3066596,
|
| 681 |
+
"memory(GiB)": 44.77,
|
| 682 |
+
"step": 305,
|
| 683 |
+
"train_speed(iter/s)": 0.169643
|
| 684 |
+
},
|
| 685 |
+
{
|
| 686 |
+
"acc": 0.92225361,
|
| 687 |
+
"epoch": 0.45739579490962745,
|
| 688 |
+
"grad_norm": 1.7973596806557957,
|
| 689 |
+
"learning_rate": 1.6251944012441679e-06,
|
| 690 |
+
"loss": 0.28060098,
|
| 691 |
+
"memory(GiB)": 34.38,
|
| 692 |
+
"step": 310,
|
| 693 |
+
"train_speed(iter/s)": 0.169469
|
| 694 |
+
},
|
| 695 |
+
{
|
| 696 |
+
"acc": 0.91542816,
|
| 697 |
+
"epoch": 0.4647731464404279,
|
| 698 |
+
"grad_norm": 1.7774091029439925,
|
| 699 |
+
"learning_rate": 1.6174183514774493e-06,
|
| 700 |
+
"loss": 0.29976537,
|
| 701 |
+
"memory(GiB)": 33.81,
|
| 702 |
+
"step": 315,
|
| 703 |
+
"train_speed(iter/s)": 0.169523
|
| 704 |
+
},
|
| 705 |
+
{
|
| 706 |
+
"acc": 0.91291943,
|
| 707 |
+
"epoch": 0.4721504979712283,
|
| 708 |
+
"grad_norm": 1.3755306649838441,
|
| 709 |
+
"learning_rate": 1.6096423017107308e-06,
|
| 710 |
+
"loss": 0.30613976,
|
| 711 |
+
"memory(GiB)": 33.81,
|
| 712 |
+
"step": 320,
|
| 713 |
+
"train_speed(iter/s)": 0.169769
|
| 714 |
+
},
|
| 715 |
+
{
|
| 716 |
+
"acc": 0.90916691,
|
| 717 |
+
"epoch": 0.47952784950202876,
|
| 718 |
+
"grad_norm": 1.9213831375809023,
|
| 719 |
+
"learning_rate": 1.6018662519440122e-06,
|
| 720 |
+
"loss": 0.32510529,
|
| 721 |
+
"memory(GiB)": 34.44,
|
| 722 |
+
"step": 325,
|
| 723 |
+
"train_speed(iter/s)": 0.169545
|
| 724 |
+
},
|
| 725 |
+
{
|
| 726 |
+
"acc": 0.91636696,
|
| 727 |
+
"epoch": 0.4869052010328292,
|
| 728 |
+
"grad_norm": 1.8837685149781478,
|
| 729 |
+
"learning_rate": 1.5940902021772939e-06,
|
| 730 |
+
"loss": 0.30537646,
|
| 731 |
+
"memory(GiB)": 31.2,
|
| 732 |
+
"step": 330,
|
| 733 |
+
"train_speed(iter/s)": 0.170038
|
| 734 |
+
},
|
| 735 |
+
{
|
| 736 |
+
"acc": 0.91307325,
|
| 737 |
+
"epoch": 0.4942825525636297,
|
| 738 |
+
"grad_norm": 1.8595782698159422,
|
| 739 |
+
"learning_rate": 1.5863141524105753e-06,
|
| 740 |
+
"loss": 0.30300996,
|
| 741 |
+
"memory(GiB)": 30.74,
|
| 742 |
+
"step": 335,
|
| 743 |
+
"train_speed(iter/s)": 0.169983
|
| 744 |
+
},
|
| 745 |
+
{
|
| 746 |
+
"acc": 0.91927223,
|
| 747 |
+
"epoch": 0.5016599040944301,
|
| 748 |
+
"grad_norm": 1.8693944311229003,
|
| 749 |
+
"learning_rate": 1.5785381026438568e-06,
|
| 750 |
+
"loss": 0.28294766,
|
| 751 |
+
"memory(GiB)": 31.5,
|
| 752 |
+
"step": 340,
|
| 753 |
+
"train_speed(iter/s)": 0.170169
|
| 754 |
+
},
|
| 755 |
+
{
|
| 756 |
+
"acc": 0.92018118,
|
| 757 |
+
"epoch": 0.5090372556252305,
|
| 758 |
+
"grad_norm": 1.6240951695142463,
|
| 759 |
+
"learning_rate": 1.5707620528771385e-06,
|
| 760 |
+
"loss": 0.27536349,
|
| 761 |
+
"memory(GiB)": 32.84,
|
| 762 |
+
"step": 345,
|
| 763 |
+
"train_speed(iter/s)": 0.170494
|
| 764 |
+
},
|
| 765 |
+
{
|
| 766 |
+
"acc": 0.91428967,
|
| 767 |
+
"epoch": 0.5164146071560309,
|
| 768 |
+
"grad_norm": 2.0654305075288653,
|
| 769 |
+
"learning_rate": 1.56298600311042e-06,
|
| 770 |
+
"loss": 0.30193062,
|
| 771 |
+
"memory(GiB)": 33.88,
|
| 772 |
+
"step": 350,
|
| 773 |
+
"train_speed(iter/s)": 0.170499
|
| 774 |
+
},
|
| 775 |
+
{
|
| 776 |
+
"epoch": 0.5164146071560309,
|
| 777 |
+
"eval_acc": 0.906031218745535,
|
| 778 |
+
"eval_loss": 0.2829771637916565,
|
| 779 |
+
"eval_runtime": 8.9252,
|
| 780 |
+
"eval_samples_per_second": 24.425,
|
| 781 |
+
"eval_steps_per_second": 3.137,
|
| 782 |
+
"step": 350
|
| 783 |
+
},
|
| 784 |
+
{
|
| 785 |
+
"acc": 0.92116051,
|
| 786 |
+
"epoch": 0.5237919586868315,
|
| 787 |
+
"grad_norm": 2.2709862324112136,
|
| 788 |
+
"learning_rate": 1.5552099533437014e-06,
|
| 789 |
+
"loss": 0.277144,
|
| 790 |
+
"memory(GiB)": 44.05,
|
| 791 |
+
"step": 355,
|
| 792 |
+
"train_speed(iter/s)": 0.169773
|
| 793 |
+
},
|
| 794 |
+
{
|
| 795 |
+
"acc": 0.90278854,
|
| 796 |
+
"epoch": 0.5311693102176319,
|
| 797 |
+
"grad_norm": 1.9738153042801483,
|
| 798 |
+
"learning_rate": 1.5474339035769828e-06,
|
| 799 |
+
"loss": 0.33822517,
|
| 800 |
+
"memory(GiB)": 31.78,
|
| 801 |
+
"step": 360,
|
| 802 |
+
"train_speed(iter/s)": 0.170163
|
| 803 |
+
},
|
| 804 |
+
{
|
| 805 |
+
"acc": 0.92497654,
|
| 806 |
+
"epoch": 0.5385466617484324,
|
| 807 |
+
"grad_norm": 1.2430005126419985,
|
| 808 |
+
"learning_rate": 1.5396578538102643e-06,
|
| 809 |
+
"loss": 0.26646669,
|
| 810 |
+
"memory(GiB)": 33.8,
|
| 811 |
+
"step": 365,
|
| 812 |
+
"train_speed(iter/s)": 0.16992
|
| 813 |
+
},
|
| 814 |
+
{
|
| 815 |
+
"acc": 0.91328669,
|
| 816 |
+
"epoch": 0.5459240132792328,
|
| 817 |
+
"grad_norm": 1.732568460701246,
|
| 818 |
+
"learning_rate": 1.5318818040435457e-06,
|
| 819 |
+
"loss": 0.30124869,
|
| 820 |
+
"memory(GiB)": 34.07,
|
| 821 |
+
"step": 370,
|
| 822 |
+
"train_speed(iter/s)": 0.170382
|
| 823 |
+
},
|
| 824 |
+
{
|
| 825 |
+
"acc": 0.91603355,
|
| 826 |
+
"epoch": 0.5533013648100332,
|
| 827 |
+
"grad_norm": 1.6627563648419381,
|
| 828 |
+
"learning_rate": 1.5241057542768272e-06,
|
| 829 |
+
"loss": 0.29759171,
|
| 830 |
+
"memory(GiB)": 32.61,
|
| 831 |
+
"step": 375,
|
| 832 |
+
"train_speed(iter/s)": 0.170197
|
| 833 |
+
},
|
| 834 |
+
{
|
| 835 |
+
"acc": 0.90871716,
|
| 836 |
+
"epoch": 0.5606787163408337,
|
| 837 |
+
"grad_norm": 2.1331488669107492,
|
| 838 |
+
"learning_rate": 1.5163297045101088e-06,
|
| 839 |
+
"loss": 0.33630853,
|
| 840 |
+
"memory(GiB)": 32.33,
|
| 841 |
+
"step": 380,
|
| 842 |
+
"train_speed(iter/s)": 0.17029
|
| 843 |
+
},
|
| 844 |
+
{
|
| 845 |
+
"acc": 0.90700073,
|
| 846 |
+
"epoch": 0.5680560678716341,
|
| 847 |
+
"grad_norm": 2.080763753555995,
|
| 848 |
+
"learning_rate": 1.5085536547433903e-06,
|
| 849 |
+
"loss": 0.325877,
|
| 850 |
+
"memory(GiB)": 32.95,
|
| 851 |
+
"step": 385,
|
| 852 |
+
"train_speed(iter/s)": 0.170474
|
| 853 |
+
},
|
| 854 |
+
{
|
| 855 |
+
"acc": 0.91835623,
|
| 856 |
+
"epoch": 0.5754334194024345,
|
| 857 |
+
"grad_norm": 1.5911495384236254,
|
| 858 |
+
"learning_rate": 1.500777604976672e-06,
|
| 859 |
+
"loss": 0.28332872,
|
| 860 |
+
"memory(GiB)": 31.78,
|
| 861 |
+
"step": 390,
|
| 862 |
+
"train_speed(iter/s)": 0.170283
|
| 863 |
+
},
|
| 864 |
+
{
|
| 865 |
+
"acc": 0.91712914,
|
| 866 |
+
"epoch": 0.582810770933235,
|
| 867 |
+
"grad_norm": 1.6237776507352246,
|
| 868 |
+
"learning_rate": 1.4930015552099534e-06,
|
| 869 |
+
"loss": 0.28782868,
|
| 870 |
+
"memory(GiB)": 33.13,
|
| 871 |
+
"step": 395,
|
| 872 |
+
"train_speed(iter/s)": 0.170424
|
| 873 |
+
},
|
| 874 |
+
{
|
| 875 |
+
"acc": 0.92452984,
|
| 876 |
+
"epoch": 0.5901881224640354,
|
| 877 |
+
"grad_norm": 1.9617693211652296,
|
| 878 |
+
"learning_rate": 1.4852255054432348e-06,
|
| 879 |
+
"loss": 0.25721183,
|
| 880 |
+
"memory(GiB)": 34.52,
|
| 881 |
+
"step": 400,
|
| 882 |
+
"train_speed(iter/s)": 0.170549
|
| 883 |
+
},
|
| 884 |
+
{
|
| 885 |
+
"epoch": 0.5901881224640354,
|
| 886 |
+
"eval_acc": 0.9067634662094585,
|
| 887 |
+
"eval_loss": 0.27780693769454956,
|
| 888 |
+
"eval_runtime": 8.9713,
|
| 889 |
+
"eval_samples_per_second": 24.3,
|
| 890 |
+
"eval_steps_per_second": 3.121,
|
| 891 |
+
"step": 400
|
| 892 |
+
},
|
| 893 |
+
{
|
| 894 |
+
"acc": 0.91402645,
|
| 895 |
+
"epoch": 0.5975654739948358,
|
| 896 |
+
"grad_norm": 1.6283342820719429,
|
| 897 |
+
"learning_rate": 1.4774494556765163e-06,
|
| 898 |
+
"loss": 0.29935551,
|
| 899 |
+
"memory(GiB)": 43.79,
|
| 900 |
+
"step": 405,
|
| 901 |
+
"train_speed(iter/s)": 0.169655
|
| 902 |
+
},
|
| 903 |
+
{
|
| 904 |
+
"acc": 0.91232147,
|
| 905 |
+
"epoch": 0.6049428255256363,
|
| 906 |
+
"grad_norm": 1.7979698219270268,
|
| 907 |
+
"learning_rate": 1.4696734059097977e-06,
|
| 908 |
+
"loss": 0.29618566,
|
| 909 |
+
"memory(GiB)": 34.75,
|
| 910 |
+
"step": 410,
|
| 911 |
+
"train_speed(iter/s)": 0.169867
|
| 912 |
+
},
|
| 913 |
+
{
|
| 914 |
+
"acc": 0.91495514,
|
| 915 |
+
"epoch": 0.6123201770564367,
|
| 916 |
+
"grad_norm": 1.400313093548897,
|
| 917 |
+
"learning_rate": 1.4618973561430792e-06,
|
| 918 |
+
"loss": 0.30076814,
|
| 919 |
+
"memory(GiB)": 33.36,
|
| 920 |
+
"step": 415,
|
| 921 |
+
"train_speed(iter/s)": 0.169686
|
| 922 |
+
},
|
| 923 |
+
{
|
| 924 |
+
"acc": 0.91793385,
|
| 925 |
+
"epoch": 0.6196975285872371,
|
| 926 |
+
"grad_norm": 1.5440217170439645,
|
| 927 |
+
"learning_rate": 1.4541213063763606e-06,
|
| 928 |
+
"loss": 0.27723732,
|
| 929 |
+
"memory(GiB)": 32.03,
|
| 930 |
+
"step": 420,
|
| 931 |
+
"train_speed(iter/s)": 0.169706
|
| 932 |
+
},
|
| 933 |
+
{
|
| 934 |
+
"acc": 0.92025652,
|
| 935 |
+
"epoch": 0.6270748801180376,
|
| 936 |
+
"grad_norm": 1.7171089334482643,
|
| 937 |
+
"learning_rate": 1.446345256609642e-06,
|
| 938 |
+
"loss": 0.28218346,
|
| 939 |
+
"memory(GiB)": 31.84,
|
| 940 |
+
"step": 425,
|
| 941 |
+
"train_speed(iter/s)": 0.169824
|
| 942 |
+
},
|
| 943 |
+
{
|
| 944 |
+
"acc": 0.91456184,
|
| 945 |
+
"epoch": 0.634452231648838,
|
| 946 |
+
"grad_norm": 1.7617810648771757,
|
| 947 |
+
"learning_rate": 1.4385692068429238e-06,
|
| 948 |
+
"loss": 0.30232787,
|
| 949 |
+
"memory(GiB)": 33.01,
|
| 950 |
+
"step": 430,
|
| 951 |
+
"train_speed(iter/s)": 0.169549
|
| 952 |
+
},
|
| 953 |
+
{
|
| 954 |
+
"acc": 0.91554451,
|
| 955 |
+
"epoch": 0.6418295831796386,
|
| 956 |
+
"grad_norm": 2.1102714988825966,
|
| 957 |
+
"learning_rate": 1.4307931570762052e-06,
|
| 958 |
+
"loss": 0.29879627,
|
| 959 |
+
"memory(GiB)": 33.18,
|
| 960 |
+
"step": 435,
|
| 961 |
+
"train_speed(iter/s)": 0.169677
|
| 962 |
+
},
|
| 963 |
+
{
|
| 964 |
+
"acc": 0.92126179,
|
| 965 |
+
"epoch": 0.649206934710439,
|
| 966 |
+
"grad_norm": 2.046949703950944,
|
| 967 |
+
"learning_rate": 1.4230171073094869e-06,
|
| 968 |
+
"loss": 0.27905126,
|
| 969 |
+
"memory(GiB)": 35.07,
|
| 970 |
+
"step": 440,
|
| 971 |
+
"train_speed(iter/s)": 0.169605
|
| 972 |
+
},
|
| 973 |
+
{
|
| 974 |
+
"acc": 0.90152893,
|
| 975 |
+
"epoch": 0.6565842862412394,
|
| 976 |
+
"grad_norm": 2.001971595085909,
|
| 977 |
+
"learning_rate": 1.4152410575427683e-06,
|
| 978 |
+
"loss": 0.34060516,
|
| 979 |
+
"memory(GiB)": 33.51,
|
| 980 |
+
"step": 445,
|
| 981 |
+
"train_speed(iter/s)": 0.169689
|
| 982 |
+
},
|
| 983 |
+
{
|
| 984 |
+
"acc": 0.91629639,
|
| 985 |
+
"epoch": 0.6639616377720399,
|
| 986 |
+
"grad_norm": 2.0397672790155528,
|
| 987 |
+
"learning_rate": 1.4074650077760498e-06,
|
| 988 |
+
"loss": 0.28595252,
|
| 989 |
+
"memory(GiB)": 34.12,
|
| 990 |
+
"step": 450,
|
| 991 |
+
"train_speed(iter/s)": 0.170047
|
| 992 |
+
},
|
| 993 |
+
{
|
| 994 |
+
"epoch": 0.6639616377720399,
|
| 995 |
+
"eval_acc": 0.9078082583226175,
|
| 996 |
+
"eval_loss": 0.2715848386287689,
|
| 997 |
+
"eval_runtime": 8.8964,
|
| 998 |
+
"eval_samples_per_second": 24.504,
|
| 999 |
+
"eval_steps_per_second": 3.147,
|
| 1000 |
+
"step": 450
|
| 1001 |
+
},
|
| 1002 |
+
{
|
| 1003 |
+
"acc": 0.92627125,
|
| 1004 |
+
"epoch": 0.6713389893028403,
|
| 1005 |
+
"grad_norm": 1.6378143906534044,
|
| 1006 |
+
"learning_rate": 1.3996889580093312e-06,
|
| 1007 |
+
"loss": 0.25918436,
|
| 1008 |
+
"memory(GiB)": 43.88,
|
| 1009 |
+
"step": 455,
|
| 1010 |
+
"train_speed(iter/s)": 0.169369
|
| 1011 |
+
},
|
| 1012 |
+
{
|
| 1013 |
+
"acc": 0.91979427,
|
| 1014 |
+
"epoch": 0.6787163408336407,
|
| 1015 |
+
"grad_norm": 1.7082862687854972,
|
| 1016 |
+
"learning_rate": 1.3919129082426127e-06,
|
| 1017 |
+
"loss": 0.27077117,
|
| 1018 |
+
"memory(GiB)": 32.33,
|
| 1019 |
+
"step": 460,
|
| 1020 |
+
"train_speed(iter/s)": 0.169438
|
| 1021 |
+
},
|
| 1022 |
+
{
|
| 1023 |
+
"acc": 0.91361713,
|
| 1024 |
+
"epoch": 0.6860936923644412,
|
| 1025 |
+
"grad_norm": 2.293000555161464,
|
| 1026 |
+
"learning_rate": 1.3841368584758941e-06,
|
| 1027 |
+
"loss": 0.30449131,
|
| 1028 |
+
"memory(GiB)": 32.93,
|
| 1029 |
+
"step": 465,
|
| 1030 |
+
"train_speed(iter/s)": 0.169581
|
| 1031 |
+
},
|
| 1032 |
+
{
|
| 1033 |
+
"acc": 0.91954422,
|
| 1034 |
+
"epoch": 0.6934710438952416,
|
| 1035 |
+
"grad_norm": 1.8478883729217541,
|
| 1036 |
+
"learning_rate": 1.3763608087091756e-06,
|
| 1037 |
+
"loss": 0.29147563,
|
| 1038 |
+
"memory(GiB)": 32.32,
|
| 1039 |
+
"step": 470,
|
| 1040 |
+
"train_speed(iter/s)": 0.169425
|
| 1041 |
+
},
|
| 1042 |
+
{
|
| 1043 |
+
"acc": 0.91925821,
|
| 1044 |
+
"epoch": 0.700848395426042,
|
| 1045 |
+
"grad_norm": 2.1771276083255833,
|
| 1046 |
+
"learning_rate": 1.368584758942457e-06,
|
| 1047 |
+
"loss": 0.27578421,
|
| 1048 |
+
"memory(GiB)": 31.55,
|
| 1049 |
+
"step": 475,
|
| 1050 |
+
"train_speed(iter/s)": 0.169717
|
| 1051 |
+
},
|
| 1052 |
+
{
|
| 1053 |
+
"acc": 0.91978226,
|
| 1054 |
+
"epoch": 0.7082257469568425,
|
| 1055 |
+
"grad_norm": 1.5525703471804124,
|
| 1056 |
+
"learning_rate": 1.3608087091757387e-06,
|
| 1057 |
+
"loss": 0.28457327,
|
| 1058 |
+
"memory(GiB)": 34.35,
|
| 1059 |
+
"step": 480,
|
| 1060 |
+
"train_speed(iter/s)": 0.169473
|
| 1061 |
+
},
|
| 1062 |
+
{
|
| 1063 |
+
"acc": 0.91358566,
|
| 1064 |
+
"epoch": 0.7156030984876429,
|
| 1065 |
+
"grad_norm": 1.6094545899681876,
|
| 1066 |
+
"learning_rate": 1.3530326594090201e-06,
|
| 1067 |
+
"loss": 0.29641771,
|
| 1068 |
+
"memory(GiB)": 34.35,
|
| 1069 |
+
"step": 485,
|
| 1070 |
+
"train_speed(iter/s)": 0.169292
|
| 1071 |
+
},
|
| 1072 |
+
{
|
| 1073 |
+
"acc": 0.9157114,
|
| 1074 |
+
"epoch": 0.7229804500184434,
|
| 1075 |
+
"grad_norm": 2.001462148706446,
|
| 1076 |
+
"learning_rate": 1.3452566096423018e-06,
|
| 1077 |
+
"loss": 0.30091541,
|
| 1078 |
+
"memory(GiB)": 33.0,
|
| 1079 |
+
"step": 490,
|
| 1080 |
+
"train_speed(iter/s)": 0.169539
|
| 1081 |
+
},
|
| 1082 |
+
{
|
| 1083 |
+
"acc": 0.9181448,
|
| 1084 |
+
"epoch": 0.7303578015492438,
|
| 1085 |
+
"grad_norm": 1.933852376850104,
|
| 1086 |
+
"learning_rate": 1.3374805598755833e-06,
|
| 1087 |
+
"loss": 0.28622799,
|
| 1088 |
+
"memory(GiB)": 31.96,
|
| 1089 |
+
"step": 495,
|
| 1090 |
+
"train_speed(iter/s)": 0.169315
|
| 1091 |
+
},
|
| 1092 |
+
{
|
| 1093 |
+
"acc": 0.91473122,
|
| 1094 |
+
"epoch": 0.7377351530800442,
|
| 1095 |
+
"grad_norm": 1.9036456322193762,
|
| 1096 |
+
"learning_rate": 1.3297045101088647e-06,
|
| 1097 |
+
"loss": 0.3094301,
|
| 1098 |
+
"memory(GiB)": 31.84,
|
| 1099 |
+
"step": 500,
|
| 1100 |
+
"train_speed(iter/s)": 0.169482
|
| 1101 |
+
},
|
| 1102 |
+
{
|
| 1103 |
+
"epoch": 0.7377351530800442,
|
| 1104 |
+
"eval_acc": 0.9090048578368338,
|
| 1105 |
+
"eval_loss": 0.2688305675983429,
|
| 1106 |
+
"eval_runtime": 8.8274,
|
| 1107 |
+
"eval_samples_per_second": 24.696,
|
| 1108 |
+
"eval_steps_per_second": 3.172,
|
| 1109 |
+
"step": 500
|
| 1110 |
+
},
|
| 1111 |
+
{
|
| 1112 |
+
"acc": 0.91458435,
|
| 1113 |
+
"epoch": 0.7451125046108447,
|
| 1114 |
+
"grad_norm": 1.9335752594206985,
|
| 1115 |
+
"learning_rate": 1.3219284603421462e-06,
|
| 1116 |
+
"loss": 0.29494238,
|
| 1117 |
+
"memory(GiB)": 43.4,
|
| 1118 |
+
"step": 505,
|
| 1119 |
+
"train_speed(iter/s)": 0.168821
|
| 1120 |
+
},
|
| 1121 |
+
{
|
| 1122 |
+
"acc": 0.9221386,
|
| 1123 |
+
"epoch": 0.7524898561416451,
|
| 1124 |
+
"grad_norm": 1.8197097143608403,
|
| 1125 |
+
"learning_rate": 1.3141524105754276e-06,
|
| 1126 |
+
"loss": 0.2647439,
|
| 1127 |
+
"memory(GiB)": 33.36,
|
| 1128 |
+
"step": 510,
|
| 1129 |
+
"train_speed(iter/s)": 0.168682
|
| 1130 |
+
},
|
| 1131 |
+
{
|
| 1132 |
+
"acc": 0.92193203,
|
| 1133 |
+
"epoch": 0.7598672076724456,
|
| 1134 |
+
"grad_norm": 1.901554742963865,
|
| 1135 |
+
"learning_rate": 1.306376360808709e-06,
|
| 1136 |
+
"loss": 0.27191839,
|
| 1137 |
+
"memory(GiB)": 30.47,
|
| 1138 |
+
"step": 515,
|
| 1139 |
+
"train_speed(iter/s)": 0.168924
|
| 1140 |
+
},
|
| 1141 |
+
{
|
| 1142 |
+
"acc": 0.91413088,
|
| 1143 |
+
"epoch": 0.7672445592032461,
|
| 1144 |
+
"grad_norm": 2.0670792917636236,
|
| 1145 |
+
"learning_rate": 1.2986003110419905e-06,
|
| 1146 |
+
"loss": 0.296503,
|
| 1147 |
+
"memory(GiB)": 32.43,
|
| 1148 |
+
"step": 520,
|
| 1149 |
+
"train_speed(iter/s)": 0.168732
|
| 1150 |
+
},
|
| 1151 |
+
{
|
| 1152 |
+
"acc": 0.92014456,
|
| 1153 |
+
"epoch": 0.7746219107340465,
|
| 1154 |
+
"grad_norm": 1.3940992355499904,
|
| 1155 |
+
"learning_rate": 1.290824261275272e-06,
|
| 1156 |
+
"loss": 0.27345006,
|
| 1157 |
+
"memory(GiB)": 31.88,
|
| 1158 |
+
"step": 525,
|
| 1159 |
+
"train_speed(iter/s)": 0.168564
|
| 1160 |
+
},
|
| 1161 |
+
{
|
| 1162 |
+
"acc": 0.91787033,
|
| 1163 |
+
"epoch": 0.781999262264847,
|
| 1164 |
+
"grad_norm": 1.7528498159038246,
|
| 1165 |
+
"learning_rate": 1.2830482115085536e-06,
|
| 1166 |
+
"loss": 0.27718287,
|
| 1167 |
+
"memory(GiB)": 32.83,
|
| 1168 |
+
"step": 530,
|
| 1169 |
+
"train_speed(iter/s)": 0.168633
|
| 1170 |
+
},
|
| 1171 |
+
{
|
| 1172 |
+
"acc": 0.91950254,
|
| 1173 |
+
"epoch": 0.7893766137956474,
|
| 1174 |
+
"grad_norm": 1.6045395248629215,
|
| 1175 |
+
"learning_rate": 1.275272161741835e-06,
|
| 1176 |
+
"loss": 0.27553134,
|
| 1177 |
+
"memory(GiB)": 30.99,
|
| 1178 |
+
"step": 535,
|
| 1179 |
+
"train_speed(iter/s)": 0.168504
|
| 1180 |
+
},
|
| 1181 |
+
{
|
| 1182 |
+
"acc": 0.91442375,
|
| 1183 |
+
"epoch": 0.7967539653264478,
|
| 1184 |
+
"grad_norm": 2.0480557410695686,
|
| 1185 |
+
"learning_rate": 1.2674961119751167e-06,
|
| 1186 |
+
"loss": 0.29672928,
|
| 1187 |
+
"memory(GiB)": 32.9,
|
| 1188 |
+
"step": 540,
|
| 1189 |
+
"train_speed(iter/s)": 0.168746
|
| 1190 |
+
},
|
| 1191 |
+
{
|
| 1192 |
+
"acc": 0.91783228,
|
| 1193 |
+
"epoch": 0.8041313168572483,
|
| 1194 |
+
"grad_norm": 1.7063380836356228,
|
| 1195 |
+
"learning_rate": 1.2597200622083982e-06,
|
| 1196 |
+
"loss": 0.28551073,
|
| 1197 |
+
"memory(GiB)": 32.64,
|
| 1198 |
+
"step": 545,
|
| 1199 |
+
"train_speed(iter/s)": 0.168632
|
| 1200 |
+
},
|
| 1201 |
+
{
|
| 1202 |
+
"acc": 0.91965294,
|
| 1203 |
+
"epoch": 0.8115086683880487,
|
| 1204 |
+
"grad_norm": 1.8091430299196016,
|
| 1205 |
+
"learning_rate": 1.2519440124416796e-06,
|
| 1206 |
+
"loss": 0.28367462,
|
| 1207 |
+
"memory(GiB)": 33.12,
|
| 1208 |
+
"step": 550,
|
| 1209 |
+
"train_speed(iter/s)": 0.168537
|
| 1210 |
+
},
|
| 1211 |
+
{
|
| 1212 |
+
"epoch": 0.8115086683880487,
|
| 1213 |
+
"eval_acc": 0.9094959994284898,
|
| 1214 |
+
"eval_loss": 0.265609472990036,
|
| 1215 |
+
"eval_runtime": 8.9354,
|
| 1216 |
+
"eval_samples_per_second": 24.397,
|
| 1217 |
+
"eval_steps_per_second": 3.134,
|
| 1218 |
+
"step": 550
|
| 1219 |
+
},
|
| 1220 |
+
{
|
| 1221 |
+
"acc": 0.91708422,
|
| 1222 |
+
"epoch": 0.8188860199188491,
|
| 1223 |
+
"grad_norm": 1.9338041082162762,
|
| 1224 |
+
"learning_rate": 1.244167962674961e-06,
|
| 1225 |
+
"loss": 0.30288501,
|
| 1226 |
+
"memory(GiB)": 44.46,
|
| 1227 |
+
"step": 555,
|
| 1228 |
+
"train_speed(iter/s)": 0.168246
|
| 1229 |
+
},
|
| 1230 |
+
{
|
| 1231 |
+
"acc": 0.91793032,
|
| 1232 |
+
"epoch": 0.8262633714496496,
|
| 1233 |
+
"grad_norm": 1.960186880981984,
|
| 1234 |
+
"learning_rate": 1.2363919129082425e-06,
|
| 1235 |
+
"loss": 0.29391913,
|
| 1236 |
+
"memory(GiB)": 33.02,
|
| 1237 |
+
"step": 560,
|
| 1238 |
+
"train_speed(iter/s)": 0.168119
|
| 1239 |
+
},
|
| 1240 |
+
{
|
| 1241 |
+
"acc": 0.92976294,
|
| 1242 |
+
"epoch": 0.83364072298045,
|
| 1243 |
+
"grad_norm": 1.7220525036525174,
|
| 1244 |
+
"learning_rate": 1.228615863141524e-06,
|
| 1245 |
+
"loss": 0.24753182,
|
| 1246 |
+
"memory(GiB)": 32.77,
|
| 1247 |
+
"step": 565,
|
| 1248 |
+
"train_speed(iter/s)": 0.16819
|
| 1249 |
+
},
|
| 1250 |
+
{
|
| 1251 |
+
"acc": 0.9202878,
|
| 1252 |
+
"epoch": 0.8410180745112504,
|
| 1253 |
+
"grad_norm": 1.9681280144249207,
|
| 1254 |
+
"learning_rate": 1.2208398133748054e-06,
|
| 1255 |
+
"loss": 0.27648234,
|
| 1256 |
+
"memory(GiB)": 32.36,
|
| 1257 |
+
"step": 570,
|
| 1258 |
+
"train_speed(iter/s)": 0.168331
|
| 1259 |
+
},
|
| 1260 |
+
{
|
| 1261 |
+
"acc": 0.91870079,
|
| 1262 |
+
"epoch": 0.8483954260420509,
|
| 1263 |
+
"grad_norm": 1.6402903494642216,
|
| 1264 |
+
"learning_rate": 1.2130637636080869e-06,
|
| 1265 |
+
"loss": 0.29140263,
|
| 1266 |
+
"memory(GiB)": 35.18,
|
| 1267 |
+
"step": 575,
|
| 1268 |
+
"train_speed(iter/s)": 0.168255
|
| 1269 |
+
},
|
| 1270 |
+
{
|
| 1271 |
+
"acc": 0.91364193,
|
| 1272 |
+
"epoch": 0.8557727775728513,
|
| 1273 |
+
"grad_norm": 2.146651599757078,
|
| 1274 |
+
"learning_rate": 1.2052877138413686e-06,
|
| 1275 |
+
"loss": 0.31224487,
|
| 1276 |
+
"memory(GiB)": 37.43,
|
| 1277 |
+
"step": 580,
|
| 1278 |
+
"train_speed(iter/s)": 0.168463
|
| 1279 |
+
},
|
| 1280 |
+
{
|
| 1281 |
+
"acc": 0.92091951,
|
| 1282 |
+
"epoch": 0.8631501291036517,
|
| 1283 |
+
"grad_norm": 2.110687395796676,
|
| 1284 |
+
"learning_rate": 1.19751166407465e-06,
|
| 1285 |
+
"loss": 0.27074888,
|
| 1286 |
+
"memory(GiB)": 30.34,
|
| 1287 |
+
"step": 585,
|
| 1288 |
+
"train_speed(iter/s)": 0.16837
|
| 1289 |
+
},
|
| 1290 |
+
{
|
| 1291 |
+
"acc": 0.92361298,
|
| 1292 |
+
"epoch": 0.8705274806344522,
|
| 1293 |
+
"grad_norm": 1.341809177582426,
|
| 1294 |
+
"learning_rate": 1.1897356143079317e-06,
|
| 1295 |
+
"loss": 0.26371779,
|
| 1296 |
+
"memory(GiB)": 32.35,
|
| 1297 |
+
"step": 590,
|
| 1298 |
+
"train_speed(iter/s)": 0.168375
|
| 1299 |
+
},
|
| 1300 |
+
{
|
| 1301 |
+
"acc": 0.92123985,
|
| 1302 |
+
"epoch": 0.8779048321652527,
|
| 1303 |
+
"grad_norm": 1.8270563745834436,
|
| 1304 |
+
"learning_rate": 1.1819595645412131e-06,
|
| 1305 |
+
"loss": 0.26702247,
|
| 1306 |
+
"memory(GiB)": 34.77,
|
| 1307 |
+
"step": 595,
|
| 1308 |
+
"train_speed(iter/s)": 0.168532
|
| 1309 |
+
},
|
| 1310 |
+
{
|
| 1311 |
+
"acc": 0.91653709,
|
| 1312 |
+
"epoch": 0.8852821836960532,
|
| 1313 |
+
"grad_norm": 1.6527432011832037,
|
| 1314 |
+
"learning_rate": 1.1741835147744946e-06,
|
| 1315 |
+
"loss": 0.29842911,
|
| 1316 |
+
"memory(GiB)": 33.87,
|
| 1317 |
+
"step": 600,
|
| 1318 |
+
"train_speed(iter/s)": 0.168424
|
| 1319 |
+
},
|
| 1320 |
+
{
|
| 1321 |
+
"epoch": 0.8852821836960532,
|
| 1322 |
+
"eval_acc": 0.9105765109301329,
|
| 1323 |
+
"eval_loss": 0.2623133361339569,
|
| 1324 |
+
"eval_runtime": 8.7796,
|
| 1325 |
+
"eval_samples_per_second": 24.83,
|
| 1326 |
+
"eval_steps_per_second": 3.189,
|
| 1327 |
+
"step": 600
|
| 1328 |
+
},
|
| 1329 |
+
{
|
| 1330 |
+
"acc": 0.91810665,
|
| 1331 |
+
"epoch": 0.8926595352268536,
|
| 1332 |
+
"grad_norm": 1.3239706750197222,
|
| 1333 |
+
"learning_rate": 1.166407465007776e-06,
|
| 1334 |
+
"loss": 0.29543982,
|
| 1335 |
+
"memory(GiB)": 43.63,
|
| 1336 |
+
"step": 605,
|
| 1337 |
+
"train_speed(iter/s)": 0.16811
|
| 1338 |
+
},
|
| 1339 |
+
{
|
| 1340 |
+
"acc": 0.92373562,
|
| 1341 |
+
"epoch": 0.900036886757654,
|
| 1342 |
+
"grad_norm": 1.589090709862595,
|
| 1343 |
+
"learning_rate": 1.1586314152410575e-06,
|
| 1344 |
+
"loss": 0.27000737,
|
| 1345 |
+
"memory(GiB)": 32.08,
|
| 1346 |
+
"step": 610,
|
| 1347 |
+
"train_speed(iter/s)": 0.168111
|
| 1348 |
+
},
|
| 1349 |
+
{
|
| 1350 |
+
"acc": 0.92571859,
|
| 1351 |
+
"epoch": 0.9074142382884545,
|
| 1352 |
+
"grad_norm": 1.786690071917202,
|
| 1353 |
+
"learning_rate": 1.150855365474339e-06,
|
| 1354 |
+
"loss": 0.26558821,
|
| 1355 |
+
"memory(GiB)": 34.26,
|
| 1356 |
+
"step": 615,
|
| 1357 |
+
"train_speed(iter/s)": 0.167944
|
| 1358 |
+
},
|
| 1359 |
+
{
|
| 1360 |
+
"acc": 0.92350941,
|
| 1361 |
+
"epoch": 0.9147915898192549,
|
| 1362 |
+
"grad_norm": 1.4482760998007842,
|
| 1363 |
+
"learning_rate": 1.1430793157076204e-06,
|
| 1364 |
+
"loss": 0.27038224,
|
| 1365 |
+
"memory(GiB)": 32.87,
|
| 1366 |
+
"step": 620,
|
| 1367 |
+
"train_speed(iter/s)": 0.168075
|
| 1368 |
+
},
|
| 1369 |
+
{
|
| 1370 |
+
"acc": 0.92567997,
|
| 1371 |
+
"epoch": 0.9221689413500553,
|
| 1372 |
+
"grad_norm": 1.5651995631831526,
|
| 1373 |
+
"learning_rate": 1.1353032659409018e-06,
|
| 1374 |
+
"loss": 0.25891747,
|
| 1375 |
+
"memory(GiB)": 32.63,
|
| 1376 |
+
"step": 625,
|
| 1377 |
+
"train_speed(iter/s)": 0.168015
|
| 1378 |
+
},
|
| 1379 |
+
{
|
| 1380 |
+
"acc": 0.91823616,
|
| 1381 |
+
"epoch": 0.9295462928808558,
|
| 1382 |
+
"grad_norm": 1.4462434724962336,
|
| 1383 |
+
"learning_rate": 1.1275272161741835e-06,
|
| 1384 |
+
"loss": 0.2788033,
|
| 1385 |
+
"memory(GiB)": 38.22,
|
| 1386 |
+
"step": 630,
|
| 1387 |
+
"train_speed(iter/s)": 0.167998
|
| 1388 |
+
},
|
| 1389 |
+
{
|
| 1390 |
+
"acc": 0.92322083,
|
| 1391 |
+
"epoch": 0.9369236444116562,
|
| 1392 |
+
"grad_norm": 1.4194043988299254,
|
| 1393 |
+
"learning_rate": 1.119751166407465e-06,
|
| 1394 |
+
"loss": 0.26030297,
|
| 1395 |
+
"memory(GiB)": 32.29,
|
| 1396 |
+
"step": 635,
|
| 1397 |
+
"train_speed(iter/s)": 0.168162
|
| 1398 |
+
},
|
| 1399 |
+
{
|
| 1400 |
+
"acc": 0.92457771,
|
| 1401 |
+
"epoch": 0.9443009959424566,
|
| 1402 |
+
"grad_norm": 1.8304569462755849,
|
| 1403 |
+
"learning_rate": 1.1119751166407466e-06,
|
| 1404 |
+
"loss": 0.27183619,
|
| 1405 |
+
"memory(GiB)": 35.33,
|
| 1406 |
+
"step": 640,
|
| 1407 |
+
"train_speed(iter/s)": 0.168086
|
| 1408 |
+
},
|
| 1409 |
+
{
|
| 1410 |
+
"acc": 0.9201807,
|
| 1411 |
+
"epoch": 0.9516783474732571,
|
| 1412 |
+
"grad_norm": 1.6355541683467607,
|
| 1413 |
+
"learning_rate": 1.104199066874028e-06,
|
| 1414 |
+
"loss": 0.27730408,
|
| 1415 |
+
"memory(GiB)": 31.4,
|
| 1416 |
+
"step": 645,
|
| 1417 |
+
"train_speed(iter/s)": 0.168284
|
| 1418 |
+
},
|
| 1419 |
+
{
|
| 1420 |
+
"acc": 0.92337418,
|
| 1421 |
+
"epoch": 0.9590556990040575,
|
| 1422 |
+
"grad_norm": 1.6309155055635356,
|
| 1423 |
+
"learning_rate": 1.0964230171073095e-06,
|
| 1424 |
+
"loss": 0.25860276,
|
| 1425 |
+
"memory(GiB)": 32.67,
|
| 1426 |
+
"step": 650,
|
| 1427 |
+
"train_speed(iter/s)": 0.168267
|
| 1428 |
+
},
|
| 1429 |
+
{
|
| 1430 |
+
"epoch": 0.9590556990040575,
|
| 1431 |
+
"eval_acc": 0.9113176882411773,
|
| 1432 |
+
"eval_loss": 0.2569684386253357,
|
| 1433 |
+
"eval_runtime": 8.8598,
|
| 1434 |
+
"eval_samples_per_second": 24.605,
|
| 1435 |
+
"eval_steps_per_second": 3.16,
|
| 1436 |
+
"step": 650
|
| 1437 |
+
},
|
| 1438 |
+
{
|
| 1439 |
+
"acc": 0.91919975,
|
| 1440 |
+
"epoch": 0.966433050534858,
|
| 1441 |
+
"grad_norm": 1.482378816274918,
|
| 1442 |
+
"learning_rate": 1.088646967340591e-06,
|
| 1443 |
+
"loss": 0.28527048,
|
| 1444 |
+
"memory(GiB)": 45.59,
|
| 1445 |
+
"step": 655,
|
| 1446 |
+
"train_speed(iter/s)": 0.167772
|
| 1447 |
+
},
|
| 1448 |
+
{
|
| 1449 |
+
"acc": 0.92037735,
|
| 1450 |
+
"epoch": 0.9738104020656584,
|
| 1451 |
+
"grad_norm": 2.2165369625767712,
|
| 1452 |
+
"learning_rate": 1.0808709175738724e-06,
|
| 1453 |
+
"loss": 0.28198528,
|
| 1454 |
+
"memory(GiB)": 32.93,
|
| 1455 |
+
"step": 660,
|
| 1456 |
+
"train_speed(iter/s)": 0.16789
|
| 1457 |
+
},
|
| 1458 |
+
{
|
| 1459 |
+
"acc": 0.92200727,
|
| 1460 |
+
"epoch": 0.9811877535964588,
|
| 1461 |
+
"grad_norm": 1.7151646172394919,
|
| 1462 |
+
"learning_rate": 1.0730948678071539e-06,
|
| 1463 |
+
"loss": 0.27098572,
|
| 1464 |
+
"memory(GiB)": 33.1,
|
| 1465 |
+
"step": 665,
|
| 1466 |
+
"train_speed(iter/s)": 0.167862
|
| 1467 |
+
},
|
| 1468 |
+
{
|
| 1469 |
+
"acc": 0.92197828,
|
| 1470 |
+
"epoch": 0.9885651051272594,
|
| 1471 |
+
"grad_norm": 2.076606131505725,
|
| 1472 |
+
"learning_rate": 1.0653188180404353e-06,
|
| 1473 |
+
"loss": 0.26747627,
|
| 1474 |
+
"memory(GiB)": 34.45,
|
| 1475 |
+
"step": 670,
|
| 1476 |
+
"train_speed(iter/s)": 0.167945
|
| 1477 |
+
},
|
| 1478 |
+
{
|
| 1479 |
+
"acc": 0.92063084,
|
| 1480 |
+
"epoch": 0.9959424566580598,
|
| 1481 |
+
"grad_norm": 1.7465662806523121,
|
| 1482 |
+
"learning_rate": 1.0575427682737168e-06,
|
| 1483 |
+
"loss": 0.27087922,
|
| 1484 |
+
"memory(GiB)": 39.51,
|
| 1485 |
+
"step": 675,
|
| 1486 |
+
"train_speed(iter/s)": 0.167951
|
| 1487 |
+
}
|
| 1488 |
+
],
|
| 1489 |
+
"logging_steps": 5,
|
| 1490 |
+
"max_steps": 1354,
|
| 1491 |
+
"num_input_tokens_seen": 0,
|
| 1492 |
+
"num_train_epochs": 2,
|
| 1493 |
+
"save_steps": 50,
|
| 1494 |
+
"stateful_callbacks": {
|
| 1495 |
+
"TrainerControl": {
|
| 1496 |
+
"args": {
|
| 1497 |
+
"should_epoch_stop": false,
|
| 1498 |
+
"should_evaluate": false,
|
| 1499 |
+
"should_log": false,
|
| 1500 |
+
"should_save": true,
|
| 1501 |
+
"should_training_stop": false
|
| 1502 |
+
},
|
| 1503 |
+
"attributes": {}
|
| 1504 |
+
}
|
| 1505 |
+
},
|
| 1506 |
+
"total_flos": 66000591650816.0,
|
| 1507 |
+
"train_batch_size": 1,
|
| 1508 |
+
"trial_name": null,
|
| 1509 |
+
"trial_params": null
|
| 1510 |
+
}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:db895db676f1132e5b2e845b6c0bb8837d6f93c54f91e1c83d8110b58f4af51e
|
| 3 |
+
size 10168
|
vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|