Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- README.md +60 -0
- added_tokens.json +24 -0
- all_results.json +9 -0
- config.json +29 -0
- generation_config.json +14 -0
- merges.txt +0 -0
- model-00001-of-00002.safetensors +3 -0
- model-00002-of-00002.safetensors +3 -0
- model.safetensors.index.json +441 -0
- runs/Oct11_07-10-34_a6000/events.out.tfevents.1760166694.a6000.2127441.0 +3 -0
- special_tokens_map.json +31 -0
- tokenizer.json +3 -0
- tokenizer_config.json +207 -0
- train_results.json +9 -0
- trainer_state.json +868 -0
- training_args.bin +3 -0
- vocab.json +0 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
library_name: transformers
|
| 3 |
+
base_model: Qwen/Qwen2.5-Coder-3B-Instruct
|
| 4 |
+
tags:
|
| 5 |
+
- alignment-handbook
|
| 6 |
+
- generated_from_trainer
|
| 7 |
+
datasets:
|
| 8 |
+
- griffith-bigdata/sft_text2sql
|
| 9 |
+
model-index:
|
| 10 |
+
- name: Qwen-2.5-Coder-3B-SQL-Writer
|
| 11 |
+
results: []
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
| 15 |
+
should probably proofread and complete it, then remove this comment. -->
|
| 16 |
+
|
| 17 |
+
# Qwen-2.5-Coder-3B-SQL-Writer
|
| 18 |
+
|
| 19 |
+
This model is a fine-tuned version of [/home/datht/huggingface/Qwen/Qwen2.5-Coder-3B-Instruct](https://huggingface.co//home/datht/huggingface/Qwen/Qwen2.5-Coder-3B-Instruct) on the /home/datht/mats/data/sft/sft_text2sql_v2 dataset.
|
| 20 |
+
|
| 21 |
+
## Model description
|
| 22 |
+
|
| 23 |
+
More information needed
|
| 24 |
+
|
| 25 |
+
## Intended uses & limitations
|
| 26 |
+
|
| 27 |
+
More information needed
|
| 28 |
+
|
| 29 |
+
## Training and evaluation data
|
| 30 |
+
|
| 31 |
+
More information needed
|
| 32 |
+
|
| 33 |
+
## Training procedure
|
| 34 |
+
|
| 35 |
+
### Training hyperparameters
|
| 36 |
+
|
| 37 |
+
The following hyperparameters were used during training:
|
| 38 |
+
- learning_rate: 2e-05
|
| 39 |
+
- train_batch_size: 1
|
| 40 |
+
- eval_batch_size: 1
|
| 41 |
+
- seed: 42
|
| 42 |
+
- distributed_type: multi-GPU
|
| 43 |
+
- num_devices: 2
|
| 44 |
+
- gradient_accumulation_steps: 64
|
| 45 |
+
- total_train_batch_size: 128
|
| 46 |
+
- total_eval_batch_size: 2
|
| 47 |
+
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
|
| 48 |
+
- lr_scheduler_type: cosine
|
| 49 |
+
- num_epochs: 2
|
| 50 |
+
|
| 51 |
+
### Training results
|
| 52 |
+
|
| 53 |
+
|
| 54 |
+
|
| 55 |
+
### Framework versions
|
| 56 |
+
|
| 57 |
+
- Transformers 4.45.0
|
| 58 |
+
- Pytorch 2.2.2+cu121
|
| 59 |
+
- Datasets 4.1.1
|
| 60 |
+
- Tokenizers 0.20.3
|
added_tokens.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"</tool_call>": 151658,
|
| 3 |
+
"<tool_call>": 151657,
|
| 4 |
+
"<|box_end|>": 151649,
|
| 5 |
+
"<|box_start|>": 151648,
|
| 6 |
+
"<|endoftext|>": 151643,
|
| 7 |
+
"<|file_sep|>": 151664,
|
| 8 |
+
"<|fim_middle|>": 151660,
|
| 9 |
+
"<|fim_pad|>": 151662,
|
| 10 |
+
"<|fim_prefix|>": 151659,
|
| 11 |
+
"<|fim_suffix|>": 151661,
|
| 12 |
+
"<|im_end|>": 151645,
|
| 13 |
+
"<|im_start|>": 151644,
|
| 14 |
+
"<|image_pad|>": 151655,
|
| 15 |
+
"<|object_ref_end|>": 151647,
|
| 16 |
+
"<|object_ref_start|>": 151646,
|
| 17 |
+
"<|quad_end|>": 151651,
|
| 18 |
+
"<|quad_start|>": 151650,
|
| 19 |
+
"<|repo_name|>": 151663,
|
| 20 |
+
"<|video_pad|>": 151656,
|
| 21 |
+
"<|vision_end|>": 151653,
|
| 22 |
+
"<|vision_pad|>": 151654,
|
| 23 |
+
"<|vision_start|>": 151652
|
| 24 |
+
}
|
all_results.json
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"epoch": 1.9946814168705456,
|
| 3 |
+
"total_flos": 2.1138563148357304e+18,
|
| 4 |
+
"train_loss": 0.4405478376373903,
|
| 5 |
+
"train_runtime": 25027.7179,
|
| 6 |
+
"train_samples": 37603,
|
| 7 |
+
"train_samples_per_second": 3.005,
|
| 8 |
+
"train_steps_per_second": 0.023
|
| 9 |
+
}
|
config.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_name_or_path": "/home/datht/huggingface/Qwen/Qwen2.5-Coder-3B-Instruct",
|
| 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": 2048,
|
| 11 |
+
"initializer_range": 0.02,
|
| 12 |
+
"intermediate_size": 11008,
|
| 13 |
+
"max_position_embeddings": 32768,
|
| 14 |
+
"max_window_layers": 36,
|
| 15 |
+
"model_type": "qwen2",
|
| 16 |
+
"num_attention_heads": 16,
|
| 17 |
+
"num_hidden_layers": 36,
|
| 18 |
+
"num_key_value_heads": 2,
|
| 19 |
+
"rms_norm_eps": 1e-06,
|
| 20 |
+
"rope_scaling": null,
|
| 21 |
+
"rope_theta": 1000000.0,
|
| 22 |
+
"sliding_window": null,
|
| 23 |
+
"tie_word_embeddings": true,
|
| 24 |
+
"torch_dtype": "bfloat16",
|
| 25 |
+
"transformers_version": "4.45.0",
|
| 26 |
+
"use_cache": true,
|
| 27 |
+
"use_sliding_window": false,
|
| 28 |
+
"vocab_size": 151936
|
| 29 |
+
}
|
generation_config.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token_id": 151643,
|
| 3 |
+
"do_sample": true,
|
| 4 |
+
"eos_token_id": [
|
| 5 |
+
151645,
|
| 6 |
+
151643
|
| 7 |
+
],
|
| 8 |
+
"pad_token_id": 151643,
|
| 9 |
+
"repetition_penalty": 1.05,
|
| 10 |
+
"temperature": 0.7,
|
| 11 |
+
"top_k": 20,
|
| 12 |
+
"top_p": 0.8,
|
| 13 |
+
"transformers_version": "4.45.0"
|
| 14 |
+
}
|
merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
model-00001-of-00002.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e4ca11f48e4b94713268508e27d399ef6e344770313bc0aa333e29658a81038d
|
| 3 |
+
size 4957560304
|
model-00002-of-00002.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8e7d63a7e780eb2f18b87642be883ddc8a392fb6e2c8dc81439ad308ec460d2b
|
| 3 |
+
size 1214366696
|
model.safetensors.index.json
ADDED
|
@@ -0,0 +1,441 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata": {
|
| 3 |
+
"total_size": 6171877376
|
| 4 |
+
},
|
| 5 |
+
"weight_map": {
|
| 6 |
+
"model.embed_tokens.weight": "model-00001-of-00002.safetensors",
|
| 7 |
+
"model.layers.0.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 8 |
+
"model.layers.0.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 9 |
+
"model.layers.0.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 10 |
+
"model.layers.0.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 11 |
+
"model.layers.0.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 12 |
+
"model.layers.0.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
| 13 |
+
"model.layers.0.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 14 |
+
"model.layers.0.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 15 |
+
"model.layers.0.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
| 16 |
+
"model.layers.0.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 17 |
+
"model.layers.0.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
| 18 |
+
"model.layers.0.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 19 |
+
"model.layers.1.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 20 |
+
"model.layers.1.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 21 |
+
"model.layers.1.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 22 |
+
"model.layers.1.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 23 |
+
"model.layers.1.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 24 |
+
"model.layers.1.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
| 25 |
+
"model.layers.1.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 26 |
+
"model.layers.1.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 27 |
+
"model.layers.1.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
| 28 |
+
"model.layers.1.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 29 |
+
"model.layers.1.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
| 30 |
+
"model.layers.1.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 31 |
+
"model.layers.10.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 32 |
+
"model.layers.10.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 33 |
+
"model.layers.10.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 34 |
+
"model.layers.10.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 35 |
+
"model.layers.10.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 36 |
+
"model.layers.10.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
| 37 |
+
"model.layers.10.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 38 |
+
"model.layers.10.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 39 |
+
"model.layers.10.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
| 40 |
+
"model.layers.10.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 41 |
+
"model.layers.10.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
| 42 |
+
"model.layers.10.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 43 |
+
"model.layers.11.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 44 |
+
"model.layers.11.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 45 |
+
"model.layers.11.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 46 |
+
"model.layers.11.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 47 |
+
"model.layers.11.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 48 |
+
"model.layers.11.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
| 49 |
+
"model.layers.11.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 50 |
+
"model.layers.11.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 51 |
+
"model.layers.11.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
| 52 |
+
"model.layers.11.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 53 |
+
"model.layers.11.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
| 54 |
+
"model.layers.11.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 55 |
+
"model.layers.12.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 56 |
+
"model.layers.12.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 57 |
+
"model.layers.12.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 58 |
+
"model.layers.12.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 59 |
+
"model.layers.12.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 60 |
+
"model.layers.12.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
| 61 |
+
"model.layers.12.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 62 |
+
"model.layers.12.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 63 |
+
"model.layers.12.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
| 64 |
+
"model.layers.12.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 65 |
+
"model.layers.12.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
| 66 |
+
"model.layers.12.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 67 |
+
"model.layers.13.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 68 |
+
"model.layers.13.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 69 |
+
"model.layers.13.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 70 |
+
"model.layers.13.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 71 |
+
"model.layers.13.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 72 |
+
"model.layers.13.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
| 73 |
+
"model.layers.13.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 74 |
+
"model.layers.13.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 75 |
+
"model.layers.13.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
| 76 |
+
"model.layers.13.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 77 |
+
"model.layers.13.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
| 78 |
+
"model.layers.13.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 79 |
+
"model.layers.14.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 80 |
+
"model.layers.14.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 81 |
+
"model.layers.14.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 82 |
+
"model.layers.14.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 83 |
+
"model.layers.14.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 84 |
+
"model.layers.14.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
| 85 |
+
"model.layers.14.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 86 |
+
"model.layers.14.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 87 |
+
"model.layers.14.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
| 88 |
+
"model.layers.14.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 89 |
+
"model.layers.14.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
| 90 |
+
"model.layers.14.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 91 |
+
"model.layers.15.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 92 |
+
"model.layers.15.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 93 |
+
"model.layers.15.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 94 |
+
"model.layers.15.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 95 |
+
"model.layers.15.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 96 |
+
"model.layers.15.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
| 97 |
+
"model.layers.15.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 98 |
+
"model.layers.15.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 99 |
+
"model.layers.15.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
| 100 |
+
"model.layers.15.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 101 |
+
"model.layers.15.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
| 102 |
+
"model.layers.15.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 103 |
+
"model.layers.16.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 104 |
+
"model.layers.16.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 105 |
+
"model.layers.16.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 106 |
+
"model.layers.16.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 107 |
+
"model.layers.16.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 108 |
+
"model.layers.16.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
| 109 |
+
"model.layers.16.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 110 |
+
"model.layers.16.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 111 |
+
"model.layers.16.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
| 112 |
+
"model.layers.16.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 113 |
+
"model.layers.16.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
| 114 |
+
"model.layers.16.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 115 |
+
"model.layers.17.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 116 |
+
"model.layers.17.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 117 |
+
"model.layers.17.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 118 |
+
"model.layers.17.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 119 |
+
"model.layers.17.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 120 |
+
"model.layers.17.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
| 121 |
+
"model.layers.17.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 122 |
+
"model.layers.17.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 123 |
+
"model.layers.17.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
| 124 |
+
"model.layers.17.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 125 |
+
"model.layers.17.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
| 126 |
+
"model.layers.17.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 127 |
+
"model.layers.18.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 128 |
+
"model.layers.18.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 129 |
+
"model.layers.18.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 130 |
+
"model.layers.18.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 131 |
+
"model.layers.18.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 132 |
+
"model.layers.18.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
| 133 |
+
"model.layers.18.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 134 |
+
"model.layers.18.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 135 |
+
"model.layers.18.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
| 136 |
+
"model.layers.18.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 137 |
+
"model.layers.18.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
| 138 |
+
"model.layers.18.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 139 |
+
"model.layers.19.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 140 |
+
"model.layers.19.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 141 |
+
"model.layers.19.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 142 |
+
"model.layers.19.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 143 |
+
"model.layers.19.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 144 |
+
"model.layers.19.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
| 145 |
+
"model.layers.19.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 146 |
+
"model.layers.19.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 147 |
+
"model.layers.19.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
| 148 |
+
"model.layers.19.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 149 |
+
"model.layers.19.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
| 150 |
+
"model.layers.19.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 151 |
+
"model.layers.2.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 152 |
+
"model.layers.2.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 153 |
+
"model.layers.2.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 154 |
+
"model.layers.2.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 155 |
+
"model.layers.2.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 156 |
+
"model.layers.2.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
| 157 |
+
"model.layers.2.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 158 |
+
"model.layers.2.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 159 |
+
"model.layers.2.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
| 160 |
+
"model.layers.2.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 161 |
+
"model.layers.2.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
| 162 |
+
"model.layers.2.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 163 |
+
"model.layers.20.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 164 |
+
"model.layers.20.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 165 |
+
"model.layers.20.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 166 |
+
"model.layers.20.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 167 |
+
"model.layers.20.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 168 |
+
"model.layers.20.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
| 169 |
+
"model.layers.20.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 170 |
+
"model.layers.20.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 171 |
+
"model.layers.20.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
| 172 |
+
"model.layers.20.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 173 |
+
"model.layers.20.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
| 174 |
+
"model.layers.20.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 175 |
+
"model.layers.21.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 176 |
+
"model.layers.21.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 177 |
+
"model.layers.21.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 178 |
+
"model.layers.21.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 179 |
+
"model.layers.21.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 180 |
+
"model.layers.21.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
| 181 |
+
"model.layers.21.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 182 |
+
"model.layers.21.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 183 |
+
"model.layers.21.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
| 184 |
+
"model.layers.21.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 185 |
+
"model.layers.21.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
| 186 |
+
"model.layers.21.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 187 |
+
"model.layers.22.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 188 |
+
"model.layers.22.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 189 |
+
"model.layers.22.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 190 |
+
"model.layers.22.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 191 |
+
"model.layers.22.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 192 |
+
"model.layers.22.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
| 193 |
+
"model.layers.22.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 194 |
+
"model.layers.22.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 195 |
+
"model.layers.22.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
| 196 |
+
"model.layers.22.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 197 |
+
"model.layers.22.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
| 198 |
+
"model.layers.22.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 199 |
+
"model.layers.23.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 200 |
+
"model.layers.23.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 201 |
+
"model.layers.23.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 202 |
+
"model.layers.23.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 203 |
+
"model.layers.23.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 204 |
+
"model.layers.23.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
| 205 |
+
"model.layers.23.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 206 |
+
"model.layers.23.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 207 |
+
"model.layers.23.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
| 208 |
+
"model.layers.23.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 209 |
+
"model.layers.23.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
| 210 |
+
"model.layers.23.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 211 |
+
"model.layers.24.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 212 |
+
"model.layers.24.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 213 |
+
"model.layers.24.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 214 |
+
"model.layers.24.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 215 |
+
"model.layers.24.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 216 |
+
"model.layers.24.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
| 217 |
+
"model.layers.24.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 218 |
+
"model.layers.24.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 219 |
+
"model.layers.24.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
| 220 |
+
"model.layers.24.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 221 |
+
"model.layers.24.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
| 222 |
+
"model.layers.24.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 223 |
+
"model.layers.25.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 224 |
+
"model.layers.25.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 225 |
+
"model.layers.25.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 226 |
+
"model.layers.25.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 227 |
+
"model.layers.25.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 228 |
+
"model.layers.25.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
| 229 |
+
"model.layers.25.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 230 |
+
"model.layers.25.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 231 |
+
"model.layers.25.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
| 232 |
+
"model.layers.25.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 233 |
+
"model.layers.25.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
| 234 |
+
"model.layers.25.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 235 |
+
"model.layers.26.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 236 |
+
"model.layers.26.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 237 |
+
"model.layers.26.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 238 |
+
"model.layers.26.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 239 |
+
"model.layers.26.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 240 |
+
"model.layers.26.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
| 241 |
+
"model.layers.26.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 242 |
+
"model.layers.26.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 243 |
+
"model.layers.26.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
| 244 |
+
"model.layers.26.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 245 |
+
"model.layers.26.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
| 246 |
+
"model.layers.26.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 247 |
+
"model.layers.27.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 248 |
+
"model.layers.27.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 249 |
+
"model.layers.27.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 250 |
+
"model.layers.27.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 251 |
+
"model.layers.27.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 252 |
+
"model.layers.27.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
| 253 |
+
"model.layers.27.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 254 |
+
"model.layers.27.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 255 |
+
"model.layers.27.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
| 256 |
+
"model.layers.27.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 257 |
+
"model.layers.27.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
| 258 |
+
"model.layers.27.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 259 |
+
"model.layers.28.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 260 |
+
"model.layers.28.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 261 |
+
"model.layers.28.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 262 |
+
"model.layers.28.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 263 |
+
"model.layers.28.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 264 |
+
"model.layers.28.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
| 265 |
+
"model.layers.28.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 266 |
+
"model.layers.28.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 267 |
+
"model.layers.28.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
| 268 |
+
"model.layers.28.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 269 |
+
"model.layers.28.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
| 270 |
+
"model.layers.28.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 271 |
+
"model.layers.29.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 272 |
+
"model.layers.29.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 273 |
+
"model.layers.29.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 274 |
+
"model.layers.29.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 275 |
+
"model.layers.29.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 276 |
+
"model.layers.29.self_attn.k_proj.bias": "model-00002-of-00002.safetensors",
|
| 277 |
+
"model.layers.29.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 278 |
+
"model.layers.29.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 279 |
+
"model.layers.29.self_attn.q_proj.bias": "model-00002-of-00002.safetensors",
|
| 280 |
+
"model.layers.29.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 281 |
+
"model.layers.29.self_attn.v_proj.bias": "model-00002-of-00002.safetensors",
|
| 282 |
+
"model.layers.29.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 283 |
+
"model.layers.3.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 284 |
+
"model.layers.3.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 285 |
+
"model.layers.3.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 286 |
+
"model.layers.3.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 287 |
+
"model.layers.3.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 288 |
+
"model.layers.3.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
| 289 |
+
"model.layers.3.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 290 |
+
"model.layers.3.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 291 |
+
"model.layers.3.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
| 292 |
+
"model.layers.3.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 293 |
+
"model.layers.3.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
| 294 |
+
"model.layers.3.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 295 |
+
"model.layers.30.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 296 |
+
"model.layers.30.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 297 |
+
"model.layers.30.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 298 |
+
"model.layers.30.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 299 |
+
"model.layers.30.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 300 |
+
"model.layers.30.self_attn.k_proj.bias": "model-00002-of-00002.safetensors",
|
| 301 |
+
"model.layers.30.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 302 |
+
"model.layers.30.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 303 |
+
"model.layers.30.self_attn.q_proj.bias": "model-00002-of-00002.safetensors",
|
| 304 |
+
"model.layers.30.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 305 |
+
"model.layers.30.self_attn.v_proj.bias": "model-00002-of-00002.safetensors",
|
| 306 |
+
"model.layers.30.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 307 |
+
"model.layers.31.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 308 |
+
"model.layers.31.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 309 |
+
"model.layers.31.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 310 |
+
"model.layers.31.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 311 |
+
"model.layers.31.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 312 |
+
"model.layers.31.self_attn.k_proj.bias": "model-00002-of-00002.safetensors",
|
| 313 |
+
"model.layers.31.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 314 |
+
"model.layers.31.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 315 |
+
"model.layers.31.self_attn.q_proj.bias": "model-00002-of-00002.safetensors",
|
| 316 |
+
"model.layers.31.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 317 |
+
"model.layers.31.self_attn.v_proj.bias": "model-00002-of-00002.safetensors",
|
| 318 |
+
"model.layers.31.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 319 |
+
"model.layers.32.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 320 |
+
"model.layers.32.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 321 |
+
"model.layers.32.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 322 |
+
"model.layers.32.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 323 |
+
"model.layers.32.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 324 |
+
"model.layers.32.self_attn.k_proj.bias": "model-00002-of-00002.safetensors",
|
| 325 |
+
"model.layers.32.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 326 |
+
"model.layers.32.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 327 |
+
"model.layers.32.self_attn.q_proj.bias": "model-00002-of-00002.safetensors",
|
| 328 |
+
"model.layers.32.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 329 |
+
"model.layers.32.self_attn.v_proj.bias": "model-00002-of-00002.safetensors",
|
| 330 |
+
"model.layers.32.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 331 |
+
"model.layers.33.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 332 |
+
"model.layers.33.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 333 |
+
"model.layers.33.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 334 |
+
"model.layers.33.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 335 |
+
"model.layers.33.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 336 |
+
"model.layers.33.self_attn.k_proj.bias": "model-00002-of-00002.safetensors",
|
| 337 |
+
"model.layers.33.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 338 |
+
"model.layers.33.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 339 |
+
"model.layers.33.self_attn.q_proj.bias": "model-00002-of-00002.safetensors",
|
| 340 |
+
"model.layers.33.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 341 |
+
"model.layers.33.self_attn.v_proj.bias": "model-00002-of-00002.safetensors",
|
| 342 |
+
"model.layers.33.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 343 |
+
"model.layers.34.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 344 |
+
"model.layers.34.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 345 |
+
"model.layers.34.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 346 |
+
"model.layers.34.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 347 |
+
"model.layers.34.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 348 |
+
"model.layers.34.self_attn.k_proj.bias": "model-00002-of-00002.safetensors",
|
| 349 |
+
"model.layers.34.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 350 |
+
"model.layers.34.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 351 |
+
"model.layers.34.self_attn.q_proj.bias": "model-00002-of-00002.safetensors",
|
| 352 |
+
"model.layers.34.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 353 |
+
"model.layers.34.self_attn.v_proj.bias": "model-00002-of-00002.safetensors",
|
| 354 |
+
"model.layers.34.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 355 |
+
"model.layers.35.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 356 |
+
"model.layers.35.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 357 |
+
"model.layers.35.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 358 |
+
"model.layers.35.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 359 |
+
"model.layers.35.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 360 |
+
"model.layers.35.self_attn.k_proj.bias": "model-00002-of-00002.safetensors",
|
| 361 |
+
"model.layers.35.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 362 |
+
"model.layers.35.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 363 |
+
"model.layers.35.self_attn.q_proj.bias": "model-00002-of-00002.safetensors",
|
| 364 |
+
"model.layers.35.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 365 |
+
"model.layers.35.self_attn.v_proj.bias": "model-00002-of-00002.safetensors",
|
| 366 |
+
"model.layers.35.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 367 |
+
"model.layers.4.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 368 |
+
"model.layers.4.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 369 |
+
"model.layers.4.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 370 |
+
"model.layers.4.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 371 |
+
"model.layers.4.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 372 |
+
"model.layers.4.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
| 373 |
+
"model.layers.4.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 374 |
+
"model.layers.4.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 375 |
+
"model.layers.4.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
| 376 |
+
"model.layers.4.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 377 |
+
"model.layers.4.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
| 378 |
+
"model.layers.4.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 379 |
+
"model.layers.5.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 380 |
+
"model.layers.5.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 381 |
+
"model.layers.5.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 382 |
+
"model.layers.5.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 383 |
+
"model.layers.5.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 384 |
+
"model.layers.5.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
| 385 |
+
"model.layers.5.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 386 |
+
"model.layers.5.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 387 |
+
"model.layers.5.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
| 388 |
+
"model.layers.5.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 389 |
+
"model.layers.5.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
| 390 |
+
"model.layers.5.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 391 |
+
"model.layers.6.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 392 |
+
"model.layers.6.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 393 |
+
"model.layers.6.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 394 |
+
"model.layers.6.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 395 |
+
"model.layers.6.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 396 |
+
"model.layers.6.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
| 397 |
+
"model.layers.6.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 398 |
+
"model.layers.6.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 399 |
+
"model.layers.6.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
| 400 |
+
"model.layers.6.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 401 |
+
"model.layers.6.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
| 402 |
+
"model.layers.6.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 403 |
+
"model.layers.7.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 404 |
+
"model.layers.7.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 405 |
+
"model.layers.7.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 406 |
+
"model.layers.7.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 407 |
+
"model.layers.7.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 408 |
+
"model.layers.7.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
| 409 |
+
"model.layers.7.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 410 |
+
"model.layers.7.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 411 |
+
"model.layers.7.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
| 412 |
+
"model.layers.7.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 413 |
+
"model.layers.7.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
| 414 |
+
"model.layers.7.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 415 |
+
"model.layers.8.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 416 |
+
"model.layers.8.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 417 |
+
"model.layers.8.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 418 |
+
"model.layers.8.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 419 |
+
"model.layers.8.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 420 |
+
"model.layers.8.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
| 421 |
+
"model.layers.8.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 422 |
+
"model.layers.8.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 423 |
+
"model.layers.8.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
| 424 |
+
"model.layers.8.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 425 |
+
"model.layers.8.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
| 426 |
+
"model.layers.8.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 427 |
+
"model.layers.9.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 428 |
+
"model.layers.9.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 429 |
+
"model.layers.9.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 430 |
+
"model.layers.9.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 431 |
+
"model.layers.9.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 432 |
+
"model.layers.9.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
| 433 |
+
"model.layers.9.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 434 |
+
"model.layers.9.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 435 |
+
"model.layers.9.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
| 436 |
+
"model.layers.9.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 437 |
+
"model.layers.9.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
| 438 |
+
"model.layers.9.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 439 |
+
"model.norm.weight": "model-00002-of-00002.safetensors"
|
| 440 |
+
}
|
| 441 |
+
}
|
runs/Oct11_07-10-34_a6000/events.out.tfevents.1760166694.a6000.2127441.0
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:16a7170b92870a22708e525c3d33e3dc3e2151855131af1a74aa04d7aa12e8e9
|
| 3 |
+
size 30286
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"additional_special_tokens": [
|
| 3 |
+
"<|im_start|>",
|
| 4 |
+
"<|im_end|>",
|
| 5 |
+
"<|object_ref_start|>",
|
| 6 |
+
"<|object_ref_end|>",
|
| 7 |
+
"<|box_start|>",
|
| 8 |
+
"<|box_end|>",
|
| 9 |
+
"<|quad_start|>",
|
| 10 |
+
"<|quad_end|>",
|
| 11 |
+
"<|vision_start|>",
|
| 12 |
+
"<|vision_end|>",
|
| 13 |
+
"<|vision_pad|>",
|
| 14 |
+
"<|image_pad|>",
|
| 15 |
+
"<|video_pad|>"
|
| 16 |
+
],
|
| 17 |
+
"eos_token": {
|
| 18 |
+
"content": "<|im_end|>",
|
| 19 |
+
"lstrip": false,
|
| 20 |
+
"normalized": false,
|
| 21 |
+
"rstrip": false,
|
| 22 |
+
"single_word": false
|
| 23 |
+
},
|
| 24 |
+
"pad_token": {
|
| 25 |
+
"content": "<|endoftext|>",
|
| 26 |
+
"lstrip": false,
|
| 27 |
+
"normalized": false,
|
| 28 |
+
"rstrip": false,
|
| 29 |
+
"single_word": false
|
| 30 |
+
}
|
| 31 |
+
}
|
tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:690a58f7f9f9b3288faff3efe69defcb16891902894699bb920c605e180432c9
|
| 3 |
+
size 11421995
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,207 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_bos_token": false,
|
| 3 |
+
"add_prefix_space": false,
|
| 4 |
+
"added_tokens_decoder": {
|
| 5 |
+
"151643": {
|
| 6 |
+
"content": "<|endoftext|>",
|
| 7 |
+
"lstrip": false,
|
| 8 |
+
"normalized": false,
|
| 9 |
+
"rstrip": false,
|
| 10 |
+
"single_word": false,
|
| 11 |
+
"special": true
|
| 12 |
+
},
|
| 13 |
+
"151644": {
|
| 14 |
+
"content": "<|im_start|>",
|
| 15 |
+
"lstrip": false,
|
| 16 |
+
"normalized": false,
|
| 17 |
+
"rstrip": false,
|
| 18 |
+
"single_word": false,
|
| 19 |
+
"special": true
|
| 20 |
+
},
|
| 21 |
+
"151645": {
|
| 22 |
+
"content": "<|im_end|>",
|
| 23 |
+
"lstrip": false,
|
| 24 |
+
"normalized": false,
|
| 25 |
+
"rstrip": false,
|
| 26 |
+
"single_word": false,
|
| 27 |
+
"special": true
|
| 28 |
+
},
|
| 29 |
+
"151646": {
|
| 30 |
+
"content": "<|object_ref_start|>",
|
| 31 |
+
"lstrip": false,
|
| 32 |
+
"normalized": false,
|
| 33 |
+
"rstrip": false,
|
| 34 |
+
"single_word": false,
|
| 35 |
+
"special": true
|
| 36 |
+
},
|
| 37 |
+
"151647": {
|
| 38 |
+
"content": "<|object_ref_end|>",
|
| 39 |
+
"lstrip": false,
|
| 40 |
+
"normalized": false,
|
| 41 |
+
"rstrip": false,
|
| 42 |
+
"single_word": false,
|
| 43 |
+
"special": true
|
| 44 |
+
},
|
| 45 |
+
"151648": {
|
| 46 |
+
"content": "<|box_start|>",
|
| 47 |
+
"lstrip": false,
|
| 48 |
+
"normalized": false,
|
| 49 |
+
"rstrip": false,
|
| 50 |
+
"single_word": false,
|
| 51 |
+
"special": true
|
| 52 |
+
},
|
| 53 |
+
"151649": {
|
| 54 |
+
"content": "<|box_end|>",
|
| 55 |
+
"lstrip": false,
|
| 56 |
+
"normalized": false,
|
| 57 |
+
"rstrip": false,
|
| 58 |
+
"single_word": false,
|
| 59 |
+
"special": true
|
| 60 |
+
},
|
| 61 |
+
"151650": {
|
| 62 |
+
"content": "<|quad_start|>",
|
| 63 |
+
"lstrip": false,
|
| 64 |
+
"normalized": false,
|
| 65 |
+
"rstrip": false,
|
| 66 |
+
"single_word": false,
|
| 67 |
+
"special": true
|
| 68 |
+
},
|
| 69 |
+
"151651": {
|
| 70 |
+
"content": "<|quad_end|>",
|
| 71 |
+
"lstrip": false,
|
| 72 |
+
"normalized": false,
|
| 73 |
+
"rstrip": false,
|
| 74 |
+
"single_word": false,
|
| 75 |
+
"special": true
|
| 76 |
+
},
|
| 77 |
+
"151652": {
|
| 78 |
+
"content": "<|vision_start|>",
|
| 79 |
+
"lstrip": false,
|
| 80 |
+
"normalized": false,
|
| 81 |
+
"rstrip": false,
|
| 82 |
+
"single_word": false,
|
| 83 |
+
"special": true
|
| 84 |
+
},
|
| 85 |
+
"151653": {
|
| 86 |
+
"content": "<|vision_end|>",
|
| 87 |
+
"lstrip": false,
|
| 88 |
+
"normalized": false,
|
| 89 |
+
"rstrip": false,
|
| 90 |
+
"single_word": false,
|
| 91 |
+
"special": true
|
| 92 |
+
},
|
| 93 |
+
"151654": {
|
| 94 |
+
"content": "<|vision_pad|>",
|
| 95 |
+
"lstrip": false,
|
| 96 |
+
"normalized": false,
|
| 97 |
+
"rstrip": false,
|
| 98 |
+
"single_word": false,
|
| 99 |
+
"special": true
|
| 100 |
+
},
|
| 101 |
+
"151655": {
|
| 102 |
+
"content": "<|image_pad|>",
|
| 103 |
+
"lstrip": false,
|
| 104 |
+
"normalized": false,
|
| 105 |
+
"rstrip": false,
|
| 106 |
+
"single_word": false,
|
| 107 |
+
"special": true
|
| 108 |
+
},
|
| 109 |
+
"151656": {
|
| 110 |
+
"content": "<|video_pad|>",
|
| 111 |
+
"lstrip": false,
|
| 112 |
+
"normalized": false,
|
| 113 |
+
"rstrip": false,
|
| 114 |
+
"single_word": false,
|
| 115 |
+
"special": true
|
| 116 |
+
},
|
| 117 |
+
"151657": {
|
| 118 |
+
"content": "<tool_call>",
|
| 119 |
+
"lstrip": false,
|
| 120 |
+
"normalized": false,
|
| 121 |
+
"rstrip": false,
|
| 122 |
+
"single_word": false,
|
| 123 |
+
"special": false
|
| 124 |
+
},
|
| 125 |
+
"151658": {
|
| 126 |
+
"content": "</tool_call>",
|
| 127 |
+
"lstrip": false,
|
| 128 |
+
"normalized": false,
|
| 129 |
+
"rstrip": false,
|
| 130 |
+
"single_word": false,
|
| 131 |
+
"special": false
|
| 132 |
+
},
|
| 133 |
+
"151659": {
|
| 134 |
+
"content": "<|fim_prefix|>",
|
| 135 |
+
"lstrip": false,
|
| 136 |
+
"normalized": false,
|
| 137 |
+
"rstrip": false,
|
| 138 |
+
"single_word": false,
|
| 139 |
+
"special": false
|
| 140 |
+
},
|
| 141 |
+
"151660": {
|
| 142 |
+
"content": "<|fim_middle|>",
|
| 143 |
+
"lstrip": false,
|
| 144 |
+
"normalized": false,
|
| 145 |
+
"rstrip": false,
|
| 146 |
+
"single_word": false,
|
| 147 |
+
"special": false
|
| 148 |
+
},
|
| 149 |
+
"151661": {
|
| 150 |
+
"content": "<|fim_suffix|>",
|
| 151 |
+
"lstrip": false,
|
| 152 |
+
"normalized": false,
|
| 153 |
+
"rstrip": false,
|
| 154 |
+
"single_word": false,
|
| 155 |
+
"special": false
|
| 156 |
+
},
|
| 157 |
+
"151662": {
|
| 158 |
+
"content": "<|fim_pad|>",
|
| 159 |
+
"lstrip": false,
|
| 160 |
+
"normalized": false,
|
| 161 |
+
"rstrip": false,
|
| 162 |
+
"single_word": false,
|
| 163 |
+
"special": false
|
| 164 |
+
},
|
| 165 |
+
"151663": {
|
| 166 |
+
"content": "<|repo_name|>",
|
| 167 |
+
"lstrip": false,
|
| 168 |
+
"normalized": false,
|
| 169 |
+
"rstrip": false,
|
| 170 |
+
"single_word": false,
|
| 171 |
+
"special": false
|
| 172 |
+
},
|
| 173 |
+
"151664": {
|
| 174 |
+
"content": "<|file_sep|>",
|
| 175 |
+
"lstrip": false,
|
| 176 |
+
"normalized": false,
|
| 177 |
+
"rstrip": false,
|
| 178 |
+
"single_word": false,
|
| 179 |
+
"special": false
|
| 180 |
+
}
|
| 181 |
+
},
|
| 182 |
+
"additional_special_tokens": [
|
| 183 |
+
"<|im_start|>",
|
| 184 |
+
"<|im_end|>",
|
| 185 |
+
"<|object_ref_start|>",
|
| 186 |
+
"<|object_ref_end|>",
|
| 187 |
+
"<|box_start|>",
|
| 188 |
+
"<|box_end|>",
|
| 189 |
+
"<|quad_start|>",
|
| 190 |
+
"<|quad_end|>",
|
| 191 |
+
"<|vision_start|>",
|
| 192 |
+
"<|vision_end|>",
|
| 193 |
+
"<|vision_pad|>",
|
| 194 |
+
"<|image_pad|>",
|
| 195 |
+
"<|video_pad|>"
|
| 196 |
+
],
|
| 197 |
+
"bos_token": null,
|
| 198 |
+
"chat_template": "{% for message in messages %}{{'<|im_start|>' + message['role'] + '\n' + message['content'] + '<|im_end|>' + '\n'}}{% endfor %}{% if add_generation_prompt %}{{ '<|im_start|>assistant\n' }}{% endif %}",
|
| 199 |
+
"clean_up_tokenization_spaces": false,
|
| 200 |
+
"eos_token": "<|im_end|>",
|
| 201 |
+
"errors": "replace",
|
| 202 |
+
"model_max_length": 32768,
|
| 203 |
+
"pad_token": "<|endoftext|>",
|
| 204 |
+
"split_special_tokens": false,
|
| 205 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 206 |
+
"unk_token": null
|
| 207 |
+
}
|
train_results.json
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"epoch": 1.9946814168705456,
|
| 3 |
+
"total_flos": 2.1138563148357304e+18,
|
| 4 |
+
"train_loss": 0.4405478376373903,
|
| 5 |
+
"train_runtime": 25027.7179,
|
| 6 |
+
"train_samples": 37603,
|
| 7 |
+
"train_samples_per_second": 3.005,
|
| 8 |
+
"train_steps_per_second": 0.023
|
| 9 |
+
}
|
trainer_state.json
ADDED
|
@@ -0,0 +1,868 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_metric": null,
|
| 3 |
+
"best_model_checkpoint": null,
|
| 4 |
+
"epoch": 1.9946814168705456,
|
| 5 |
+
"eval_steps": 500,
|
| 6 |
+
"global_step": 586,
|
| 7 |
+
"is_hyper_param_search": false,
|
| 8 |
+
"is_local_process_zero": true,
|
| 9 |
+
"is_world_process_zero": true,
|
| 10 |
+
"log_history": [
|
| 11 |
+
{
|
| 12 |
+
"epoch": 0.0034038932028507603,
|
| 13 |
+
"grad_norm": 7.0625,
|
| 14 |
+
"learning_rate": 1.9999856294471073e-05,
|
| 15 |
+
"loss": 1.1956,
|
| 16 |
+
"step": 1
|
| 17 |
+
},
|
| 18 |
+
{
|
| 19 |
+
"epoch": 0.017019466014253803,
|
| 20 |
+
"grad_norm": 1.453125,
|
| 21 |
+
"learning_rate": 1.9996407568285402e-05,
|
| 22 |
+
"loss": 0.8575,
|
| 23 |
+
"step": 5
|
| 24 |
+
},
|
| 25 |
+
{
|
| 26 |
+
"epoch": 0.03403893202850761,
|
| 27 |
+
"grad_norm": 1.046875,
|
| 28 |
+
"learning_rate": 1.9985632854254735e-05,
|
| 29 |
+
"loss": 0.7124,
|
| 30 |
+
"step": 10
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
"epoch": 0.05105839804276141,
|
| 34 |
+
"grad_norm": 0.9140625,
|
| 35 |
+
"learning_rate": 1.996768359939288e-05,
|
| 36 |
+
"loss": 0.6181,
|
| 37 |
+
"step": 15
|
| 38 |
+
},
|
| 39 |
+
{
|
| 40 |
+
"epoch": 0.06807786405701521,
|
| 41 |
+
"grad_norm": 1.0078125,
|
| 42 |
+
"learning_rate": 1.994257269999431e-05,
|
| 43 |
+
"loss": 0.613,
|
| 44 |
+
"step": 20
|
| 45 |
+
},
|
| 46 |
+
{
|
| 47 |
+
"epoch": 0.08509733007126902,
|
| 48 |
+
"grad_norm": 0.84375,
|
| 49 |
+
"learning_rate": 1.991031819789732e-05,
|
| 50 |
+
"loss": 0.5848,
|
| 51 |
+
"step": 25
|
| 52 |
+
},
|
| 53 |
+
{
|
| 54 |
+
"epoch": 0.10211679608552282,
|
| 55 |
+
"grad_norm": 0.84375,
|
| 56 |
+
"learning_rate": 1.9870943267521144e-05,
|
| 57 |
+
"loss": 0.5576,
|
| 58 |
+
"step": 30
|
| 59 |
+
},
|
| 60 |
+
{
|
| 61 |
+
"epoch": 0.11913626209977662,
|
| 62 |
+
"grad_norm": 0.875,
|
| 63 |
+
"learning_rate": 1.9824476199215526e-05,
|
| 64 |
+
"loss": 0.5539,
|
| 65 |
+
"step": 35
|
| 66 |
+
},
|
| 67 |
+
{
|
| 68 |
+
"epoch": 0.13615572811403043,
|
| 69 |
+
"grad_norm": 0.8828125,
|
| 70 |
+
"learning_rate": 1.9770950378934433e-05,
|
| 71 |
+
"loss": 0.5261,
|
| 72 |
+
"step": 40
|
| 73 |
+
},
|
| 74 |
+
{
|
| 75 |
+
"epoch": 0.15317519412828423,
|
| 76 |
+
"grad_norm": 0.83984375,
|
| 77 |
+
"learning_rate": 1.9710404264248734e-05,
|
| 78 |
+
"loss": 0.5085,
|
| 79 |
+
"step": 45
|
| 80 |
+
},
|
| 81 |
+
{
|
| 82 |
+
"epoch": 0.17019466014253803,
|
| 83 |
+
"grad_norm": 0.8984375,
|
| 84 |
+
"learning_rate": 1.964288135671494e-05,
|
| 85 |
+
"loss": 0.5053,
|
| 86 |
+
"step": 50
|
| 87 |
+
},
|
| 88 |
+
{
|
| 89 |
+
"epoch": 0.18721412615679184,
|
| 90 |
+
"grad_norm": 0.84765625,
|
| 91 |
+
"learning_rate": 1.9568430170619953e-05,
|
| 92 |
+
"loss": 0.4847,
|
| 93 |
+
"step": 55
|
| 94 |
+
},
|
| 95 |
+
{
|
| 96 |
+
"epoch": 0.20423359217104564,
|
| 97 |
+
"grad_norm": 0.98828125,
|
| 98 |
+
"learning_rate": 1.94871041981242e-05,
|
| 99 |
+
"loss": 0.4862,
|
| 100 |
+
"step": 60
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"epoch": 0.22125305818529944,
|
| 104 |
+
"grad_norm": 0.9375,
|
| 105 |
+
"learning_rate": 1.939896187082824e-05,
|
| 106 |
+
"loss": 0.4877,
|
| 107 |
+
"step": 65
|
| 108 |
+
},
|
| 109 |
+
{
|
| 110 |
+
"epoch": 0.23827252419955325,
|
| 111 |
+
"grad_norm": 0.92578125,
|
| 112 |
+
"learning_rate": 1.9304066517790465e-05,
|
| 113 |
+
"loss": 0.481,
|
| 114 |
+
"step": 70
|
| 115 |
+
},
|
| 116 |
+
{
|
| 117 |
+
"epoch": 0.25529199021380705,
|
| 118 |
+
"grad_norm": 0.953125,
|
| 119 |
+
"learning_rate": 1.9202486320026045e-05,
|
| 120 |
+
"loss": 0.4754,
|
| 121 |
+
"step": 75
|
| 122 |
+
},
|
| 123 |
+
{
|
| 124 |
+
"epoch": 0.27231145622806086,
|
| 125 |
+
"grad_norm": 0.96875,
|
| 126 |
+
"learning_rate": 1.9094294261519787e-05,
|
| 127 |
+
"loss": 0.4881,
|
| 128 |
+
"step": 80
|
| 129 |
+
},
|
| 130 |
+
{
|
| 131 |
+
"epoch": 0.28933092224231466,
|
| 132 |
+
"grad_norm": 0.8203125,
|
| 133 |
+
"learning_rate": 1.897956807678813e-05,
|
| 134 |
+
"loss": 0.4884,
|
| 135 |
+
"step": 85
|
| 136 |
+
},
|
| 137 |
+
{
|
| 138 |
+
"epoch": 0.30635038825656846,
|
| 139 |
+
"grad_norm": 0.87890625,
|
| 140 |
+
"learning_rate": 1.8858390195027986e-05,
|
| 141 |
+
"loss": 0.4759,
|
| 142 |
+
"step": 90
|
| 143 |
+
},
|
| 144 |
+
{
|
| 145 |
+
"epoch": 0.32336985427082227,
|
| 146 |
+
"grad_norm": 0.93359375,
|
| 147 |
+
"learning_rate": 1.873084768089246e-05,
|
| 148 |
+
"loss": 0.4678,
|
| 149 |
+
"step": 95
|
| 150 |
+
},
|
| 151 |
+
{
|
| 152 |
+
"epoch": 0.34038932028507607,
|
| 153 |
+
"grad_norm": 0.87890625,
|
| 154 |
+
"learning_rate": 1.8597032171936103e-05,
|
| 155 |
+
"loss": 0.4744,
|
| 156 |
+
"step": 100
|
| 157 |
+
},
|
| 158 |
+
{
|
| 159 |
+
"epoch": 0.3574087862993299,
|
| 160 |
+
"grad_norm": 0.8359375,
|
| 161 |
+
"learning_rate": 1.8457039812774574e-05,
|
| 162 |
+
"loss": 0.4693,
|
| 163 |
+
"step": 105
|
| 164 |
+
},
|
| 165 |
+
{
|
| 166 |
+
"epoch": 0.3744282523135837,
|
| 167 |
+
"grad_norm": 0.8671875,
|
| 168 |
+
"learning_rate": 1.831097118600604e-05,
|
| 169 |
+
"loss": 0.4697,
|
| 170 |
+
"step": 110
|
| 171 |
+
},
|
| 172 |
+
{
|
| 173 |
+
"epoch": 0.3914477183278375,
|
| 174 |
+
"grad_norm": 0.89453125,
|
| 175 |
+
"learning_rate": 1.8158931239943957e-05,
|
| 176 |
+
"loss": 0.4524,
|
| 177 |
+
"step": 115
|
| 178 |
+
},
|
| 179 |
+
{
|
| 180 |
+
"epoch": 0.4084671843420913,
|
| 181 |
+
"grad_norm": 0.9140625,
|
| 182 |
+
"learning_rate": 1.800102921321316e-05,
|
| 183 |
+
"loss": 0.4487,
|
| 184 |
+
"step": 120
|
| 185 |
+
},
|
| 186 |
+
{
|
| 187 |
+
"epoch": 0.4254866503563451,
|
| 188 |
+
"grad_norm": 0.9296875,
|
| 189 |
+
"learning_rate": 1.7837378556263368e-05,
|
| 190 |
+
"loss": 0.4683,
|
| 191 |
+
"step": 125
|
| 192 |
+
},
|
| 193 |
+
{
|
| 194 |
+
"epoch": 0.4425061163705989,
|
| 195 |
+
"grad_norm": 0.98828125,
|
| 196 |
+
"learning_rate": 1.766809684985661e-05,
|
| 197 |
+
"loss": 0.4567,
|
| 198 |
+
"step": 130
|
| 199 |
+
},
|
| 200 |
+
{
|
| 201 |
+
"epoch": 0.4595255823848527,
|
| 202 |
+
"grad_norm": 0.90625,
|
| 203 |
+
"learning_rate": 1.7493305720587047e-05,
|
| 204 |
+
"loss": 0.4682,
|
| 205 |
+
"step": 135
|
| 206 |
+
},
|
| 207 |
+
{
|
| 208 |
+
"epoch": 0.4765450483991065,
|
| 209 |
+
"grad_norm": 0.9609375,
|
| 210 |
+
"learning_rate": 1.7313130753493917e-05,
|
| 211 |
+
"loss": 0.4649,
|
| 212 |
+
"step": 140
|
| 213 |
+
},
|
| 214 |
+
{
|
| 215 |
+
"epoch": 0.4935645144133603,
|
| 216 |
+
"grad_norm": 0.92578125,
|
| 217 |
+
"learning_rate": 1.7127701401830422e-05,
|
| 218 |
+
"loss": 0.4412,
|
| 219 |
+
"step": 145
|
| 220 |
+
},
|
| 221 |
+
{
|
| 222 |
+
"epoch": 0.5105839804276141,
|
| 223 |
+
"grad_norm": 0.88671875,
|
| 224 |
+
"learning_rate": 1.6937150894053306e-05,
|
| 225 |
+
"loss": 0.4505,
|
| 226 |
+
"step": 150
|
| 227 |
+
},
|
| 228 |
+
{
|
| 229 |
+
"epoch": 0.5276034464418679,
|
| 230 |
+
"grad_norm": 0.890625,
|
| 231 |
+
"learning_rate": 1.674161613810003e-05,
|
| 232 |
+
"loss": 0.4655,
|
| 233 |
+
"step": 155
|
| 234 |
+
},
|
| 235 |
+
{
|
| 236 |
+
"epoch": 0.5446229124561217,
|
| 237 |
+
"grad_norm": 0.96484375,
|
| 238 |
+
"learning_rate": 1.6541237623022333e-05,
|
| 239 |
+
"loss": 0.4536,
|
| 240 |
+
"step": 160
|
| 241 |
+
},
|
| 242 |
+
{
|
| 243 |
+
"epoch": 0.5616423784703755,
|
| 244 |
+
"grad_norm": 0.84765625,
|
| 245 |
+
"learning_rate": 1.6336159318046698e-05,
|
| 246 |
+
"loss": 0.4398,
|
| 247 |
+
"step": 165
|
| 248 |
+
},
|
| 249 |
+
{
|
| 250 |
+
"epoch": 0.5786618444846293,
|
| 251 |
+
"grad_norm": 0.84375,
|
| 252 |
+
"learning_rate": 1.612652856913449e-05,
|
| 253 |
+
"loss": 0.4548,
|
| 254 |
+
"step": 170
|
| 255 |
+
},
|
| 256 |
+
{
|
| 257 |
+
"epoch": 0.5956813104988831,
|
| 258 |
+
"grad_norm": 0.9453125,
|
| 259 |
+
"learning_rate": 1.5912495993115848e-05,
|
| 260 |
+
"loss": 0.4456,
|
| 261 |
+
"step": 175
|
| 262 |
+
},
|
| 263 |
+
{
|
| 264 |
+
"epoch": 0.6127007765131369,
|
| 265 |
+
"grad_norm": 0.953125,
|
| 266 |
+
"learning_rate": 1.5694215369473584e-05,
|
| 267 |
+
"loss": 0.4466,
|
| 268 |
+
"step": 180
|
| 269 |
+
},
|
| 270 |
+
{
|
| 271 |
+
"epoch": 0.6297202425273907,
|
| 272 |
+
"grad_norm": 0.93359375,
|
| 273 |
+
"learning_rate": 1.547184352985472e-05,
|
| 274 |
+
"loss": 0.4353,
|
| 275 |
+
"step": 185
|
| 276 |
+
},
|
| 277 |
+
{
|
| 278 |
+
"epoch": 0.6467397085416445,
|
| 279 |
+
"grad_norm": 0.9296875,
|
| 280 |
+
"learning_rate": 1.5245540245389053e-05,
|
| 281 |
+
"loss": 0.426,
|
| 282 |
+
"step": 190
|
| 283 |
+
},
|
| 284 |
+
{
|
| 285 |
+
"epoch": 0.6637591745558983,
|
| 286 |
+
"grad_norm": 0.93359375,
|
| 287 |
+
"learning_rate": 1.501546811189584e-05,
|
| 288 |
+
"loss": 0.4273,
|
| 289 |
+
"step": 195
|
| 290 |
+
},
|
| 291 |
+
{
|
| 292 |
+
"epoch": 0.6807786405701521,
|
| 293 |
+
"grad_norm": 0.875,
|
| 294 |
+
"learning_rate": 1.4781792433060884e-05,
|
| 295 |
+
"loss": 0.4401,
|
| 296 |
+
"step": 200
|
| 297 |
+
},
|
| 298 |
+
{
|
| 299 |
+
"epoch": 0.6977981065844059,
|
| 300 |
+
"grad_norm": 0.96875,
|
| 301 |
+
"learning_rate": 1.4544681101668099e-05,
|
| 302 |
+
"loss": 0.423,
|
| 303 |
+
"step": 205
|
| 304 |
+
},
|
| 305 |
+
{
|
| 306 |
+
"epoch": 0.7148175725986597,
|
| 307 |
+
"grad_norm": 0.90234375,
|
| 308 |
+
"learning_rate": 1.4304304478970839e-05,
|
| 309 |
+
"loss": 0.4402,
|
| 310 |
+
"step": 210
|
| 311 |
+
},
|
| 312 |
+
{
|
| 313 |
+
"epoch": 0.7318370386129135,
|
| 314 |
+
"grad_norm": 0.90625,
|
| 315 |
+
"learning_rate": 1.4060835272289673e-05,
|
| 316 |
+
"loss": 0.4352,
|
| 317 |
+
"step": 215
|
| 318 |
+
},
|
| 319 |
+
{
|
| 320 |
+
"epoch": 0.7488565046271674,
|
| 321 |
+
"grad_norm": 0.9375,
|
| 322 |
+
"learning_rate": 1.381444841092452e-05,
|
| 323 |
+
"loss": 0.434,
|
| 324 |
+
"step": 220
|
| 325 |
+
},
|
| 326 |
+
{
|
| 327 |
+
"epoch": 0.7658759706414211,
|
| 328 |
+
"grad_norm": 0.9140625,
|
| 329 |
+
"learning_rate": 1.3565320920470348e-05,
|
| 330 |
+
"loss": 0.4287,
|
| 331 |
+
"step": 225
|
| 332 |
+
},
|
| 333 |
+
{
|
| 334 |
+
"epoch": 0.782895436655675,
|
| 335 |
+
"grad_norm": 0.87890625,
|
| 336 |
+
"learning_rate": 1.3313631795626691e-05,
|
| 337 |
+
"loss": 0.431,
|
| 338 |
+
"step": 230
|
| 339 |
+
},
|
| 340 |
+
{
|
| 341 |
+
"epoch": 0.7999149026699287,
|
| 342 |
+
"grad_norm": 0.875,
|
| 343 |
+
"learning_rate": 1.3059561871592413e-05,
|
| 344 |
+
"loss": 0.4329,
|
| 345 |
+
"step": 235
|
| 346 |
+
},
|
| 347 |
+
{
|
| 348 |
+
"epoch": 0.8169343686841826,
|
| 349 |
+
"grad_norm": 0.90625,
|
| 350 |
+
"learning_rate": 1.2803293694138077e-05,
|
| 351 |
+
"loss": 0.4258,
|
| 352 |
+
"step": 240
|
| 353 |
+
},
|
| 354 |
+
{
|
| 355 |
+
"epoch": 0.8339538346984363,
|
| 356 |
+
"grad_norm": 0.90234375,
|
| 357 |
+
"learning_rate": 1.254501138844931e-05,
|
| 358 |
+
"loss": 0.4118,
|
| 359 |
+
"step": 245
|
| 360 |
+
},
|
| 361 |
+
{
|
| 362 |
+
"epoch": 0.8509733007126902,
|
| 363 |
+
"grad_norm": 0.89453125,
|
| 364 |
+
"learning_rate": 1.228490052683537e-05,
|
| 365 |
+
"loss": 0.4249,
|
| 366 |
+
"step": 250
|
| 367 |
+
},
|
| 368 |
+
{
|
| 369 |
+
"epoch": 0.8679927667269439,
|
| 370 |
+
"grad_norm": 0.84765625,
|
| 371 |
+
"learning_rate": 1.202314799539797e-05,
|
| 372 |
+
"loss": 0.4339,
|
| 373 |
+
"step": 255
|
| 374 |
+
},
|
| 375 |
+
{
|
| 376 |
+
"epoch": 0.8850122327411978,
|
| 377 |
+
"grad_norm": 0.84375,
|
| 378 |
+
"learning_rate": 1.1759941859756173e-05,
|
| 379 |
+
"loss": 0.4336,
|
| 380 |
+
"step": 260
|
| 381 |
+
},
|
| 382 |
+
{
|
| 383 |
+
"epoch": 0.9020316987554515,
|
| 384 |
+
"grad_norm": 0.9140625,
|
| 385 |
+
"learning_rate": 1.1495471229923805e-05,
|
| 386 |
+
"loss": 0.435,
|
| 387 |
+
"step": 265
|
| 388 |
+
},
|
| 389 |
+
{
|
| 390 |
+
"epoch": 0.9190511647697054,
|
| 391 |
+
"grad_norm": 0.875,
|
| 392 |
+
"learning_rate": 1.1229926124436506e-05,
|
| 393 |
+
"loss": 0.4182,
|
| 394 |
+
"step": 270
|
| 395 |
+
},
|
| 396 |
+
{
|
| 397 |
+
"epoch": 0.9360706307839591,
|
| 398 |
+
"grad_norm": 0.8984375,
|
| 399 |
+
"learning_rate": 1.0963497333826002e-05,
|
| 400 |
+
"loss": 0.4221,
|
| 401 |
+
"step": 275
|
| 402 |
+
},
|
| 403 |
+
{
|
| 404 |
+
"epoch": 0.953090096798213,
|
| 405 |
+
"grad_norm": 0.91015625,
|
| 406 |
+
"learning_rate": 1.0696376283539704e-05,
|
| 407 |
+
"loss": 0.4157,
|
| 408 |
+
"step": 280
|
| 409 |
+
},
|
| 410 |
+
{
|
| 411 |
+
"epoch": 0.9701095628124667,
|
| 412 |
+
"grad_norm": 0.89453125,
|
| 413 |
+
"learning_rate": 1.042875489640415e-05,
|
| 414 |
+
"loss": 0.4402,
|
| 415 |
+
"step": 285
|
| 416 |
+
},
|
| 417 |
+
{
|
| 418 |
+
"epoch": 0.9871290288267206,
|
| 419 |
+
"grad_norm": 0.9375,
|
| 420 |
+
"learning_rate": 1.0160825454731072e-05,
|
| 421 |
+
"loss": 0.425,
|
| 422 |
+
"step": 290
|
| 423 |
+
},
|
| 424 |
+
{
|
| 425 |
+
"epoch": 1.0041484948409745,
|
| 426 |
+
"grad_norm": 0.8515625,
|
| 427 |
+
"learning_rate": 9.892780462165172e-06,
|
| 428 |
+
"loss": 0.4046,
|
| 429 |
+
"step": 295
|
| 430 |
+
},
|
| 431 |
+
{
|
| 432 |
+
"epoch": 1.0211679608552282,
|
| 433 |
+
"grad_norm": 0.890625,
|
| 434 |
+
"learning_rate": 9.624812505372907e-06,
|
| 435 |
+
"loss": 0.4138,
|
| 436 |
+
"step": 300
|
| 437 |
+
},
|
| 438 |
+
{
|
| 439 |
+
"epoch": 1.038187426869482,
|
| 440 |
+
"grad_norm": 0.84765625,
|
| 441 |
+
"learning_rate": 9.35711411567156e-06,
|
| 442 |
+
"loss": 0.3996,
|
| 443 |
+
"step": 305
|
| 444 |
+
},
|
| 445 |
+
{
|
| 446 |
+
"epoch": 1.0552068928837357,
|
| 447 |
+
"grad_norm": 0.88671875,
|
| 448 |
+
"learning_rate": 9.089877630698159e-06,
|
| 449 |
+
"loss": 0.4033,
|
| 450 |
+
"step": 310
|
| 451 |
+
},
|
| 452 |
+
{
|
| 453 |
+
"epoch": 1.0722263588979897,
|
| 454 |
+
"grad_norm": 0.828125,
|
| 455 |
+
"learning_rate": 8.823295056217487e-06,
|
| 456 |
+
"loss": 0.4152,
|
| 457 |
+
"step": 315
|
| 458 |
+
},
|
| 459 |
+
{
|
| 460 |
+
"epoch": 1.0892458249122434,
|
| 461 |
+
"grad_norm": 0.859375,
|
| 462 |
+
"learning_rate": 8.557557928168568e-06,
|
| 463 |
+
"loss": 0.3985,
|
| 464 |
+
"step": 320
|
| 465 |
+
},
|
| 466 |
+
{
|
| 467 |
+
"epoch": 1.1062652909264972,
|
| 468 |
+
"grad_norm": 0.9140625,
|
| 469 |
+
"learning_rate": 8.292857175048715e-06,
|
| 470 |
+
"loss": 0.3984,
|
| 471 |
+
"step": 325
|
| 472 |
+
},
|
| 473 |
+
{
|
| 474 |
+
"epoch": 1.123284756940751,
|
| 475 |
+
"grad_norm": 0.8828125,
|
| 476 |
+
"learning_rate": 8.029382980734e-06,
|
| 477 |
+
"loss": 0.4165,
|
| 478 |
+
"step": 330
|
| 479 |
+
},
|
| 480 |
+
{
|
| 481 |
+
"epoch": 1.1403042229550047,
|
| 482 |
+
"grad_norm": 0.8828125,
|
| 483 |
+
"learning_rate": 7.767324647834759e-06,
|
| 484 |
+
"loss": 0.3934,
|
| 485 |
+
"step": 335
|
| 486 |
+
},
|
| 487 |
+
{
|
| 488 |
+
"epoch": 1.1573236889692586,
|
| 489 |
+
"grad_norm": 0.82421875,
|
| 490 |
+
"learning_rate": 7.506870461684215e-06,
|
| 491 |
+
"loss": 0.4083,
|
| 492 |
+
"step": 340
|
| 493 |
+
},
|
| 494 |
+
{
|
| 495 |
+
"epoch": 1.1743431549835124,
|
| 496 |
+
"grad_norm": 0.84765625,
|
| 497 |
+
"learning_rate": 7.24820755505808e-06,
|
| 498 |
+
"loss": 0.4071,
|
| 499 |
+
"step": 345
|
| 500 |
+
},
|
| 501 |
+
{
|
| 502 |
+
"epoch": 1.1913626209977661,
|
| 503 |
+
"grad_norm": 0.85546875,
|
| 504 |
+
"learning_rate": 6.991521773722186e-06,
|
| 505 |
+
"loss": 0.4187,
|
| 506 |
+
"step": 350
|
| 507 |
+
},
|
| 508 |
+
{
|
| 509 |
+
"epoch": 1.20838208701202,
|
| 510 |
+
"grad_norm": 0.95703125,
|
| 511 |
+
"learning_rate": 6.736997542904844e-06,
|
| 512 |
+
"loss": 0.4026,
|
| 513 |
+
"step": 355
|
| 514 |
+
},
|
| 515 |
+
{
|
| 516 |
+
"epoch": 1.2254015530262738,
|
| 517 |
+
"grad_norm": 0.8671875,
|
| 518 |
+
"learning_rate": 6.484817734789839e-06,
|
| 519 |
+
"loss": 0.4099,
|
| 520 |
+
"step": 360
|
| 521 |
+
},
|
| 522 |
+
{
|
| 523 |
+
"epoch": 1.2424210190405276,
|
| 524 |
+
"grad_norm": 0.8125,
|
| 525 |
+
"learning_rate": 6.235163537125257e-06,
|
| 526 |
+
"loss": 0.3996,
|
| 527 |
+
"step": 365
|
| 528 |
+
},
|
| 529 |
+
{
|
| 530 |
+
"epoch": 1.2594404850547813,
|
| 531 |
+
"grad_norm": 0.95703125,
|
| 532 |
+
"learning_rate": 5.988214323042581e-06,
|
| 533 |
+
"loss": 0.397,
|
| 534 |
+
"step": 370
|
| 535 |
+
},
|
| 536 |
+
{
|
| 537 |
+
"epoch": 1.276459951069035,
|
| 538 |
+
"grad_norm": 0.8828125,
|
| 539 |
+
"learning_rate": 5.744147522179515e-06,
|
| 540 |
+
"loss": 0.3983,
|
| 541 |
+
"step": 375
|
| 542 |
+
},
|
| 543 |
+
{
|
| 544 |
+
"epoch": 1.293479417083289,
|
| 545 |
+
"grad_norm": 0.87109375,
|
| 546 |
+
"learning_rate": 5.503138493199247e-06,
|
| 547 |
+
"loss": 0.4045,
|
| 548 |
+
"step": 380
|
| 549 |
+
},
|
| 550 |
+
{
|
| 551 |
+
"epoch": 1.3104988830975428,
|
| 552 |
+
"grad_norm": 0.8125,
|
| 553 |
+
"learning_rate": 5.26536039779761e-06,
|
| 554 |
+
"loss": 0.4186,
|
| 555 |
+
"step": 385
|
| 556 |
+
},
|
| 557 |
+
{
|
| 558 |
+
"epoch": 1.3275183491117966,
|
| 559 |
+
"grad_norm": 0.88671875,
|
| 560 |
+
"learning_rate": 5.030984076288805e-06,
|
| 561 |
+
"loss": 0.4073,
|
| 562 |
+
"step": 390
|
| 563 |
+
},
|
| 564 |
+
{
|
| 565 |
+
"epoch": 1.3445378151260505,
|
| 566 |
+
"grad_norm": 0.90234375,
|
| 567 |
+
"learning_rate": 4.800177924858933e-06,
|
| 568 |
+
"loss": 0.4093,
|
| 569 |
+
"step": 395
|
| 570 |
+
},
|
| 571 |
+
{
|
| 572 |
+
"epoch": 1.3615572811403043,
|
| 573 |
+
"grad_norm": 0.8828125,
|
| 574 |
+
"learning_rate": 4.573107774575665e-06,
|
| 575 |
+
"loss": 0.4009,
|
| 576 |
+
"step": 400
|
| 577 |
+
},
|
| 578 |
+
{
|
| 579 |
+
"epoch": 1.378576747154558,
|
| 580 |
+
"grad_norm": 0.88671875,
|
| 581 |
+
"learning_rate": 4.34993677224086e-06,
|
| 582 |
+
"loss": 0.3877,
|
| 583 |
+
"step": 405
|
| 584 |
+
},
|
| 585 |
+
{
|
| 586 |
+
"epoch": 1.3955962131688118,
|
| 587 |
+
"grad_norm": 0.890625,
|
| 588 |
+
"learning_rate": 4.130825263171833e-06,
|
| 589 |
+
"loss": 0.4145,
|
| 590 |
+
"step": 410
|
| 591 |
+
},
|
| 592 |
+
{
|
| 593 |
+
"epoch": 1.4126156791830655,
|
| 594 |
+
"grad_norm": 0.8359375,
|
| 595 |
+
"learning_rate": 3.915930675995424e-06,
|
| 596 |
+
"loss": 0.409,
|
| 597 |
+
"step": 415
|
| 598 |
+
},
|
| 599 |
+
{
|
| 600 |
+
"epoch": 1.4296351451973195,
|
| 601 |
+
"grad_norm": 0.9296875,
|
| 602 |
+
"learning_rate": 3.7054074095376845e-06,
|
| 603 |
+
"loss": 0.412,
|
| 604 |
+
"step": 420
|
| 605 |
+
},
|
| 606 |
+
{
|
| 607 |
+
"epoch": 1.4466546112115732,
|
| 608 |
+
"grad_norm": 0.88671875,
|
| 609 |
+
"learning_rate": 3.4994067218904383e-06,
|
| 610 |
+
"loss": 0.4094,
|
| 611 |
+
"step": 425
|
| 612 |
+
},
|
| 613 |
+
{
|
| 614 |
+
"epoch": 1.463674077225827,
|
| 615 |
+
"grad_norm": 0.96875,
|
| 616 |
+
"learning_rate": 3.2980766217343852e-06,
|
| 617 |
+
"loss": 0.4011,
|
| 618 |
+
"step": 430
|
| 619 |
+
},
|
| 620 |
+
{
|
| 621 |
+
"epoch": 1.480693543240081,
|
| 622 |
+
"grad_norm": 0.85546875,
|
| 623 |
+
"learning_rate": 3.101561761996912e-06,
|
| 624 |
+
"loss": 0.4041,
|
| 625 |
+
"step": 435
|
| 626 |
+
},
|
| 627 |
+
{
|
| 628 |
+
"epoch": 1.4977130092543347,
|
| 629 |
+
"grad_norm": 0.8515625,
|
| 630 |
+
"learning_rate": 2.910003335920918e-06,
|
| 631 |
+
"loss": 0.4129,
|
| 632 |
+
"step": 440
|
| 633 |
+
},
|
| 634 |
+
{
|
| 635 |
+
"epoch": 1.5147324752685885,
|
| 636 |
+
"grad_norm": 0.87890625,
|
| 637 |
+
"learning_rate": 2.7235389756194097e-06,
|
| 638 |
+
"loss": 0.4021,
|
| 639 |
+
"step": 445
|
| 640 |
+
},
|
| 641 |
+
{
|
| 642 |
+
"epoch": 1.5317519412828422,
|
| 643 |
+
"grad_norm": 0.875,
|
| 644 |
+
"learning_rate": 2.542302653188704e-06,
|
| 645 |
+
"loss": 0.409,
|
| 646 |
+
"step": 450
|
| 647 |
+
},
|
| 648 |
+
{
|
| 649 |
+
"epoch": 1.548771407297096,
|
| 650 |
+
"grad_norm": 0.921875,
|
| 651 |
+
"learning_rate": 2.3664245844513078e-06,
|
| 652 |
+
"loss": 0.3986,
|
| 653 |
+
"step": 455
|
| 654 |
+
},
|
| 655 |
+
{
|
| 656 |
+
"epoch": 1.5657908733113497,
|
| 657 |
+
"grad_norm": 0.8828125,
|
| 658 |
+
"learning_rate": 2.1960311353976318e-06,
|
| 659 |
+
"loss": 0.4126,
|
| 660 |
+
"step": 460
|
| 661 |
+
},
|
| 662 |
+
{
|
| 663 |
+
"epoch": 1.5828103393256037,
|
| 664 |
+
"grad_norm": 0.87890625,
|
| 665 |
+
"learning_rate": 2.031244731393739e-06,
|
| 666 |
+
"loss": 0.4007,
|
| 667 |
+
"step": 465
|
| 668 |
+
},
|
| 669 |
+
{
|
| 670 |
+
"epoch": 1.5998298053398574,
|
| 671 |
+
"grad_norm": 0.8359375,
|
| 672 |
+
"learning_rate": 1.8721837692204115e-06,
|
| 673 |
+
"loss": 0.3942,
|
| 674 |
+
"step": 470
|
| 675 |
+
},
|
| 676 |
+
{
|
| 677 |
+
"epoch": 1.6168492713541114,
|
| 678 |
+
"grad_norm": 0.84375,
|
| 679 |
+
"learning_rate": 1.7189625320066573e-06,
|
| 680 |
+
"loss": 0.3918,
|
| 681 |
+
"step": 475
|
| 682 |
+
},
|
| 683 |
+
{
|
| 684 |
+
"epoch": 1.6338687373683651,
|
| 685 |
+
"grad_norm": 0.8515625,
|
| 686 |
+
"learning_rate": 1.5716911071188611e-06,
|
| 687 |
+
"loss": 0.4207,
|
| 688 |
+
"step": 480
|
| 689 |
+
},
|
| 690 |
+
{
|
| 691 |
+
"epoch": 1.6508882033826189,
|
| 692 |
+
"grad_norm": 0.83203125,
|
| 693 |
+
"learning_rate": 1.4304753070645083e-06,
|
| 694 |
+
"loss": 0.3924,
|
| 695 |
+
"step": 485
|
| 696 |
+
},
|
| 697 |
+
{
|
| 698 |
+
"epoch": 1.6679076693968726,
|
| 699 |
+
"grad_norm": 0.84765625,
|
| 700 |
+
"learning_rate": 1.295416593467338e-06,
|
| 701 |
+
"loss": 0.3986,
|
| 702 |
+
"step": 490
|
| 703 |
+
},
|
| 704 |
+
{
|
| 705 |
+
"epoch": 1.6849271354111264,
|
| 706 |
+
"grad_norm": 0.859375,
|
| 707 |
+
"learning_rate": 1.166612004168568e-06,
|
| 708 |
+
"loss": 0.4055,
|
| 709 |
+
"step": 495
|
| 710 |
+
},
|
| 711 |
+
{
|
| 712 |
+
"epoch": 1.7019466014253801,
|
| 713 |
+
"grad_norm": 0.98046875,
|
| 714 |
+
"learning_rate": 1.0441540835065101e-06,
|
| 715 |
+
"loss": 0.3996,
|
| 716 |
+
"step": 500
|
| 717 |
+
},
|
| 718 |
+
{
|
| 719 |
+
"epoch": 1.718966067439634,
|
| 720 |
+
"grad_norm": 0.8359375,
|
| 721 |
+
"learning_rate": 9.28130815824746e-07,
|
| 722 |
+
"loss": 0.411,
|
| 723 |
+
"step": 505
|
| 724 |
+
},
|
| 725 |
+
{
|
| 726 |
+
"epoch": 1.7359855334538878,
|
| 727 |
+
"grad_norm": 0.8359375,
|
| 728 |
+
"learning_rate": 8.186255622565642e-07,
|
| 729 |
+
"loss": 0.4101,
|
| 730 |
+
"step": 510
|
| 731 |
+
},
|
| 732 |
+
{
|
| 733 |
+
"epoch": 1.7530049994681418,
|
| 734 |
+
"grad_norm": 0.89453125,
|
| 735 |
+
"learning_rate": 7.15717000831132e-07,
|
| 736 |
+
"loss": 0.4132,
|
| 737 |
+
"step": 515
|
| 738 |
+
},
|
| 739 |
+
{
|
| 740 |
+
"epoch": 1.7700244654823956,
|
| 741 |
+
"grad_norm": 0.875,
|
| 742 |
+
"learning_rate": 6.19479069944402e-07,
|
| 743 |
+
"loss": 0.4109,
|
| 744 |
+
"step": 520
|
| 745 |
+
},
|
| 746 |
+
{
|
| 747 |
+
"epoch": 1.7870439314966493,
|
| 748 |
+
"grad_norm": 0.8828125,
|
| 749 |
+
"learning_rate": 5.299809152353863e-07,
|
| 750 |
+
"loss": 0.4106,
|
| 751 |
+
"step": 525
|
| 752 |
+
},
|
| 753 |
+
{
|
| 754 |
+
"epoch": 1.804063397510903,
|
| 755 |
+
"grad_norm": 0.8671875,
|
| 756 |
+
"learning_rate": 4.4728683990596267e-07,
|
| 757 |
+
"loss": 0.3986,
|
| 758 |
+
"step": 530
|
| 759 |
+
},
|
| 760 |
+
{
|
| 761 |
+
"epoch": 1.8210828635251568,
|
| 762 |
+
"grad_norm": 0.8671875,
|
| 763 |
+
"learning_rate": 3.714562585198922e-07,
|
| 764 |
+
"loss": 0.4101,
|
| 765 |
+
"step": 535
|
| 766 |
+
},
|
| 767 |
+
{
|
| 768 |
+
"epoch": 1.8381023295394106,
|
| 769 |
+
"grad_norm": 0.9296875,
|
| 770 |
+
"learning_rate": 3.025436543142801e-07,
|
| 771 |
+
"loss": 0.3974,
|
| 772 |
+
"step": 540
|
| 773 |
+
},
|
| 774 |
+
{
|
| 775 |
+
"epoch": 1.8551217955536645,
|
| 776 |
+
"grad_norm": 0.93359375,
|
| 777 |
+
"learning_rate": 2.4059854005410224e-07,
|
| 778 |
+
"loss": 0.4048,
|
| 779 |
+
"step": 545
|
| 780 |
+
},
|
| 781 |
+
{
|
| 782 |
+
"epoch": 1.8721412615679183,
|
| 783 |
+
"grad_norm": 0.90625,
|
| 784 |
+
"learning_rate": 1.856654224579635e-07,
|
| 785 |
+
"loss": 0.4075,
|
| 786 |
+
"step": 550
|
| 787 |
+
},
|
| 788 |
+
{
|
| 789 |
+
"epoch": 1.8891607275821722,
|
| 790 |
+
"grad_norm": 0.9375,
|
| 791 |
+
"learning_rate": 1.3778377022063083e-07,
|
| 792 |
+
"loss": 0.4045,
|
| 793 |
+
"step": 555
|
| 794 |
+
},
|
| 795 |
+
{
|
| 796 |
+
"epoch": 1.906180193596426,
|
| 797 |
+
"grad_norm": 0.9140625,
|
| 798 |
+
"learning_rate": 9.698798565531464e-08,
|
| 799 |
+
"loss": 0.4043,
|
| 800 |
+
"step": 560
|
| 801 |
+
},
|
| 802 |
+
{
|
| 803 |
+
"epoch": 1.9231996596106797,
|
| 804 |
+
"grad_norm": 0.86328125,
|
| 805 |
+
"learning_rate": 6.330737997607194e-08,
|
| 806 |
+
"loss": 0.3944,
|
| 807 |
+
"step": 565
|
| 808 |
+
},
|
| 809 |
+
{
|
| 810 |
+
"epoch": 1.9402191256249335,
|
| 811 |
+
"grad_norm": 0.84375,
|
| 812 |
+
"learning_rate": 3.6766152238106866e-08,
|
| 813 |
+
"loss": 0.4082,
|
| 814 |
+
"step": 570
|
| 815 |
+
},
|
| 816 |
+
{
|
| 817 |
+
"epoch": 1.9572385916391872,
|
| 818 |
+
"grad_norm": 0.90234375,
|
| 819 |
+
"learning_rate": 1.738337195107187e-08,
|
| 820 |
+
"loss": 0.404,
|
| 821 |
+
"step": 575
|
| 822 |
+
},
|
| 823 |
+
{
|
| 824 |
+
"epoch": 1.974258057653441,
|
| 825 |
+
"grad_norm": 0.88671875,
|
| 826 |
+
"learning_rate": 5.172965377890915e-09,
|
| 827 |
+
"loss": 0.4013,
|
| 828 |
+
"step": 580
|
| 829 |
+
},
|
| 830 |
+
{
|
| 831 |
+
"epoch": 1.991277523667695,
|
| 832 |
+
"grad_norm": 0.87890625,
|
| 833 |
+
"learning_rate": 1.4370552892883916e-10,
|
| 834 |
+
"loss": 0.4101,
|
| 835 |
+
"step": 585
|
| 836 |
+
},
|
| 837 |
+
{
|
| 838 |
+
"epoch": 1.9946814168705456,
|
| 839 |
+
"step": 586,
|
| 840 |
+
"total_flos": 2.1138563148357304e+18,
|
| 841 |
+
"train_loss": 0.4405478376373903,
|
| 842 |
+
"train_runtime": 25027.7179,
|
| 843 |
+
"train_samples_per_second": 3.005,
|
| 844 |
+
"train_steps_per_second": 0.023
|
| 845 |
+
}
|
| 846 |
+
],
|
| 847 |
+
"logging_steps": 5,
|
| 848 |
+
"max_steps": 586,
|
| 849 |
+
"num_input_tokens_seen": 0,
|
| 850 |
+
"num_train_epochs": 2,
|
| 851 |
+
"save_steps": 100,
|
| 852 |
+
"stateful_callbacks": {
|
| 853 |
+
"TrainerControl": {
|
| 854 |
+
"args": {
|
| 855 |
+
"should_epoch_stop": false,
|
| 856 |
+
"should_evaluate": false,
|
| 857 |
+
"should_log": false,
|
| 858 |
+
"should_save": true,
|
| 859 |
+
"should_training_stop": true
|
| 860 |
+
},
|
| 861 |
+
"attributes": {}
|
| 862 |
+
}
|
| 863 |
+
},
|
| 864 |
+
"total_flos": 2.1138563148357304e+18,
|
| 865 |
+
"train_batch_size": 1,
|
| 866 |
+
"trial_name": null,
|
| 867 |
+
"trial_params": null
|
| 868 |
+
}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1308ddaa7512a3fe9582495d267ec1f98bca04d479ccea4a5576aee63e23de81
|
| 3 |
+
size 5304
|
vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|