MeiManlin commited on
Commit
38d9250
·
verified ·
1 Parent(s): 8fd89bb

Upload 7 files

Browse files
.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 CHANGED
@@ -1,3 +1,89 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p align="left">
2
+ <a href="https://huggingface.co/datasets/ZTE-AIM/LLM-Adaptive-ZMath-model-32B/README.md">English</a> |
3
+ <a href="https://huggingface.co/datasets/ZTE-AIM/LLM-Adaptive-ZMath-model-32B/README_ZH-COT.md">中文</a>
4
+ </p>
5
+
6
+
7
+ datasets:
8
+
9
+ - ZTE-AIM/32B_LLM_AdaptiveMath_data
10
+ - ZTE-AIM/32B_LLM_AdaptiveCode_data
11
+
12
+ base_model:
13
+
14
+ - DeepSeek-R1-Distill-Qwen-32B
15
+ ---
16
+
17
+ ## 32B_LLM_AdaptiveMath_data
18
+ [\[🤗 HF Dataset\]](https://huggingface.co/datasets/ZTE-AIM/32B_LLM_AdaptiveMath_data)
19
+ ## LLM-Adaptive-CoT-Code-data
20
+ [\[🤗 HF Dataset\]](https://huggingface.co/datasets/ZTE-AIM/32B_LLM_AdaptiveCode_data)
21
+ ## LLM-Adaptive-ZMath-model-32B
22
+ [\[🤗 LLM-Adaptive-ZMath-model-32B\]](https://huggingface.co/ZTE-AIM/LLM-Adaptive-ZMath-model-32B)
23
+ ## LLM-Adaptive-ZCode-model-32B
24
+ [\[🤗 LLM-Adaptive-ZCode-model-32B\]](https://huggingface.co/ZTE-AIM/LLM-Adaptive-ZCode-model-32B)
25
+
26
+ ## Model Overview
27
+
28
+ This work presents a fine-tuned reasoning model built on the DeepSeek-Distill architecture through a novel LLM-Adaptive Question Difficulty Grading method. Unlike traditional CoT generation approaches, this model leverages the reasoning strength of DeepSeek-R1 (671B) to distill high-quality chain-of-thought (CoT) data. A core innovation lies in the dynamic construction of difficulty-aligned datasets based on the target LLM's own problem-solving capabilities.
29
+
30
+ The proposed approach includes adaptive evaluation of question difficulty, followed by tailored sampling and response generation. This enables the model to efficiently learn from progressively challenging problems, thereby boosting reasoning performance across multiple domains such as mathematical problem solving and code generation.
31
+
32
+ Fine-tuned variants like ZMath-32B and ZCode-32B exhibit superior performance to baseline models like DeepSeek-Distill-32B and phi-4, even with limited high-quality data. Notably, the ZMath-32B model trained on only 2K PRM-graded CoT samples surpassed its baseline across all math benchmarks, confirming the effectiveness of the adaptive CoT generation methodology.
33
+
34
+ ## Training Configuration
35
+
36
+ Our training framework builds on previous advancements in s1-1k, LIMO, and Light-R1, implemented through the LLama-Factory to leverage its proven scalability. The framework incorporates the Deepseek-R1 template, flash-attention2 and Liger-Kernel to improve computational efficiency while minimizing memory requirements. All experiments are conducted on a 2×8 H800 GPU cluster, with performance evaluations executed using the Skythought benchmarking suite.
37
+
38
+ The training configuration for grpo is as follows:
39
+ ```python
40
+ Context Length: 16,384 tokens
41
+ Learning Rate: 5e-6
42
+ Batch Size: 128
43
+ Epochs: 10
44
+ ```
45
+
46
+ ## Usage
47
+
48
+ You can load the model using the Hugging Face `transformers` library:
49
+
50
+ ```python
51
+ from transformers import AutoTokenizer, AutoModelForCausalLM
52
+ import torch
53
+
54
+ # Replace with the actual path to your model on Hugging Face.
55
+ model_name = "your-org/ZMath-32B"
56
+
57
+ # Load the tokenizer.
58
+ tokenizer = AutoTokenizer.from_pretrained(model_name, trust_remote_code=True)
59
+
60
+ # Load the model (with multi‑GPU support and automatic allocation to available devices).
61
+ model = AutoModelForCausalLM.from_pretrained(
62
+ model_name,
63
+ torch_dtype=torch.float16, # Use float16 precision to save GPU memory
64
+ device_map="auto", # Automatically distribute the model across multiple GPUs.
65
+ trust_remote_code=True
66
+ )
67
+
68
+ # 示例推理
69
+ prompt = "Solve the following math problem step by step: 12 * (3 + 4) = ?"
70
+ inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
71
+
72
+ with torch.no_grad():
73
+ outputs = model.generate(**inputs, max_new_tokens=100)
74
+
75
+ response = tokenizer.decode(outputs[0], skip_special_tokens=True)
76
+ print(response)
77
+
78
+ ```
79
+
80
+ ## Paper Link
81
+ - [📄 Read the Paper (PDF)](https://arxiv.org/pdf/2504.11919)
82
+
83
+ # Institution
84
+ - ZTE-AIM
85
+
86
+ ## Model Contact
87
88
89
+
README_ZH_COT.md ADDED
@@ -0,0 +1,87 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p align="left">
2
+ <a href="https://huggingface.co/datasets/ZTE-AIM/LLM-Adaptive-ZMath-model-32B/README.md">English</a> |
3
+ <a href="https://huggingface.co/datasets/ZTE-AIM/LLM-Adaptive-ZMath-model-32B/README_ZH-COT.md">中文</a>
4
+ </p>
5
+
6
+ datasets:
7
+
8
+ - ZTE-AIM/32B_LLM_AdaptiveMath_data
9
+ - ZTE-AIM/32B_LLM_AdaptiveCode_data
10
+
11
+ base_model:
12
+
13
+ - DeepSeek-R1-Distill-Qwen-32B
14
+ ---
15
+
16
+ ## 32B_LLM_AdaptiveMath_data
17
+ [\[🤗 HF 数据集\]](https://huggingface.co/datasets/ZTE-AIM/32B_LLM_AdaptiveMath_data)
18
+
19
+ ## LLM-Adaptive-CoT-Code-data
20
+ [\[🤗 HF 数据集\]](https://huggingface.co/datasets/ZTE-AIM/32B_LLM_AdaptiveCode_data)
21
+
22
+ ## LLM-Adaptive-ZMath-model-32B
23
+ [\[🤗 LLM-Adaptive-ZMath-model-32B\]](https://huggingface.co/ZTE-AIM/LLM-Adaptive-ZMath-model-32B)
24
+
25
+ ## LLM-Adaptive-ZCode-model-32B
26
+ [\[🤗 LLM-Adaptive-ZCode-model-32B\]](https://huggingface.co/ZTE-AIM/LLM-Adaptive-ZCode-model-32B)
27
+
28
+ ## 模型概述
29
+
30
+ 本工作通过一种新颖的 LLM 自适应题目难度分级方法,在 DeepSeek-Distill 架构基础上进行了微调,得到了一个高效的推理模型。不同于传统的 CoT(Chain-of-Thought)生成方法,该模型利用 DeepSeek-R1(671B)的推理能力来蒸馏出高质量的思维链数据。核心创新点在于根据目标 LLM 本身的解题能力,动态构建与之难度匹配的数据集。
31
+
32
+ 所提方法包括对题目难度的自适应评估,以及针对性采样与响应生成。这使模型能够从渐进递增难度的问题中高效学习,从而在数学题求解和代码生成等多个领域显著提升推理性能。
33
+
34
+ 经过微调的 ZMath-32B 和 ZCode-32B 变体,在可用的高质量数据量有限的情况下,性能仍优于 DeepSeek-Distill-32B 和 phi-4 等基准模型。值得注意的是,仅使用 2K 条 PRM 分级的 CoT 样本训练的 ZMath-32B 模型,就在所有数学基准上都超越了基线,充分验证了自适应 CoT 生成方法的有效性。
35
+
36
+ ## 训练配置
37
+
38
+ 我们的训练框架基于 s1-1k、LIMO 和 Light-R1 等前沿方案,通过 LLama-Factory 实现高可扩展性。框架中融合了 Deepseek-R1 模板、flash-attention2 和 Liger-Kernel,以提升计算效率并降低内存消耗。所有实验均在 2×8 H800 GPU 集群上进行,性能评估使用 Skythought 基准套件。
39
+
40
+ 本次 grpo 训练的关键配置如下:
41
+ ```python
42
+ Context Length: 16,384 tokens
43
+ Learning Rate: 5e-6
44
+ Batch Size: 128
45
+ Epochs: 10
46
+ ```
47
+
48
+ ## 使用方法
49
+
50
+ 你可以通过 Hugging Face 的 `transformers` 库加载该模型:
51
+ ```python
52
+ from transformers import AutoTokenizer, AutoModelForCausalLM
53
+ import torch
54
+
55
+ # 将以下替换为你在 Hugging Face 上模型的实际路径。
56
+ model_name = "your-org/ZMath-32B"
57
+
58
+ # 加载分词器
59
+ tokenizer = AutoTokenizer.from_pretrained(model_name, trust_remote_code=True)
60
+
61
+ # 加载模型(支持多 GPU 并自动分配设备)
62
+ model = AutoModelForCausalLM.from_pretrained(
63
+ model_name,
64
+ torch_dtype=torch.float16, # 使用 float16 精度以节省显存
65
+ device_map="auto", # 自动将模型分配到可用 GPU
66
+ trust_remote_code=True
67
+ )
68
+
69
+ # 示例推理
70
+ prompt = "Solve the following math problem step by step: 12 * (3 + 4) = ?"
71
+ inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
72
+
73
+ with torch.no_grad():
74
+ outputs = model.generate(**inputs, max_new_tokens=100)
75
+
76
+ response = tokenizer.decode(outputs[0], skip_special_tokens=True)
77
+ print(response)
78
+ ```
79
+ ## 论文链接
80
+ - [📄 阅读论文 (PDF)](https://arxiv.org/pdf/2504.11919)
81
+
82
+ ## 机构
83
+ - ZTE-AIM
84
+
85
+ ## 模型联系人
86
87
model.safetensors.index.json ADDED
@@ -0,0 +1,778 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "metadata": {
3
+ "total_size": 65527752704
4
+ },
5
+ "weight_map": {
6
+ "lm_head.weight": "model-00014-of-00014.safetensors",
7
+ "model.embed_tokens.weight": "model-00001-of-00014.safetensors",
8
+ "model.layers.0.input_layernorm.weight": "model-00001-of-00014.safetensors",
9
+ "model.layers.0.mlp.down_proj.weight": "model-00001-of-00014.safetensors",
10
+ "model.layers.0.mlp.gate_proj.weight": "model-00001-of-00014.safetensors",
11
+ "model.layers.0.mlp.up_proj.weight": "model-00001-of-00014.safetensors",
12
+ "model.layers.0.post_attention_layernorm.weight": "model-00001-of-00014.safetensors",
13
+ "model.layers.0.self_attn.k_proj.bias": "model-00001-of-00014.safetensors",
14
+ "model.layers.0.self_attn.k_proj.weight": "model-00001-of-00014.safetensors",
15
+ "model.layers.0.self_attn.o_proj.weight": "model-00001-of-00014.safetensors",
16
+ "model.layers.0.self_attn.q_proj.bias": "model-00001-of-00014.safetensors",
17
+ "model.layers.0.self_attn.q_proj.weight": "model-00001-of-00014.safetensors",
18
+ "model.layers.0.self_attn.v_proj.bias": "model-00001-of-00014.safetensors",
19
+ "model.layers.0.self_attn.v_proj.weight": "model-00001-of-00014.safetensors",
20
+ "model.layers.1.input_layernorm.weight": "model-00001-of-00014.safetensors",
21
+ "model.layers.1.mlp.down_proj.weight": "model-00001-of-00014.safetensors",
22
+ "model.layers.1.mlp.gate_proj.weight": "model-00001-of-00014.safetensors",
23
+ "model.layers.1.mlp.up_proj.weight": "model-00001-of-00014.safetensors",
24
+ "model.layers.1.post_attention_layernorm.weight": "model-00001-of-00014.safetensors",
25
+ "model.layers.1.self_attn.k_proj.bias": "model-00001-of-00014.safetensors",
26
+ "model.layers.1.self_attn.k_proj.weight": "model-00001-of-00014.safetensors",
27
+ "model.layers.1.self_attn.o_proj.weight": "model-00001-of-00014.safetensors",
28
+ "model.layers.1.self_attn.q_proj.bias": "model-00001-of-00014.safetensors",
29
+ "model.layers.1.self_attn.q_proj.weight": "model-00001-of-00014.safetensors",
30
+ "model.layers.1.self_attn.v_proj.bias": "model-00001-of-00014.safetensors",
31
+ "model.layers.1.self_attn.v_proj.weight": "model-00001-of-00014.safetensors",
32
+ "model.layers.10.input_layernorm.weight": "model-00003-of-00014.safetensors",
33
+ "model.layers.10.mlp.down_proj.weight": "model-00003-of-00014.safetensors",
34
+ "model.layers.10.mlp.gate_proj.weight": "model-00003-of-00014.safetensors",
35
+ "model.layers.10.mlp.up_proj.weight": "model-00003-of-00014.safetensors",
36
+ "model.layers.10.post_attention_layernorm.weight": "model-00003-of-00014.safetensors",
37
+ "model.layers.10.self_attn.k_proj.bias": "model-00003-of-00014.safetensors",
38
+ "model.layers.10.self_attn.k_proj.weight": "model-00003-of-00014.safetensors",
39
+ "model.layers.10.self_attn.o_proj.weight": "model-00003-of-00014.safetensors",
40
+ "model.layers.10.self_attn.q_proj.bias": "model-00003-of-00014.safetensors",
41
+ "model.layers.10.self_attn.q_proj.weight": "model-00003-of-00014.safetensors",
42
+ "model.layers.10.self_attn.v_proj.bias": "model-00003-of-00014.safetensors",
43
+ "model.layers.10.self_attn.v_proj.weight": "model-00003-of-00014.safetensors",
44
+ "model.layers.11.input_layernorm.weight": "model-00003-of-00014.safetensors",
45
+ "model.layers.11.mlp.down_proj.weight": "model-00003-of-00014.safetensors",
46
+ "model.layers.11.mlp.gate_proj.weight": "model-00003-of-00014.safetensors",
47
+ "model.layers.11.mlp.up_proj.weight": "model-00003-of-00014.safetensors",
48
+ "model.layers.11.post_attention_layernorm.weight": "model-00003-of-00014.safetensors",
49
+ "model.layers.11.self_attn.k_proj.bias": "model-00003-of-00014.safetensors",
50
+ "model.layers.11.self_attn.k_proj.weight": "model-00003-of-00014.safetensors",
51
+ "model.layers.11.self_attn.o_proj.weight": "model-00003-of-00014.safetensors",
52
+ "model.layers.11.self_attn.q_proj.bias": "model-00003-of-00014.safetensors",
53
+ "model.layers.11.self_attn.q_proj.weight": "model-00003-of-00014.safetensors",
54
+ "model.layers.11.self_attn.v_proj.bias": "model-00003-of-00014.safetensors",
55
+ "model.layers.11.self_attn.v_proj.weight": "model-00003-of-00014.safetensors",
56
+ "model.layers.12.input_layernorm.weight": "model-00003-of-00014.safetensors",
57
+ "model.layers.12.mlp.down_proj.weight": "model-00003-of-00014.safetensors",
58
+ "model.layers.12.mlp.gate_proj.weight": "model-00003-of-00014.safetensors",
59
+ "model.layers.12.mlp.up_proj.weight": "model-00003-of-00014.safetensors",
60
+ "model.layers.12.post_attention_layernorm.weight": "model-00003-of-00014.safetensors",
61
+ "model.layers.12.self_attn.k_proj.bias": "model-00003-of-00014.safetensors",
62
+ "model.layers.12.self_attn.k_proj.weight": "model-00003-of-00014.safetensors",
63
+ "model.layers.12.self_attn.o_proj.weight": "model-00003-of-00014.safetensors",
64
+ "model.layers.12.self_attn.q_proj.bias": "model-00003-of-00014.safetensors",
65
+ "model.layers.12.self_attn.q_proj.weight": "model-00003-of-00014.safetensors",
66
+ "model.layers.12.self_attn.v_proj.bias": "model-00003-of-00014.safetensors",
67
+ "model.layers.12.self_attn.v_proj.weight": "model-00003-of-00014.safetensors",
68
+ "model.layers.13.input_layernorm.weight": "model-00004-of-00014.safetensors",
69
+ "model.layers.13.mlp.down_proj.weight": "model-00004-of-00014.safetensors",
70
+ "model.layers.13.mlp.gate_proj.weight": "model-00003-of-00014.safetensors",
71
+ "model.layers.13.mlp.up_proj.weight": "model-00004-of-00014.safetensors",
72
+ "model.layers.13.post_attention_layernorm.weight": "model-00004-of-00014.safetensors",
73
+ "model.layers.13.self_attn.k_proj.bias": "model-00003-of-00014.safetensors",
74
+ "model.layers.13.self_attn.k_proj.weight": "model-00003-of-00014.safetensors",
75
+ "model.layers.13.self_attn.o_proj.weight": "model-00003-of-00014.safetensors",
76
+ "model.layers.13.self_attn.q_proj.bias": "model-00003-of-00014.safetensors",
77
+ "model.layers.13.self_attn.q_proj.weight": "model-00003-of-00014.safetensors",
78
+ "model.layers.13.self_attn.v_proj.bias": "model-00003-of-00014.safetensors",
79
+ "model.layers.13.self_attn.v_proj.weight": "model-00003-of-00014.safetensors",
80
+ "model.layers.14.input_layernorm.weight": "model-00004-of-00014.safetensors",
81
+ "model.layers.14.mlp.down_proj.weight": "model-00004-of-00014.safetensors",
82
+ "model.layers.14.mlp.gate_proj.weight": "model-00004-of-00014.safetensors",
83
+ "model.layers.14.mlp.up_proj.weight": "model-00004-of-00014.safetensors",
84
+ "model.layers.14.post_attention_layernorm.weight": "model-00004-of-00014.safetensors",
85
+ "model.layers.14.self_attn.k_proj.bias": "model-00004-of-00014.safetensors",
86
+ "model.layers.14.self_attn.k_proj.weight": "model-00004-of-00014.safetensors",
87
+ "model.layers.14.self_attn.o_proj.weight": "model-00004-of-00014.safetensors",
88
+ "model.layers.14.self_attn.q_proj.bias": "model-00004-of-00014.safetensors",
89
+ "model.layers.14.self_attn.q_proj.weight": "model-00004-of-00014.safetensors",
90
+ "model.layers.14.self_attn.v_proj.bias": "model-00004-of-00014.safetensors",
91
+ "model.layers.14.self_attn.v_proj.weight": "model-00004-of-00014.safetensors",
92
+ "model.layers.15.input_layernorm.weight": "model-00004-of-00014.safetensors",
93
+ "model.layers.15.mlp.down_proj.weight": "model-00004-of-00014.safetensors",
94
+ "model.layers.15.mlp.gate_proj.weight": "model-00004-of-00014.safetensors",
95
+ "model.layers.15.mlp.up_proj.weight": "model-00004-of-00014.safetensors",
96
+ "model.layers.15.post_attention_layernorm.weight": "model-00004-of-00014.safetensors",
97
+ "model.layers.15.self_attn.k_proj.bias": "model-00004-of-00014.safetensors",
98
+ "model.layers.15.self_attn.k_proj.weight": "model-00004-of-00014.safetensors",
99
+ "model.layers.15.self_attn.o_proj.weight": "model-00004-of-00014.safetensors",
100
+ "model.layers.15.self_attn.q_proj.bias": "model-00004-of-00014.safetensors",
101
+ "model.layers.15.self_attn.q_proj.weight": "model-00004-of-00014.safetensors",
102
+ "model.layers.15.self_attn.v_proj.bias": "model-00004-of-00014.safetensors",
103
+ "model.layers.15.self_attn.v_proj.weight": "model-00004-of-00014.safetensors",
104
+ "model.layers.16.input_layernorm.weight": "model-00004-of-00014.safetensors",
105
+ "model.layers.16.mlp.down_proj.weight": "model-00004-of-00014.safetensors",
106
+ "model.layers.16.mlp.gate_proj.weight": "model-00004-of-00014.safetensors",
107
+ "model.layers.16.mlp.up_proj.weight": "model-00004-of-00014.safetensors",
108
+ "model.layers.16.post_attention_layernorm.weight": "model-00004-of-00014.safetensors",
109
+ "model.layers.16.self_attn.k_proj.bias": "model-00004-of-00014.safetensors",
110
+ "model.layers.16.self_attn.k_proj.weight": "model-00004-of-00014.safetensors",
111
+ "model.layers.16.self_attn.o_proj.weight": "model-00004-of-00014.safetensors",
112
+ "model.layers.16.self_attn.q_proj.bias": "model-00004-of-00014.safetensors",
113
+ "model.layers.16.self_attn.q_proj.weight": "model-00004-of-00014.safetensors",
114
+ "model.layers.16.self_attn.v_proj.bias": "model-00004-of-00014.safetensors",
115
+ "model.layers.16.self_attn.v_proj.weight": "model-00004-of-00014.safetensors",
116
+ "model.layers.17.input_layernorm.weight": "model-00004-of-00014.safetensors",
117
+ "model.layers.17.mlp.down_proj.weight": "model-00004-of-00014.safetensors",
118
+ "model.layers.17.mlp.gate_proj.weight": "model-00004-of-00014.safetensors",
119
+ "model.layers.17.mlp.up_proj.weight": "model-00004-of-00014.safetensors",
120
+ "model.layers.17.post_attention_layernorm.weight": "model-00004-of-00014.safetensors",
121
+ "model.layers.17.self_attn.k_proj.bias": "model-00004-of-00014.safetensors",
122
+ "model.layers.17.self_attn.k_proj.weight": "model-00004-of-00014.safetensors",
123
+ "model.layers.17.self_attn.o_proj.weight": "model-00004-of-00014.safetensors",
124
+ "model.layers.17.self_attn.q_proj.bias": "model-00004-of-00014.safetensors",
125
+ "model.layers.17.self_attn.q_proj.weight": "model-00004-of-00014.safetensors",
126
+ "model.layers.17.self_attn.v_proj.bias": "model-00004-of-00014.safetensors",
127
+ "model.layers.17.self_attn.v_proj.weight": "model-00004-of-00014.safetensors",
128
+ "model.layers.18.input_layernorm.weight": "model-00005-of-00014.safetensors",
129
+ "model.layers.18.mlp.down_proj.weight": "model-00005-of-00014.safetensors",
130
+ "model.layers.18.mlp.gate_proj.weight": "model-00004-of-00014.safetensors",
131
+ "model.layers.18.mlp.up_proj.weight": "model-00005-of-00014.safetensors",
132
+ "model.layers.18.post_attention_layernorm.weight": "model-00005-of-00014.safetensors",
133
+ "model.layers.18.self_attn.k_proj.bias": "model-00004-of-00014.safetensors",
134
+ "model.layers.18.self_attn.k_proj.weight": "model-00004-of-00014.safetensors",
135
+ "model.layers.18.self_attn.o_proj.weight": "model-00004-of-00014.safetensors",
136
+ "model.layers.18.self_attn.q_proj.bias": "model-00004-of-00014.safetensors",
137
+ "model.layers.18.self_attn.q_proj.weight": "model-00004-of-00014.safetensors",
138
+ "model.layers.18.self_attn.v_proj.bias": "model-00004-of-00014.safetensors",
139
+ "model.layers.18.self_attn.v_proj.weight": "model-00004-of-00014.safetensors",
140
+ "model.layers.19.input_layernorm.weight": "model-00005-of-00014.safetensors",
141
+ "model.layers.19.mlp.down_proj.weight": "model-00005-of-00014.safetensors",
142
+ "model.layers.19.mlp.gate_proj.weight": "model-00005-of-00014.safetensors",
143
+ "model.layers.19.mlp.up_proj.weight": "model-00005-of-00014.safetensors",
144
+ "model.layers.19.post_attention_layernorm.weight": "model-00005-of-00014.safetensors",
145
+ "model.layers.19.self_attn.k_proj.bias": "model-00005-of-00014.safetensors",
146
+ "model.layers.19.self_attn.k_proj.weight": "model-00005-of-00014.safetensors",
147
+ "model.layers.19.self_attn.o_proj.weight": "model-00005-of-00014.safetensors",
148
+ "model.layers.19.self_attn.q_proj.bias": "model-00005-of-00014.safetensors",
149
+ "model.layers.19.self_attn.q_proj.weight": "model-00005-of-00014.safetensors",
150
+ "model.layers.19.self_attn.v_proj.bias": "model-00005-of-00014.safetensors",
151
+ "model.layers.19.self_attn.v_proj.weight": "model-00005-of-00014.safetensors",
152
+ "model.layers.2.input_layernorm.weight": "model-00001-of-00014.safetensors",
153
+ "model.layers.2.mlp.down_proj.weight": "model-00001-of-00014.safetensors",
154
+ "model.layers.2.mlp.gate_proj.weight": "model-00001-of-00014.safetensors",
155
+ "model.layers.2.mlp.up_proj.weight": "model-00001-of-00014.safetensors",
156
+ "model.layers.2.post_attention_layernorm.weight": "model-00001-of-00014.safetensors",
157
+ "model.layers.2.self_attn.k_proj.bias": "model-00001-of-00014.safetensors",
158
+ "model.layers.2.self_attn.k_proj.weight": "model-00001-of-00014.safetensors",
159
+ "model.layers.2.self_attn.o_proj.weight": "model-00001-of-00014.safetensors",
160
+ "model.layers.2.self_attn.q_proj.bias": "model-00001-of-00014.safetensors",
161
+ "model.layers.2.self_attn.q_proj.weight": "model-00001-of-00014.safetensors",
162
+ "model.layers.2.self_attn.v_proj.bias": "model-00001-of-00014.safetensors",
163
+ "model.layers.2.self_attn.v_proj.weight": "model-00001-of-00014.safetensors",
164
+ "model.layers.20.input_layernorm.weight": "model-00005-of-00014.safetensors",
165
+ "model.layers.20.mlp.down_proj.weight": "model-00005-of-00014.safetensors",
166
+ "model.layers.20.mlp.gate_proj.weight": "model-00005-of-00014.safetensors",
167
+ "model.layers.20.mlp.up_proj.weight": "model-00005-of-00014.safetensors",
168
+ "model.layers.20.post_attention_layernorm.weight": "model-00005-of-00014.safetensors",
169
+ "model.layers.20.self_attn.k_proj.bias": "model-00005-of-00014.safetensors",
170
+ "model.layers.20.self_attn.k_proj.weight": "model-00005-of-00014.safetensors",
171
+ "model.layers.20.self_attn.o_proj.weight": "model-00005-of-00014.safetensors",
172
+ "model.layers.20.self_attn.q_proj.bias": "model-00005-of-00014.safetensors",
173
+ "model.layers.20.self_attn.q_proj.weight": "model-00005-of-00014.safetensors",
174
+ "model.layers.20.self_attn.v_proj.bias": "model-00005-of-00014.safetensors",
175
+ "model.layers.20.self_attn.v_proj.weight": "model-00005-of-00014.safetensors",
176
+ "model.layers.21.input_layernorm.weight": "model-00005-of-00014.safetensors",
177
+ "model.layers.21.mlp.down_proj.weight": "model-00005-of-00014.safetensors",
178
+ "model.layers.21.mlp.gate_proj.weight": "model-00005-of-00014.safetensors",
179
+ "model.layers.21.mlp.up_proj.weight": "model-00005-of-00014.safetensors",
180
+ "model.layers.21.post_attention_layernorm.weight": "model-00005-of-00014.safetensors",
181
+ "model.layers.21.self_attn.k_proj.bias": "model-00005-of-00014.safetensors",
182
+ "model.layers.21.self_attn.k_proj.weight": "model-00005-of-00014.safetensors",
183
+ "model.layers.21.self_attn.o_proj.weight": "model-00005-of-00014.safetensors",
184
+ "model.layers.21.self_attn.q_proj.bias": "model-00005-of-00014.safetensors",
185
+ "model.layers.21.self_attn.q_proj.weight": "model-00005-of-00014.safetensors",
186
+ "model.layers.21.self_attn.v_proj.bias": "model-00005-of-00014.safetensors",
187
+ "model.layers.21.self_attn.v_proj.weight": "model-00005-of-00014.safetensors",
188
+ "model.layers.22.input_layernorm.weight": "model-00005-of-00014.safetensors",
189
+ "model.layers.22.mlp.down_proj.weight": "model-00005-of-00014.safetensors",
190
+ "model.layers.22.mlp.gate_proj.weight": "model-00005-of-00014.safetensors",
191
+ "model.layers.22.mlp.up_proj.weight": "model-00005-of-00014.safetensors",
192
+ "model.layers.22.post_attention_layernorm.weight": "model-00005-of-00014.safetensors",
193
+ "model.layers.22.self_attn.k_proj.bias": "model-00005-of-00014.safetensors",
194
+ "model.layers.22.self_attn.k_proj.weight": "model-00005-of-00014.safetensors",
195
+ "model.layers.22.self_attn.o_proj.weight": "model-00005-of-00014.safetensors",
196
+ "model.layers.22.self_attn.q_proj.bias": "model-00005-of-00014.safetensors",
197
+ "model.layers.22.self_attn.q_proj.weight": "model-00005-of-00014.safetensors",
198
+ "model.layers.22.self_attn.v_proj.bias": "model-00005-of-00014.safetensors",
199
+ "model.layers.22.self_attn.v_proj.weight": "model-00005-of-00014.safetensors",
200
+ "model.layers.23.input_layernorm.weight": "model-00006-of-00014.safetensors",
201
+ "model.layers.23.mlp.down_proj.weight": "model-00006-of-00014.safetensors",
202
+ "model.layers.23.mlp.gate_proj.weight": "model-00005-of-00014.safetensors",
203
+ "model.layers.23.mlp.up_proj.weight": "model-00006-of-00014.safetensors",
204
+ "model.layers.23.post_attention_layernorm.weight": "model-00006-of-00014.safetensors",
205
+ "model.layers.23.self_attn.k_proj.bias": "model-00005-of-00014.safetensors",
206
+ "model.layers.23.self_attn.k_proj.weight": "model-00005-of-00014.safetensors",
207
+ "model.layers.23.self_attn.o_proj.weight": "model-00005-of-00014.safetensors",
208
+ "model.layers.23.self_attn.q_proj.bias": "model-00005-of-00014.safetensors",
209
+ "model.layers.23.self_attn.q_proj.weight": "model-00005-of-00014.safetensors",
210
+ "model.layers.23.self_attn.v_proj.bias": "model-00005-of-00014.safetensors",
211
+ "model.layers.23.self_attn.v_proj.weight": "model-00005-of-00014.safetensors",
212
+ "model.layers.24.input_layernorm.weight": "model-00006-of-00014.safetensors",
213
+ "model.layers.24.mlp.down_proj.weight": "model-00006-of-00014.safetensors",
214
+ "model.layers.24.mlp.gate_proj.weight": "model-00006-of-00014.safetensors",
215
+ "model.layers.24.mlp.up_proj.weight": "model-00006-of-00014.safetensors",
216
+ "model.layers.24.post_attention_layernorm.weight": "model-00006-of-00014.safetensors",
217
+ "model.layers.24.self_attn.k_proj.bias": "model-00006-of-00014.safetensors",
218
+ "model.layers.24.self_attn.k_proj.weight": "model-00006-of-00014.safetensors",
219
+ "model.layers.24.self_attn.o_proj.weight": "model-00006-of-00014.safetensors",
220
+ "model.layers.24.self_attn.q_proj.bias": "model-00006-of-00014.safetensors",
221
+ "model.layers.24.self_attn.q_proj.weight": "model-00006-of-00014.safetensors",
222
+ "model.layers.24.self_attn.v_proj.bias": "model-00006-of-00014.safetensors",
223
+ "model.layers.24.self_attn.v_proj.weight": "model-00006-of-00014.safetensors",
224
+ "model.layers.25.input_layernorm.weight": "model-00006-of-00014.safetensors",
225
+ "model.layers.25.mlp.down_proj.weight": "model-00006-of-00014.safetensors",
226
+ "model.layers.25.mlp.gate_proj.weight": "model-00006-of-00014.safetensors",
227
+ "model.layers.25.mlp.up_proj.weight": "model-00006-of-00014.safetensors",
228
+ "model.layers.25.post_attention_layernorm.weight": "model-00006-of-00014.safetensors",
229
+ "model.layers.25.self_attn.k_proj.bias": "model-00006-of-00014.safetensors",
230
+ "model.layers.25.self_attn.k_proj.weight": "model-00006-of-00014.safetensors",
231
+ "model.layers.25.self_attn.o_proj.weight": "model-00006-of-00014.safetensors",
232
+ "model.layers.25.self_attn.q_proj.bias": "model-00006-of-00014.safetensors",
233
+ "model.layers.25.self_attn.q_proj.weight": "model-00006-of-00014.safetensors",
234
+ "model.layers.25.self_attn.v_proj.bias": "model-00006-of-00014.safetensors",
235
+ "model.layers.25.self_attn.v_proj.weight": "model-00006-of-00014.safetensors",
236
+ "model.layers.26.input_layernorm.weight": "model-00006-of-00014.safetensors",
237
+ "model.layers.26.mlp.down_proj.weight": "model-00006-of-00014.safetensors",
238
+ "model.layers.26.mlp.gate_proj.weight": "model-00006-of-00014.safetensors",
239
+ "model.layers.26.mlp.up_proj.weight": "model-00006-of-00014.safetensors",
240
+ "model.layers.26.post_attention_layernorm.weight": "model-00006-of-00014.safetensors",
241
+ "model.layers.26.self_attn.k_proj.bias": "model-00006-of-00014.safetensors",
242
+ "model.layers.26.self_attn.k_proj.weight": "model-00006-of-00014.safetensors",
243
+ "model.layers.26.self_attn.o_proj.weight": "model-00006-of-00014.safetensors",
244
+ "model.layers.26.self_attn.q_proj.bias": "model-00006-of-00014.safetensors",
245
+ "model.layers.26.self_attn.q_proj.weight": "model-00006-of-00014.safetensors",
246
+ "model.layers.26.self_attn.v_proj.bias": "model-00006-of-00014.safetensors",
247
+ "model.layers.26.self_attn.v_proj.weight": "model-00006-of-00014.safetensors",
248
+ "model.layers.27.input_layernorm.weight": "model-00006-of-00014.safetensors",
249
+ "model.layers.27.mlp.down_proj.weight": "model-00006-of-00014.safetensors",
250
+ "model.layers.27.mlp.gate_proj.weight": "model-00006-of-00014.safetensors",
251
+ "model.layers.27.mlp.up_proj.weight": "model-00006-of-00014.safetensors",
252
+ "model.layers.27.post_attention_layernorm.weight": "model-00006-of-00014.safetensors",
253
+ "model.layers.27.self_attn.k_proj.bias": "model-00006-of-00014.safetensors",
254
+ "model.layers.27.self_attn.k_proj.weight": "model-00006-of-00014.safetensors",
255
+ "model.layers.27.self_attn.o_proj.weight": "model-00006-of-00014.safetensors",
256
+ "model.layers.27.self_attn.q_proj.bias": "model-00006-of-00014.safetensors",
257
+ "model.layers.27.self_attn.q_proj.weight": "model-00006-of-00014.safetensors",
258
+ "model.layers.27.self_attn.v_proj.bias": "model-00006-of-00014.safetensors",
259
+ "model.layers.27.self_attn.v_proj.weight": "model-00006-of-00014.safetensors",
260
+ "model.layers.28.input_layernorm.weight": "model-00007-of-00014.safetensors",
261
+ "model.layers.28.mlp.down_proj.weight": "model-00007-of-00014.safetensors",
262
+ "model.layers.28.mlp.gate_proj.weight": "model-00006-of-00014.safetensors",
263
+ "model.layers.28.mlp.up_proj.weight": "model-00007-of-00014.safetensors",
264
+ "model.layers.28.post_attention_layernorm.weight": "model-00007-of-00014.safetensors",
265
+ "model.layers.28.self_attn.k_proj.bias": "model-00006-of-00014.safetensors",
266
+ "model.layers.28.self_attn.k_proj.weight": "model-00006-of-00014.safetensors",
267
+ "model.layers.28.self_attn.o_proj.weight": "model-00006-of-00014.safetensors",
268
+ "model.layers.28.self_attn.q_proj.bias": "model-00006-of-00014.safetensors",
269
+ "model.layers.28.self_attn.q_proj.weight": "model-00006-of-00014.safetensors",
270
+ "model.layers.28.self_attn.v_proj.bias": "model-00006-of-00014.safetensors",
271
+ "model.layers.28.self_attn.v_proj.weight": "model-00006-of-00014.safetensors",
272
+ "model.layers.29.input_layernorm.weight": "model-00007-of-00014.safetensors",
273
+ "model.layers.29.mlp.down_proj.weight": "model-00007-of-00014.safetensors",
274
+ "model.layers.29.mlp.gate_proj.weight": "model-00007-of-00014.safetensors",
275
+ "model.layers.29.mlp.up_proj.weight": "model-00007-of-00014.safetensors",
276
+ "model.layers.29.post_attention_layernorm.weight": "model-00007-of-00014.safetensors",
277
+ "model.layers.29.self_attn.k_proj.bias": "model-00007-of-00014.safetensors",
278
+ "model.layers.29.self_attn.k_proj.weight": "model-00007-of-00014.safetensors",
279
+ "model.layers.29.self_attn.o_proj.weight": "model-00007-of-00014.safetensors",
280
+ "model.layers.29.self_attn.q_proj.bias": "model-00007-of-00014.safetensors",
281
+ "model.layers.29.self_attn.q_proj.weight": "model-00007-of-00014.safetensors",
282
+ "model.layers.29.self_attn.v_proj.bias": "model-00007-of-00014.safetensors",
283
+ "model.layers.29.self_attn.v_proj.weight": "model-00007-of-00014.safetensors",
284
+ "model.layers.3.input_layernorm.weight": "model-00002-of-00014.safetensors",
285
+ "model.layers.3.mlp.down_proj.weight": "model-00002-of-00014.safetensors",
286
+ "model.layers.3.mlp.gate_proj.weight": "model-00001-of-00014.safetensors",
287
+ "model.layers.3.mlp.up_proj.weight": "model-00002-of-00014.safetensors",
288
+ "model.layers.3.post_attention_layernorm.weight": "model-00002-of-00014.safetensors",
289
+ "model.layers.3.self_attn.k_proj.bias": "model-00001-of-00014.safetensors",
290
+ "model.layers.3.self_attn.k_proj.weight": "model-00001-of-00014.safetensors",
291
+ "model.layers.3.self_attn.o_proj.weight": "model-00001-of-00014.safetensors",
292
+ "model.layers.3.self_attn.q_proj.bias": "model-00001-of-00014.safetensors",
293
+ "model.layers.3.self_attn.q_proj.weight": "model-00001-of-00014.safetensors",
294
+ "model.layers.3.self_attn.v_proj.bias": "model-00001-of-00014.safetensors",
295
+ "model.layers.3.self_attn.v_proj.weight": "model-00001-of-00014.safetensors",
296
+ "model.layers.30.input_layernorm.weight": "model-00007-of-00014.safetensors",
297
+ "model.layers.30.mlp.down_proj.weight": "model-00007-of-00014.safetensors",
298
+ "model.layers.30.mlp.gate_proj.weight": "model-00007-of-00014.safetensors",
299
+ "model.layers.30.mlp.up_proj.weight": "model-00007-of-00014.safetensors",
300
+ "model.layers.30.post_attention_layernorm.weight": "model-00007-of-00014.safetensors",
301
+ "model.layers.30.self_attn.k_proj.bias": "model-00007-of-00014.safetensors",
302
+ "model.layers.30.self_attn.k_proj.weight": "model-00007-of-00014.safetensors",
303
+ "model.layers.30.self_attn.o_proj.weight": "model-00007-of-00014.safetensors",
304
+ "model.layers.30.self_attn.q_proj.bias": "model-00007-of-00014.safetensors",
305
+ "model.layers.30.self_attn.q_proj.weight": "model-00007-of-00014.safetensors",
306
+ "model.layers.30.self_attn.v_proj.bias": "model-00007-of-00014.safetensors",
307
+ "model.layers.30.self_attn.v_proj.weight": "model-00007-of-00014.safetensors",
308
+ "model.layers.31.input_layernorm.weight": "model-00007-of-00014.safetensors",
309
+ "model.layers.31.mlp.down_proj.weight": "model-00007-of-00014.safetensors",
310
+ "model.layers.31.mlp.gate_proj.weight": "model-00007-of-00014.safetensors",
311
+ "model.layers.31.mlp.up_proj.weight": "model-00007-of-00014.safetensors",
312
+ "model.layers.31.post_attention_layernorm.weight": "model-00007-of-00014.safetensors",
313
+ "model.layers.31.self_attn.k_proj.bias": "model-00007-of-00014.safetensors",
314
+ "model.layers.31.self_attn.k_proj.weight": "model-00007-of-00014.safetensors",
315
+ "model.layers.31.self_attn.o_proj.weight": "model-00007-of-00014.safetensors",
316
+ "model.layers.31.self_attn.q_proj.bias": "model-00007-of-00014.safetensors",
317
+ "model.layers.31.self_attn.q_proj.weight": "model-00007-of-00014.safetensors",
318
+ "model.layers.31.self_attn.v_proj.bias": "model-00007-of-00014.safetensors",
319
+ "model.layers.31.self_attn.v_proj.weight": "model-00007-of-00014.safetensors",
320
+ "model.layers.32.input_layernorm.weight": "model-00007-of-00014.safetensors",
321
+ "model.layers.32.mlp.down_proj.weight": "model-00007-of-00014.safetensors",
322
+ "model.layers.32.mlp.gate_proj.weight": "model-00007-of-00014.safetensors",
323
+ "model.layers.32.mlp.up_proj.weight": "model-00007-of-00014.safetensors",
324
+ "model.layers.32.post_attention_layernorm.weight": "model-00007-of-00014.safetensors",
325
+ "model.layers.32.self_attn.k_proj.bias": "model-00007-of-00014.safetensors",
326
+ "model.layers.32.self_attn.k_proj.weight": "model-00007-of-00014.safetensors",
327
+ "model.layers.32.self_attn.o_proj.weight": "model-00007-of-00014.safetensors",
328
+ "model.layers.32.self_attn.q_proj.bias": "model-00007-of-00014.safetensors",
329
+ "model.layers.32.self_attn.q_proj.weight": "model-00007-of-00014.safetensors",
330
+ "model.layers.32.self_attn.v_proj.bias": "model-00007-of-00014.safetensors",
331
+ "model.layers.32.self_attn.v_proj.weight": "model-00007-of-00014.safetensors",
332
+ "model.layers.33.input_layernorm.weight": "model-00008-of-00014.safetensors",
333
+ "model.layers.33.mlp.down_proj.weight": "model-00008-of-00014.safetensors",
334
+ "model.layers.33.mlp.gate_proj.weight": "model-00007-of-00014.safetensors",
335
+ "model.layers.33.mlp.up_proj.weight": "model-00008-of-00014.safetensors",
336
+ "model.layers.33.post_attention_layernorm.weight": "model-00008-of-00014.safetensors",
337
+ "model.layers.33.self_attn.k_proj.bias": "model-00007-of-00014.safetensors",
338
+ "model.layers.33.self_attn.k_proj.weight": "model-00007-of-00014.safetensors",
339
+ "model.layers.33.self_attn.o_proj.weight": "model-00007-of-00014.safetensors",
340
+ "model.layers.33.self_attn.q_proj.bias": "model-00007-of-00014.safetensors",
341
+ "model.layers.33.self_attn.q_proj.weight": "model-00007-of-00014.safetensors",
342
+ "model.layers.33.self_attn.v_proj.bias": "model-00007-of-00014.safetensors",
343
+ "model.layers.33.self_attn.v_proj.weight": "model-00007-of-00014.safetensors",
344
+ "model.layers.34.input_layernorm.weight": "model-00008-of-00014.safetensors",
345
+ "model.layers.34.mlp.down_proj.weight": "model-00008-of-00014.safetensors",
346
+ "model.layers.34.mlp.gate_proj.weight": "model-00008-of-00014.safetensors",
347
+ "model.layers.34.mlp.up_proj.weight": "model-00008-of-00014.safetensors",
348
+ "model.layers.34.post_attention_layernorm.weight": "model-00008-of-00014.safetensors",
349
+ "model.layers.34.self_attn.k_proj.bias": "model-00008-of-00014.safetensors",
350
+ "model.layers.34.self_attn.k_proj.weight": "model-00008-of-00014.safetensors",
351
+ "model.layers.34.self_attn.o_proj.weight": "model-00008-of-00014.safetensors",
352
+ "model.layers.34.self_attn.q_proj.bias": "model-00008-of-00014.safetensors",
353
+ "model.layers.34.self_attn.q_proj.weight": "model-00008-of-00014.safetensors",
354
+ "model.layers.34.self_attn.v_proj.bias": "model-00008-of-00014.safetensors",
355
+ "model.layers.34.self_attn.v_proj.weight": "model-00008-of-00014.safetensors",
356
+ "model.layers.35.input_layernorm.weight": "model-00008-of-00014.safetensors",
357
+ "model.layers.35.mlp.down_proj.weight": "model-00008-of-00014.safetensors",
358
+ "model.layers.35.mlp.gate_proj.weight": "model-00008-of-00014.safetensors",
359
+ "model.layers.35.mlp.up_proj.weight": "model-00008-of-00014.safetensors",
360
+ "model.layers.35.post_attention_layernorm.weight": "model-00008-of-00014.safetensors",
361
+ "model.layers.35.self_attn.k_proj.bias": "model-00008-of-00014.safetensors",
362
+ "model.layers.35.self_attn.k_proj.weight": "model-00008-of-00014.safetensors",
363
+ "model.layers.35.self_attn.o_proj.weight": "model-00008-of-00014.safetensors",
364
+ "model.layers.35.self_attn.q_proj.bias": "model-00008-of-00014.safetensors",
365
+ "model.layers.35.self_attn.q_proj.weight": "model-00008-of-00014.safetensors",
366
+ "model.layers.35.self_attn.v_proj.bias": "model-00008-of-00014.safetensors",
367
+ "model.layers.35.self_attn.v_proj.weight": "model-00008-of-00014.safetensors",
368
+ "model.layers.36.input_layernorm.weight": "model-00008-of-00014.safetensors",
369
+ "model.layers.36.mlp.down_proj.weight": "model-00008-of-00014.safetensors",
370
+ "model.layers.36.mlp.gate_proj.weight": "model-00008-of-00014.safetensors",
371
+ "model.layers.36.mlp.up_proj.weight": "model-00008-of-00014.safetensors",
372
+ "model.layers.36.post_attention_layernorm.weight": "model-00008-of-00014.safetensors",
373
+ "model.layers.36.self_attn.k_proj.bias": "model-00008-of-00014.safetensors",
374
+ "model.layers.36.self_attn.k_proj.weight": "model-00008-of-00014.safetensors",
375
+ "model.layers.36.self_attn.o_proj.weight": "model-00008-of-00014.safetensors",
376
+ "model.layers.36.self_attn.q_proj.bias": "model-00008-of-00014.safetensors",
377
+ "model.layers.36.self_attn.q_proj.weight": "model-00008-of-00014.safetensors",
378
+ "model.layers.36.self_attn.v_proj.bias": "model-00008-of-00014.safetensors",
379
+ "model.layers.36.self_attn.v_proj.weight": "model-00008-of-00014.safetensors",
380
+ "model.layers.37.input_layernorm.weight": "model-00008-of-00014.safetensors",
381
+ "model.layers.37.mlp.down_proj.weight": "model-00008-of-00014.safetensors",
382
+ "model.layers.37.mlp.gate_proj.weight": "model-00008-of-00014.safetensors",
383
+ "model.layers.37.mlp.up_proj.weight": "model-00008-of-00014.safetensors",
384
+ "model.layers.37.post_attention_layernorm.weight": "model-00008-of-00014.safetensors",
385
+ "model.layers.37.self_attn.k_proj.bias": "model-00008-of-00014.safetensors",
386
+ "model.layers.37.self_attn.k_proj.weight": "model-00008-of-00014.safetensors",
387
+ "model.layers.37.self_attn.o_proj.weight": "model-00008-of-00014.safetensors",
388
+ "model.layers.37.self_attn.q_proj.bias": "model-00008-of-00014.safetensors",
389
+ "model.layers.37.self_attn.q_proj.weight": "model-00008-of-00014.safetensors",
390
+ "model.layers.37.self_attn.v_proj.bias": "model-00008-of-00014.safetensors",
391
+ "model.layers.37.self_attn.v_proj.weight": "model-00008-of-00014.safetensors",
392
+ "model.layers.38.input_layernorm.weight": "model-00009-of-00014.safetensors",
393
+ "model.layers.38.mlp.down_proj.weight": "model-00009-of-00014.safetensors",
394
+ "model.layers.38.mlp.gate_proj.weight": "model-00008-of-00014.safetensors",
395
+ "model.layers.38.mlp.up_proj.weight": "model-00009-of-00014.safetensors",
396
+ "model.layers.38.post_attention_layernorm.weight": "model-00009-of-00014.safetensors",
397
+ "model.layers.38.self_attn.k_proj.bias": "model-00008-of-00014.safetensors",
398
+ "model.layers.38.self_attn.k_proj.weight": "model-00008-of-00014.safetensors",
399
+ "model.layers.38.self_attn.o_proj.weight": "model-00008-of-00014.safetensors",
400
+ "model.layers.38.self_attn.q_proj.bias": "model-00008-of-00014.safetensors",
401
+ "model.layers.38.self_attn.q_proj.weight": "model-00008-of-00014.safetensors",
402
+ "model.layers.38.self_attn.v_proj.bias": "model-00008-of-00014.safetensors",
403
+ "model.layers.38.self_attn.v_proj.weight": "model-00008-of-00014.safetensors",
404
+ "model.layers.39.input_layernorm.weight": "model-00009-of-00014.safetensors",
405
+ "model.layers.39.mlp.down_proj.weight": "model-00009-of-00014.safetensors",
406
+ "model.layers.39.mlp.gate_proj.weight": "model-00009-of-00014.safetensors",
407
+ "model.layers.39.mlp.up_proj.weight": "model-00009-of-00014.safetensors",
408
+ "model.layers.39.post_attention_layernorm.weight": "model-00009-of-00014.safetensors",
409
+ "model.layers.39.self_attn.k_proj.bias": "model-00009-of-00014.safetensors",
410
+ "model.layers.39.self_attn.k_proj.weight": "model-00009-of-00014.safetensors",
411
+ "model.layers.39.self_attn.o_proj.weight": "model-00009-of-00014.safetensors",
412
+ "model.layers.39.self_attn.q_proj.bias": "model-00009-of-00014.safetensors",
413
+ "model.layers.39.self_attn.q_proj.weight": "model-00009-of-00014.safetensors",
414
+ "model.layers.39.self_attn.v_proj.bias": "model-00009-of-00014.safetensors",
415
+ "model.layers.39.self_attn.v_proj.weight": "model-00009-of-00014.safetensors",
416
+ "model.layers.4.input_layernorm.weight": "model-00002-of-00014.safetensors",
417
+ "model.layers.4.mlp.down_proj.weight": "model-00002-of-00014.safetensors",
418
+ "model.layers.4.mlp.gate_proj.weight": "model-00002-of-00014.safetensors",
419
+ "model.layers.4.mlp.up_proj.weight": "model-00002-of-00014.safetensors",
420
+ "model.layers.4.post_attention_layernorm.weight": "model-00002-of-00014.safetensors",
421
+ "model.layers.4.self_attn.k_proj.bias": "model-00002-of-00014.safetensors",
422
+ "model.layers.4.self_attn.k_proj.weight": "model-00002-of-00014.safetensors",
423
+ "model.layers.4.self_attn.o_proj.weight": "model-00002-of-00014.safetensors",
424
+ "model.layers.4.self_attn.q_proj.bias": "model-00002-of-00014.safetensors",
425
+ "model.layers.4.self_attn.q_proj.weight": "model-00002-of-00014.safetensors",
426
+ "model.layers.4.self_attn.v_proj.bias": "model-00002-of-00014.safetensors",
427
+ "model.layers.4.self_attn.v_proj.weight": "model-00002-of-00014.safetensors",
428
+ "model.layers.40.input_layernorm.weight": "model-00009-of-00014.safetensors",
429
+ "model.layers.40.mlp.down_proj.weight": "model-00009-of-00014.safetensors",
430
+ "model.layers.40.mlp.gate_proj.weight": "model-00009-of-00014.safetensors",
431
+ "model.layers.40.mlp.up_proj.weight": "model-00009-of-00014.safetensors",
432
+ "model.layers.40.post_attention_layernorm.weight": "model-00009-of-00014.safetensors",
433
+ "model.layers.40.self_attn.k_proj.bias": "model-00009-of-00014.safetensors",
434
+ "model.layers.40.self_attn.k_proj.weight": "model-00009-of-00014.safetensors",
435
+ "model.layers.40.self_attn.o_proj.weight": "model-00009-of-00014.safetensors",
436
+ "model.layers.40.self_attn.q_proj.bias": "model-00009-of-00014.safetensors",
437
+ "model.layers.40.self_attn.q_proj.weight": "model-00009-of-00014.safetensors",
438
+ "model.layers.40.self_attn.v_proj.bias": "model-00009-of-00014.safetensors",
439
+ "model.layers.40.self_attn.v_proj.weight": "model-00009-of-00014.safetensors",
440
+ "model.layers.41.input_layernorm.weight": "model-00009-of-00014.safetensors",
441
+ "model.layers.41.mlp.down_proj.weight": "model-00009-of-00014.safetensors",
442
+ "model.layers.41.mlp.gate_proj.weight": "model-00009-of-00014.safetensors",
443
+ "model.layers.41.mlp.up_proj.weight": "model-00009-of-00014.safetensors",
444
+ "model.layers.41.post_attention_layernorm.weight": "model-00009-of-00014.safetensors",
445
+ "model.layers.41.self_attn.k_proj.bias": "model-00009-of-00014.safetensors",
446
+ "model.layers.41.self_attn.k_proj.weight": "model-00009-of-00014.safetensors",
447
+ "model.layers.41.self_attn.o_proj.weight": "model-00009-of-00014.safetensors",
448
+ "model.layers.41.self_attn.q_proj.bias": "model-00009-of-00014.safetensors",
449
+ "model.layers.41.self_attn.q_proj.weight": "model-00009-of-00014.safetensors",
450
+ "model.layers.41.self_attn.v_proj.bias": "model-00009-of-00014.safetensors",
451
+ "model.layers.41.self_attn.v_proj.weight": "model-00009-of-00014.safetensors",
452
+ "model.layers.42.input_layernorm.weight": "model-00009-of-00014.safetensors",
453
+ "model.layers.42.mlp.down_proj.weight": "model-00009-of-00014.safetensors",
454
+ "model.layers.42.mlp.gate_proj.weight": "model-00009-of-00014.safetensors",
455
+ "model.layers.42.mlp.up_proj.weight": "model-00009-of-00014.safetensors",
456
+ "model.layers.42.post_attention_layernorm.weight": "model-00009-of-00014.safetensors",
457
+ "model.layers.42.self_attn.k_proj.bias": "model-00009-of-00014.safetensors",
458
+ "model.layers.42.self_attn.k_proj.weight": "model-00009-of-00014.safetensors",
459
+ "model.layers.42.self_attn.o_proj.weight": "model-00009-of-00014.safetensors",
460
+ "model.layers.42.self_attn.q_proj.bias": "model-00009-of-00014.safetensors",
461
+ "model.layers.42.self_attn.q_proj.weight": "model-00009-of-00014.safetensors",
462
+ "model.layers.42.self_attn.v_proj.bias": "model-00009-of-00014.safetensors",
463
+ "model.layers.42.self_attn.v_proj.weight": "model-00009-of-00014.safetensors",
464
+ "model.layers.43.input_layernorm.weight": "model-00010-of-00014.safetensors",
465
+ "model.layers.43.mlp.down_proj.weight": "model-00010-of-00014.safetensors",
466
+ "model.layers.43.mlp.gate_proj.weight": "model-00009-of-00014.safetensors",
467
+ "model.layers.43.mlp.up_proj.weight": "model-00010-of-00014.safetensors",
468
+ "model.layers.43.post_attention_layernorm.weight": "model-00010-of-00014.safetensors",
469
+ "model.layers.43.self_attn.k_proj.bias": "model-00009-of-00014.safetensors",
470
+ "model.layers.43.self_attn.k_proj.weight": "model-00009-of-00014.safetensors",
471
+ "model.layers.43.self_attn.o_proj.weight": "model-00009-of-00014.safetensors",
472
+ "model.layers.43.self_attn.q_proj.bias": "model-00009-of-00014.safetensors",
473
+ "model.layers.43.self_attn.q_proj.weight": "model-00009-of-00014.safetensors",
474
+ "model.layers.43.self_attn.v_proj.bias": "model-00009-of-00014.safetensors",
475
+ "model.layers.43.self_attn.v_proj.weight": "model-00009-of-00014.safetensors",
476
+ "model.layers.44.input_layernorm.weight": "model-00010-of-00014.safetensors",
477
+ "model.layers.44.mlp.down_proj.weight": "model-00010-of-00014.safetensors",
478
+ "model.layers.44.mlp.gate_proj.weight": "model-00010-of-00014.safetensors",
479
+ "model.layers.44.mlp.up_proj.weight": "model-00010-of-00014.safetensors",
480
+ "model.layers.44.post_attention_layernorm.weight": "model-00010-of-00014.safetensors",
481
+ "model.layers.44.self_attn.k_proj.bias": "model-00010-of-00014.safetensors",
482
+ "model.layers.44.self_attn.k_proj.weight": "model-00010-of-00014.safetensors",
483
+ "model.layers.44.self_attn.o_proj.weight": "model-00010-of-00014.safetensors",
484
+ "model.layers.44.self_attn.q_proj.bias": "model-00010-of-00014.safetensors",
485
+ "model.layers.44.self_attn.q_proj.weight": "model-00010-of-00014.safetensors",
486
+ "model.layers.44.self_attn.v_proj.bias": "model-00010-of-00014.safetensors",
487
+ "model.layers.44.self_attn.v_proj.weight": "model-00010-of-00014.safetensors",
488
+ "model.layers.45.input_layernorm.weight": "model-00010-of-00014.safetensors",
489
+ "model.layers.45.mlp.down_proj.weight": "model-00010-of-00014.safetensors",
490
+ "model.layers.45.mlp.gate_proj.weight": "model-00010-of-00014.safetensors",
491
+ "model.layers.45.mlp.up_proj.weight": "model-00010-of-00014.safetensors",
492
+ "model.layers.45.post_attention_layernorm.weight": "model-00010-of-00014.safetensors",
493
+ "model.layers.45.self_attn.k_proj.bias": "model-00010-of-00014.safetensors",
494
+ "model.layers.45.self_attn.k_proj.weight": "model-00010-of-00014.safetensors",
495
+ "model.layers.45.self_attn.o_proj.weight": "model-00010-of-00014.safetensors",
496
+ "model.layers.45.self_attn.q_proj.bias": "model-00010-of-00014.safetensors",
497
+ "model.layers.45.self_attn.q_proj.weight": "model-00010-of-00014.safetensors",
498
+ "model.layers.45.self_attn.v_proj.bias": "model-00010-of-00014.safetensors",
499
+ "model.layers.45.self_attn.v_proj.weight": "model-00010-of-00014.safetensors",
500
+ "model.layers.46.input_layernorm.weight": "model-00010-of-00014.safetensors",
501
+ "model.layers.46.mlp.down_proj.weight": "model-00010-of-00014.safetensors",
502
+ "model.layers.46.mlp.gate_proj.weight": "model-00010-of-00014.safetensors",
503
+ "model.layers.46.mlp.up_proj.weight": "model-00010-of-00014.safetensors",
504
+ "model.layers.46.post_attention_layernorm.weight": "model-00010-of-00014.safetensors",
505
+ "model.layers.46.self_attn.k_proj.bias": "model-00010-of-00014.safetensors",
506
+ "model.layers.46.self_attn.k_proj.weight": "model-00010-of-00014.safetensors",
507
+ "model.layers.46.self_attn.o_proj.weight": "model-00010-of-00014.safetensors",
508
+ "model.layers.46.self_attn.q_proj.bias": "model-00010-of-00014.safetensors",
509
+ "model.layers.46.self_attn.q_proj.weight": "model-00010-of-00014.safetensors",
510
+ "model.layers.46.self_attn.v_proj.bias": "model-00010-of-00014.safetensors",
511
+ "model.layers.46.self_attn.v_proj.weight": "model-00010-of-00014.safetensors",
512
+ "model.layers.47.input_layernorm.weight": "model-00010-of-00014.safetensors",
513
+ "model.layers.47.mlp.down_proj.weight": "model-00010-of-00014.safetensors",
514
+ "model.layers.47.mlp.gate_proj.weight": "model-00010-of-00014.safetensors",
515
+ "model.layers.47.mlp.up_proj.weight": "model-00010-of-00014.safetensors",
516
+ "model.layers.47.post_attention_layernorm.weight": "model-00010-of-00014.safetensors",
517
+ "model.layers.47.self_attn.k_proj.bias": "model-00010-of-00014.safetensors",
518
+ "model.layers.47.self_attn.k_proj.weight": "model-00010-of-00014.safetensors",
519
+ "model.layers.47.self_attn.o_proj.weight": "model-00010-of-00014.safetensors",
520
+ "model.layers.47.self_attn.q_proj.bias": "model-00010-of-00014.safetensors",
521
+ "model.layers.47.self_attn.q_proj.weight": "model-00010-of-00014.safetensors",
522
+ "model.layers.47.self_attn.v_proj.bias": "model-00010-of-00014.safetensors",
523
+ "model.layers.47.self_attn.v_proj.weight": "model-00010-of-00014.safetensors",
524
+ "model.layers.48.input_layernorm.weight": "model-00011-of-00014.safetensors",
525
+ "model.layers.48.mlp.down_proj.weight": "model-00011-of-00014.safetensors",
526
+ "model.layers.48.mlp.gate_proj.weight": "model-00010-of-00014.safetensors",
527
+ "model.layers.48.mlp.up_proj.weight": "model-00011-of-00014.safetensors",
528
+ "model.layers.48.post_attention_layernorm.weight": "model-00011-of-00014.safetensors",
529
+ "model.layers.48.self_attn.k_proj.bias": "model-00010-of-00014.safetensors",
530
+ "model.layers.48.self_attn.k_proj.weight": "model-00010-of-00014.safetensors",
531
+ "model.layers.48.self_attn.o_proj.weight": "model-00010-of-00014.safetensors",
532
+ "model.layers.48.self_attn.q_proj.bias": "model-00010-of-00014.safetensors",
533
+ "model.layers.48.self_attn.q_proj.weight": "model-00010-of-00014.safetensors",
534
+ "model.layers.48.self_attn.v_proj.bias": "model-00010-of-00014.safetensors",
535
+ "model.layers.48.self_attn.v_proj.weight": "model-00010-of-00014.safetensors",
536
+ "model.layers.49.input_layernorm.weight": "model-00011-of-00014.safetensors",
537
+ "model.layers.49.mlp.down_proj.weight": "model-00011-of-00014.safetensors",
538
+ "model.layers.49.mlp.gate_proj.weight": "model-00011-of-00014.safetensors",
539
+ "model.layers.49.mlp.up_proj.weight": "model-00011-of-00014.safetensors",
540
+ "model.layers.49.post_attention_layernorm.weight": "model-00011-of-00014.safetensors",
541
+ "model.layers.49.self_attn.k_proj.bias": "model-00011-of-00014.safetensors",
542
+ "model.layers.49.self_attn.k_proj.weight": "model-00011-of-00014.safetensors",
543
+ "model.layers.49.self_attn.o_proj.weight": "model-00011-of-00014.safetensors",
544
+ "model.layers.49.self_attn.q_proj.bias": "model-00011-of-00014.safetensors",
545
+ "model.layers.49.self_attn.q_proj.weight": "model-00011-of-00014.safetensors",
546
+ "model.layers.49.self_attn.v_proj.bias": "model-00011-of-00014.safetensors",
547
+ "model.layers.49.self_attn.v_proj.weight": "model-00011-of-00014.safetensors",
548
+ "model.layers.5.input_layernorm.weight": "model-00002-of-00014.safetensors",
549
+ "model.layers.5.mlp.down_proj.weight": "model-00002-of-00014.safetensors",
550
+ "model.layers.5.mlp.gate_proj.weight": "model-00002-of-00014.safetensors",
551
+ "model.layers.5.mlp.up_proj.weight": "model-00002-of-00014.safetensors",
552
+ "model.layers.5.post_attention_layernorm.weight": "model-00002-of-00014.safetensors",
553
+ "model.layers.5.self_attn.k_proj.bias": "model-00002-of-00014.safetensors",
554
+ "model.layers.5.self_attn.k_proj.weight": "model-00002-of-00014.safetensors",
555
+ "model.layers.5.self_attn.o_proj.weight": "model-00002-of-00014.safetensors",
556
+ "model.layers.5.self_attn.q_proj.bias": "model-00002-of-00014.safetensors",
557
+ "model.layers.5.self_attn.q_proj.weight": "model-00002-of-00014.safetensors",
558
+ "model.layers.5.self_attn.v_proj.bias": "model-00002-of-00014.safetensors",
559
+ "model.layers.5.self_attn.v_proj.weight": "model-00002-of-00014.safetensors",
560
+ "model.layers.50.input_layernorm.weight": "model-00011-of-00014.safetensors",
561
+ "model.layers.50.mlp.down_proj.weight": "model-00011-of-00014.safetensors",
562
+ "model.layers.50.mlp.gate_proj.weight": "model-00011-of-00014.safetensors",
563
+ "model.layers.50.mlp.up_proj.weight": "model-00011-of-00014.safetensors",
564
+ "model.layers.50.post_attention_layernorm.weight": "model-00011-of-00014.safetensors",
565
+ "model.layers.50.self_attn.k_proj.bias": "model-00011-of-00014.safetensors",
566
+ "model.layers.50.self_attn.k_proj.weight": "model-00011-of-00014.safetensors",
567
+ "model.layers.50.self_attn.o_proj.weight": "model-00011-of-00014.safetensors",
568
+ "model.layers.50.self_attn.q_proj.bias": "model-00011-of-00014.safetensors",
569
+ "model.layers.50.self_attn.q_proj.weight": "model-00011-of-00014.safetensors",
570
+ "model.layers.50.self_attn.v_proj.bias": "model-00011-of-00014.safetensors",
571
+ "model.layers.50.self_attn.v_proj.weight": "model-00011-of-00014.safetensors",
572
+ "model.layers.51.input_layernorm.weight": "model-00011-of-00014.safetensors",
573
+ "model.layers.51.mlp.down_proj.weight": "model-00011-of-00014.safetensors",
574
+ "model.layers.51.mlp.gate_proj.weight": "model-00011-of-00014.safetensors",
575
+ "model.layers.51.mlp.up_proj.weight": "model-00011-of-00014.safetensors",
576
+ "model.layers.51.post_attention_layernorm.weight": "model-00011-of-00014.safetensors",
577
+ "model.layers.51.self_attn.k_proj.bias": "model-00011-of-00014.safetensors",
578
+ "model.layers.51.self_attn.k_proj.weight": "model-00011-of-00014.safetensors",
579
+ "model.layers.51.self_attn.o_proj.weight": "model-00011-of-00014.safetensors",
580
+ "model.layers.51.self_attn.q_proj.bias": "model-00011-of-00014.safetensors",
581
+ "model.layers.51.self_attn.q_proj.weight": "model-00011-of-00014.safetensors",
582
+ "model.layers.51.self_attn.v_proj.bias": "model-00011-of-00014.safetensors",
583
+ "model.layers.51.self_attn.v_proj.weight": "model-00011-of-00014.safetensors",
584
+ "model.layers.52.input_layernorm.weight": "model-00011-of-00014.safetensors",
585
+ "model.layers.52.mlp.down_proj.weight": "model-00011-of-00014.safetensors",
586
+ "model.layers.52.mlp.gate_proj.weight": "model-00011-of-00014.safetensors",
587
+ "model.layers.52.mlp.up_proj.weight": "model-00011-of-00014.safetensors",
588
+ "model.layers.52.post_attention_layernorm.weight": "model-00011-of-00014.safetensors",
589
+ "model.layers.52.self_attn.k_proj.bias": "model-00011-of-00014.safetensors",
590
+ "model.layers.52.self_attn.k_proj.weight": "model-00011-of-00014.safetensors",
591
+ "model.layers.52.self_attn.o_proj.weight": "model-00011-of-00014.safetensors",
592
+ "model.layers.52.self_attn.q_proj.bias": "model-00011-of-00014.safetensors",
593
+ "model.layers.52.self_attn.q_proj.weight": "model-00011-of-00014.safetensors",
594
+ "model.layers.52.self_attn.v_proj.bias": "model-00011-of-00014.safetensors",
595
+ "model.layers.52.self_attn.v_proj.weight": "model-00011-of-00014.safetensors",
596
+ "model.layers.53.input_layernorm.weight": "model-00012-of-00014.safetensors",
597
+ "model.layers.53.mlp.down_proj.weight": "model-00012-of-00014.safetensors",
598
+ "model.layers.53.mlp.gate_proj.weight": "model-00011-of-00014.safetensors",
599
+ "model.layers.53.mlp.up_proj.weight": "model-00012-of-00014.safetensors",
600
+ "model.layers.53.post_attention_layernorm.weight": "model-00012-of-00014.safetensors",
601
+ "model.layers.53.self_attn.k_proj.bias": "model-00011-of-00014.safetensors",
602
+ "model.layers.53.self_attn.k_proj.weight": "model-00011-of-00014.safetensors",
603
+ "model.layers.53.self_attn.o_proj.weight": "model-00011-of-00014.safetensors",
604
+ "model.layers.53.self_attn.q_proj.bias": "model-00011-of-00014.safetensors",
605
+ "model.layers.53.self_attn.q_proj.weight": "model-00011-of-00014.safetensors",
606
+ "model.layers.53.self_attn.v_proj.bias": "model-00011-of-00014.safetensors",
607
+ "model.layers.53.self_attn.v_proj.weight": "model-00011-of-00014.safetensors",
608
+ "model.layers.54.input_layernorm.weight": "model-00012-of-00014.safetensors",
609
+ "model.layers.54.mlp.down_proj.weight": "model-00012-of-00014.safetensors",
610
+ "model.layers.54.mlp.gate_proj.weight": "model-00012-of-00014.safetensors",
611
+ "model.layers.54.mlp.up_proj.weight": "model-00012-of-00014.safetensors",
612
+ "model.layers.54.post_attention_layernorm.weight": "model-00012-of-00014.safetensors",
613
+ "model.layers.54.self_attn.k_proj.bias": "model-00012-of-00014.safetensors",
614
+ "model.layers.54.self_attn.k_proj.weight": "model-00012-of-00014.safetensors",
615
+ "model.layers.54.self_attn.o_proj.weight": "model-00012-of-00014.safetensors",
616
+ "model.layers.54.self_attn.q_proj.bias": "model-00012-of-00014.safetensors",
617
+ "model.layers.54.self_attn.q_proj.weight": "model-00012-of-00014.safetensors",
618
+ "model.layers.54.self_attn.v_proj.bias": "model-00012-of-00014.safetensors",
619
+ "model.layers.54.self_attn.v_proj.weight": "model-00012-of-00014.safetensors",
620
+ "model.layers.55.input_layernorm.weight": "model-00012-of-00014.safetensors",
621
+ "model.layers.55.mlp.down_proj.weight": "model-00012-of-00014.safetensors",
622
+ "model.layers.55.mlp.gate_proj.weight": "model-00012-of-00014.safetensors",
623
+ "model.layers.55.mlp.up_proj.weight": "model-00012-of-00014.safetensors",
624
+ "model.layers.55.post_attention_layernorm.weight": "model-00012-of-00014.safetensors",
625
+ "model.layers.55.self_attn.k_proj.bias": "model-00012-of-00014.safetensors",
626
+ "model.layers.55.self_attn.k_proj.weight": "model-00012-of-00014.safetensors",
627
+ "model.layers.55.self_attn.o_proj.weight": "model-00012-of-00014.safetensors",
628
+ "model.layers.55.self_attn.q_proj.bias": "model-00012-of-00014.safetensors",
629
+ "model.layers.55.self_attn.q_proj.weight": "model-00012-of-00014.safetensors",
630
+ "model.layers.55.self_attn.v_proj.bias": "model-00012-of-00014.safetensors",
631
+ "model.layers.55.self_attn.v_proj.weight": "model-00012-of-00014.safetensors",
632
+ "model.layers.56.input_layernorm.weight": "model-00012-of-00014.safetensors",
633
+ "model.layers.56.mlp.down_proj.weight": "model-00012-of-00014.safetensors",
634
+ "model.layers.56.mlp.gate_proj.weight": "model-00012-of-00014.safetensors",
635
+ "model.layers.56.mlp.up_proj.weight": "model-00012-of-00014.safetensors",
636
+ "model.layers.56.post_attention_layernorm.weight": "model-00012-of-00014.safetensors",
637
+ "model.layers.56.self_attn.k_proj.bias": "model-00012-of-00014.safetensors",
638
+ "model.layers.56.self_attn.k_proj.weight": "model-00012-of-00014.safetensors",
639
+ "model.layers.56.self_attn.o_proj.weight": "model-00012-of-00014.safetensors",
640
+ "model.layers.56.self_attn.q_proj.bias": "model-00012-of-00014.safetensors",
641
+ "model.layers.56.self_attn.q_proj.weight": "model-00012-of-00014.safetensors",
642
+ "model.layers.56.self_attn.v_proj.bias": "model-00012-of-00014.safetensors",
643
+ "model.layers.56.self_attn.v_proj.weight": "model-00012-of-00014.safetensors",
644
+ "model.layers.57.input_layernorm.weight": "model-00012-of-00014.safetensors",
645
+ "model.layers.57.mlp.down_proj.weight": "model-00012-of-00014.safetensors",
646
+ "model.layers.57.mlp.gate_proj.weight": "model-00012-of-00014.safetensors",
647
+ "model.layers.57.mlp.up_proj.weight": "model-00012-of-00014.safetensors",
648
+ "model.layers.57.post_attention_layernorm.weight": "model-00012-of-00014.safetensors",
649
+ "model.layers.57.self_attn.k_proj.bias": "model-00012-of-00014.safetensors",
650
+ "model.layers.57.self_attn.k_proj.weight": "model-00012-of-00014.safetensors",
651
+ "model.layers.57.self_attn.o_proj.weight": "model-00012-of-00014.safetensors",
652
+ "model.layers.57.self_attn.q_proj.bias": "model-00012-of-00014.safetensors",
653
+ "model.layers.57.self_attn.q_proj.weight": "model-00012-of-00014.safetensors",
654
+ "model.layers.57.self_attn.v_proj.bias": "model-00012-of-00014.safetensors",
655
+ "model.layers.57.self_attn.v_proj.weight": "model-00012-of-00014.safetensors",
656
+ "model.layers.58.input_layernorm.weight": "model-00013-of-00014.safetensors",
657
+ "model.layers.58.mlp.down_proj.weight": "model-00013-of-00014.safetensors",
658
+ "model.layers.58.mlp.gate_proj.weight": "model-00012-of-00014.safetensors",
659
+ "model.layers.58.mlp.up_proj.weight": "model-00013-of-00014.safetensors",
660
+ "model.layers.58.post_attention_layernorm.weight": "model-00013-of-00014.safetensors",
661
+ "model.layers.58.self_attn.k_proj.bias": "model-00012-of-00014.safetensors",
662
+ "model.layers.58.self_attn.k_proj.weight": "model-00012-of-00014.safetensors",
663
+ "model.layers.58.self_attn.o_proj.weight": "model-00012-of-00014.safetensors",
664
+ "model.layers.58.self_attn.q_proj.bias": "model-00012-of-00014.safetensors",
665
+ "model.layers.58.self_attn.q_proj.weight": "model-00012-of-00014.safetensors",
666
+ "model.layers.58.self_attn.v_proj.bias": "model-00012-of-00014.safetensors",
667
+ "model.layers.58.self_attn.v_proj.weight": "model-00012-of-00014.safetensors",
668
+ "model.layers.59.input_layernorm.weight": "model-00013-of-00014.safetensors",
669
+ "model.layers.59.mlp.down_proj.weight": "model-00013-of-00014.safetensors",
670
+ "model.layers.59.mlp.gate_proj.weight": "model-00013-of-00014.safetensors",
671
+ "model.layers.59.mlp.up_proj.weight": "model-00013-of-00014.safetensors",
672
+ "model.layers.59.post_attention_layernorm.weight": "model-00013-of-00014.safetensors",
673
+ "model.layers.59.self_attn.k_proj.bias": "model-00013-of-00014.safetensors",
674
+ "model.layers.59.self_attn.k_proj.weight": "model-00013-of-00014.safetensors",
675
+ "model.layers.59.self_attn.o_proj.weight": "model-00013-of-00014.safetensors",
676
+ "model.layers.59.self_attn.q_proj.bias": "model-00013-of-00014.safetensors",
677
+ "model.layers.59.self_attn.q_proj.weight": "model-00013-of-00014.safetensors",
678
+ "model.layers.59.self_attn.v_proj.bias": "model-00013-of-00014.safetensors",
679
+ "model.layers.59.self_attn.v_proj.weight": "model-00013-of-00014.safetensors",
680
+ "model.layers.6.input_layernorm.weight": "model-00002-of-00014.safetensors",
681
+ "model.layers.6.mlp.down_proj.weight": "model-00002-of-00014.safetensors",
682
+ "model.layers.6.mlp.gate_proj.weight": "model-00002-of-00014.safetensors",
683
+ "model.layers.6.mlp.up_proj.weight": "model-00002-of-00014.safetensors",
684
+ "model.layers.6.post_attention_layernorm.weight": "model-00002-of-00014.safetensors",
685
+ "model.layers.6.self_attn.k_proj.bias": "model-00002-of-00014.safetensors",
686
+ "model.layers.6.self_attn.k_proj.weight": "model-00002-of-00014.safetensors",
687
+ "model.layers.6.self_attn.o_proj.weight": "model-00002-of-00014.safetensors",
688
+ "model.layers.6.self_attn.q_proj.bias": "model-00002-of-00014.safetensors",
689
+ "model.layers.6.self_attn.q_proj.weight": "model-00002-of-00014.safetensors",
690
+ "model.layers.6.self_attn.v_proj.bias": "model-00002-of-00014.safetensors",
691
+ "model.layers.6.self_attn.v_proj.weight": "model-00002-of-00014.safetensors",
692
+ "model.layers.60.input_layernorm.weight": "model-00013-of-00014.safetensors",
693
+ "model.layers.60.mlp.down_proj.weight": "model-00013-of-00014.safetensors",
694
+ "model.layers.60.mlp.gate_proj.weight": "model-00013-of-00014.safetensors",
695
+ "model.layers.60.mlp.up_proj.weight": "model-00013-of-00014.safetensors",
696
+ "model.layers.60.post_attention_layernorm.weight": "model-00013-of-00014.safetensors",
697
+ "model.layers.60.self_attn.k_proj.bias": "model-00013-of-00014.safetensors",
698
+ "model.layers.60.self_attn.k_proj.weight": "model-00013-of-00014.safetensors",
699
+ "model.layers.60.self_attn.o_proj.weight": "model-00013-of-00014.safetensors",
700
+ "model.layers.60.self_attn.q_proj.bias": "model-00013-of-00014.safetensors",
701
+ "model.layers.60.self_attn.q_proj.weight": "model-00013-of-00014.safetensors",
702
+ "model.layers.60.self_attn.v_proj.bias": "model-00013-of-00014.safetensors",
703
+ "model.layers.60.self_attn.v_proj.weight": "model-00013-of-00014.safetensors",
704
+ "model.layers.61.input_layernorm.weight": "model-00013-of-00014.safetensors",
705
+ "model.layers.61.mlp.down_proj.weight": "model-00013-of-00014.safetensors",
706
+ "model.layers.61.mlp.gate_proj.weight": "model-00013-of-00014.safetensors",
707
+ "model.layers.61.mlp.up_proj.weight": "model-00013-of-00014.safetensors",
708
+ "model.layers.61.post_attention_layernorm.weight": "model-00013-of-00014.safetensors",
709
+ "model.layers.61.self_attn.k_proj.bias": "model-00013-of-00014.safetensors",
710
+ "model.layers.61.self_attn.k_proj.weight": "model-00013-of-00014.safetensors",
711
+ "model.layers.61.self_attn.o_proj.weight": "model-00013-of-00014.safetensors",
712
+ "model.layers.61.self_attn.q_proj.bias": "model-00013-of-00014.safetensors",
713
+ "model.layers.61.self_attn.q_proj.weight": "model-00013-of-00014.safetensors",
714
+ "model.layers.61.self_attn.v_proj.bias": "model-00013-of-00014.safetensors",
715
+ "model.layers.61.self_attn.v_proj.weight": "model-00013-of-00014.safetensors",
716
+ "model.layers.62.input_layernorm.weight": "model-00013-of-00014.safetensors",
717
+ "model.layers.62.mlp.down_proj.weight": "model-00013-of-00014.safetensors",
718
+ "model.layers.62.mlp.gate_proj.weight": "model-00013-of-00014.safetensors",
719
+ "model.layers.62.mlp.up_proj.weight": "model-00013-of-00014.safetensors",
720
+ "model.layers.62.post_attention_layernorm.weight": "model-00013-of-00014.safetensors",
721
+ "model.layers.62.self_attn.k_proj.bias": "model-00013-of-00014.safetensors",
722
+ "model.layers.62.self_attn.k_proj.weight": "model-00013-of-00014.safetensors",
723
+ "model.layers.62.self_attn.o_proj.weight": "model-00013-of-00014.safetensors",
724
+ "model.layers.62.self_attn.q_proj.bias": "model-00013-of-00014.safetensors",
725
+ "model.layers.62.self_attn.q_proj.weight": "model-00013-of-00014.safetensors",
726
+ "model.layers.62.self_attn.v_proj.bias": "model-00013-of-00014.safetensors",
727
+ "model.layers.62.self_attn.v_proj.weight": "model-00013-of-00014.safetensors",
728
+ "model.layers.63.input_layernorm.weight": "model-00014-of-00014.safetensors",
729
+ "model.layers.63.mlp.down_proj.weight": "model-00014-of-00014.safetensors",
730
+ "model.layers.63.mlp.gate_proj.weight": "model-00013-of-00014.safetensors",
731
+ "model.layers.63.mlp.up_proj.weight": "model-00014-of-00014.safetensors",
732
+ "model.layers.63.post_attention_layernorm.weight": "model-00014-of-00014.safetensors",
733
+ "model.layers.63.self_attn.k_proj.bias": "model-00013-of-00014.safetensors",
734
+ "model.layers.63.self_attn.k_proj.weight": "model-00013-of-00014.safetensors",
735
+ "model.layers.63.self_attn.o_proj.weight": "model-00013-of-00014.safetensors",
736
+ "model.layers.63.self_attn.q_proj.bias": "model-00013-of-00014.safetensors",
737
+ "model.layers.63.self_attn.q_proj.weight": "model-00013-of-00014.safetensors",
738
+ "model.layers.63.self_attn.v_proj.bias": "model-00013-of-00014.safetensors",
739
+ "model.layers.63.self_attn.v_proj.weight": "model-00013-of-00014.safetensors",
740
+ "model.layers.7.input_layernorm.weight": "model-00002-of-00014.safetensors",
741
+ "model.layers.7.mlp.down_proj.weight": "model-00002-of-00014.safetensors",
742
+ "model.layers.7.mlp.gate_proj.weight": "model-00002-of-00014.safetensors",
743
+ "model.layers.7.mlp.up_proj.weight": "model-00002-of-00014.safetensors",
744
+ "model.layers.7.post_attention_layernorm.weight": "model-00002-of-00014.safetensors",
745
+ "model.layers.7.self_attn.k_proj.bias": "model-00002-of-00014.safetensors",
746
+ "model.layers.7.self_attn.k_proj.weight": "model-00002-of-00014.safetensors",
747
+ "model.layers.7.self_attn.o_proj.weight": "model-00002-of-00014.safetensors",
748
+ "model.layers.7.self_attn.q_proj.bias": "model-00002-of-00014.safetensors",
749
+ "model.layers.7.self_attn.q_proj.weight": "model-00002-of-00014.safetensors",
750
+ "model.layers.7.self_attn.v_proj.bias": "model-00002-of-00014.safetensors",
751
+ "model.layers.7.self_attn.v_proj.weight": "model-00002-of-00014.safetensors",
752
+ "model.layers.8.input_layernorm.weight": "model-00003-of-00014.safetensors",
753
+ "model.layers.8.mlp.down_proj.weight": "model-00003-of-00014.safetensors",
754
+ "model.layers.8.mlp.gate_proj.weight": "model-00002-of-00014.safetensors",
755
+ "model.layers.8.mlp.up_proj.weight": "model-00003-of-00014.safetensors",
756
+ "model.layers.8.post_attention_layernorm.weight": "model-00003-of-00014.safetensors",
757
+ "model.layers.8.self_attn.k_proj.bias": "model-00002-of-00014.safetensors",
758
+ "model.layers.8.self_attn.k_proj.weight": "model-00002-of-00014.safetensors",
759
+ "model.layers.8.self_attn.o_proj.weight": "model-00002-of-00014.safetensors",
760
+ "model.layers.8.self_attn.q_proj.bias": "model-00002-of-00014.safetensors",
761
+ "model.layers.8.self_attn.q_proj.weight": "model-00002-of-00014.safetensors",
762
+ "model.layers.8.self_attn.v_proj.bias": "model-00002-of-00014.safetensors",
763
+ "model.layers.8.self_attn.v_proj.weight": "model-00002-of-00014.safetensors",
764
+ "model.layers.9.input_layernorm.weight": "model-00003-of-00014.safetensors",
765
+ "model.layers.9.mlp.down_proj.weight": "model-00003-of-00014.safetensors",
766
+ "model.layers.9.mlp.gate_proj.weight": "model-00003-of-00014.safetensors",
767
+ "model.layers.9.mlp.up_proj.weight": "model-00003-of-00014.safetensors",
768
+ "model.layers.9.post_attention_layernorm.weight": "model-00003-of-00014.safetensors",
769
+ "model.layers.9.self_attn.k_proj.bias": "model-00003-of-00014.safetensors",
770
+ "model.layers.9.self_attn.k_proj.weight": "model-00003-of-00014.safetensors",
771
+ "model.layers.9.self_attn.o_proj.weight": "model-00003-of-00014.safetensors",
772
+ "model.layers.9.self_attn.q_proj.bias": "model-00003-of-00014.safetensors",
773
+ "model.layers.9.self_attn.q_proj.weight": "model-00003-of-00014.safetensors",
774
+ "model.layers.9.self_attn.v_proj.bias": "model-00003-of-00014.safetensors",
775
+ "model.layers.9.self_attn.v_proj.weight": "model-00003-of-00014.safetensors",
776
+ "model.norm.weight": "model-00014-of-00014.safetensors"
777
+ }
778
+ }
special_tokens_map.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<|begin▁of▁sentence|>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "<|end▁of▁sentence|>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": {
17
+ "content": "<|end▁of▁sentence|>",
18
+ "lstrip": false,
19
+ "normalized": false,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ }
23
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e20ddafc659ba90242154b55275402edeca0715e5dbb30f56815a4ce081f4893
3
+ size 11422778
tokenizer_config.json ADDED
@@ -0,0 +1,197 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": true,
3
+ "add_eos_token": false,
4
+ "add_prefix_space": null,
5
+ "added_tokens_decoder": {
6
+ "151643": {
7
+ "content": "<|end▁of▁sentence|>",
8
+ "lstrip": false,
9
+ "normalized": false,
10
+ "rstrip": false,
11
+ "single_word": false,
12
+ "special": true
13
+ },
14
+ "151644": {
15
+ "content": "<|User|>",
16
+ "lstrip": false,
17
+ "normalized": false,
18
+ "rstrip": false,
19
+ "single_word": false,
20
+ "special": false
21
+ },
22
+ "151645": {
23
+ "content": "<|Assistant|>",
24
+ "lstrip": false,
25
+ "normalized": false,
26
+ "rstrip": false,
27
+ "single_word": false,
28
+ "special": false
29
+ },
30
+ "151646": {
31
+ "content": "<|begin▁of▁sentence|>",
32
+ "lstrip": false,
33
+ "normalized": false,
34
+ "rstrip": false,
35
+ "single_word": false,
36
+ "special": true
37
+ },
38
+ "151647": {
39
+ "content": "<|EOT|>",
40
+ "lstrip": false,
41
+ "normalized": false,
42
+ "rstrip": false,
43
+ "single_word": false,
44
+ "special": false
45
+ },
46
+ "151648": {
47
+ "content": "<think>",
48
+ "lstrip": false,
49
+ "normalized": false,
50
+ "rstrip": false,
51
+ "single_word": false,
52
+ "special": false
53
+ },
54
+ "151649": {
55
+ "content": "</think>",
56
+ "lstrip": false,
57
+ "normalized": false,
58
+ "rstrip": false,
59
+ "single_word": false,
60
+ "special": false
61
+ },
62
+ "151650": {
63
+ "content": "<|quad_start|>",
64
+ "lstrip": false,
65
+ "normalized": false,
66
+ "rstrip": false,
67
+ "single_word": false,
68
+ "special": true
69
+ },
70
+ "151651": {
71
+ "content": "<|quad_end|>",
72
+ "lstrip": false,
73
+ "normalized": false,
74
+ "rstrip": false,
75
+ "single_word": false,
76
+ "special": true
77
+ },
78
+ "151652": {
79
+ "content": "<|vision_start|>",
80
+ "lstrip": false,
81
+ "normalized": false,
82
+ "rstrip": false,
83
+ "single_word": false,
84
+ "special": true
85
+ },
86
+ "151653": {
87
+ "content": "<|vision_end|>",
88
+ "lstrip": false,
89
+ "normalized": false,
90
+ "rstrip": false,
91
+ "single_word": false,
92
+ "special": true
93
+ },
94
+ "151654": {
95
+ "content": "<|vision_pad|>",
96
+ "lstrip": false,
97
+ "normalized": false,
98
+ "rstrip": false,
99
+ "single_word": false,
100
+ "special": true
101
+ },
102
+ "151655": {
103
+ "content": "<|image_pad|>",
104
+ "lstrip": false,
105
+ "normalized": false,
106
+ "rstrip": false,
107
+ "single_word": false,
108
+ "special": true
109
+ },
110
+ "151656": {
111
+ "content": "<|video_pad|>",
112
+ "lstrip": false,
113
+ "normalized": false,
114
+ "rstrip": false,
115
+ "single_word": false,
116
+ "special": true
117
+ },
118
+ "151657": {
119
+ "content": "<tool_call>",
120
+ "lstrip": false,
121
+ "normalized": false,
122
+ "rstrip": false,
123
+ "single_word": false,
124
+ "special": false
125
+ },
126
+ "151658": {
127
+ "content": "</tool_call>",
128
+ "lstrip": false,
129
+ "normalized": false,
130
+ "rstrip": false,
131
+ "single_word": false,
132
+ "special": false
133
+ },
134
+ "151659": {
135
+ "content": "<|fim_prefix|>",
136
+ "lstrip": false,
137
+ "normalized": false,
138
+ "rstrip": false,
139
+ "single_word": false,
140
+ "special": false
141
+ },
142
+ "151660": {
143
+ "content": "<|fim_middle|>",
144
+ "lstrip": false,
145
+ "normalized": false,
146
+ "rstrip": false,
147
+ "single_word": false,
148
+ "special": false
149
+ },
150
+ "151661": {
151
+ "content": "<|fim_suffix|>",
152
+ "lstrip": false,
153
+ "normalized": false,
154
+ "rstrip": false,
155
+ "single_word": false,
156
+ "special": false
157
+ },
158
+ "151662": {
159
+ "content": "<|fim_pad|>",
160
+ "lstrip": false,
161
+ "normalized": false,
162
+ "rstrip": false,
163
+ "single_word": false,
164
+ "special": false
165
+ },
166
+ "151663": {
167
+ "content": "<|repo_name|>",
168
+ "lstrip": false,
169
+ "normalized": false,
170
+ "rstrip": false,
171
+ "single_word": false,
172
+ "special": false
173
+ },
174
+ "151664": {
175
+ "content": "<|file_sep|>",
176
+ "lstrip": false,
177
+ "normalized": false,
178
+ "rstrip": false,
179
+ "single_word": false,
180
+ "special": false
181
+ }
182
+ },
183
+ "bos_token": "<|begin▁of▁sentence|>",
184
+ "chat_template": "{% if not add_generation_prompt is defined %}{% set add_generation_prompt = false %}{% endif %}{% set ns = namespace(is_first=false, is_tool=false, is_output_first=true, system_prompt='') %}{%- for message in messages %}{%- if message['role'] == 'system' %}{% set ns.system_prompt = message['content'] %}{%- endif %}{%- endfor %}{{bos_token}}{{ns.system_prompt}}{%- for message in messages %}{%- if message['role'] == 'user' %}{%- set ns.is_tool = false -%}{{'<|User|>' + message['content']}}{%- endif %}{%- if message['role'] == 'assistant' and message['content'] is none %}{%- set ns.is_tool = false -%}{%- for tool in message['tool_calls']%}{%- if not ns.is_first %}{{'<|Assistant|><|tool▁calls▁begin|><|tool▁call▁begin��>' + tool['type'] + '<|tool▁sep|>' + tool['function']['name'] + '\\n' + '```json' + '\\n' + tool['function']['arguments'] + '\\n' + '```' + '<|tool▁call▁end|>'}}{%- set ns.is_first = true -%}{%- else %}{{'\\n' + '<|tool▁call▁begin|>' + tool['type'] + '<|tool▁sep|>' + tool['function']['name'] + '\\n' + '```json' + '\\n' + tool['function']['arguments'] + '\\n' + '```' + '<|tool▁call▁end|>'}}{{'<|tool▁calls▁end|><|end▁of▁sentence|>'}}{%- endif %}{%- endfor %}{%- endif %}{%- if message['role'] == 'assistant' and message['content'] is not none %}{%- if ns.is_tool %}{{'<|tool▁outputs▁end|>' + message['content'] + '<|end▁of▁sentence|>'}}{%- set ns.is_tool = false -%}{%- else %}{% set content = message['content'] %}{% if '</think>' in content %}{% set content = content.split('</think>')[-1] %}{% endif %}{{'<|Assistant|>' + content + '<|end▁of▁sentence|>'}}{%- endif %}{%- endif %}{%- if message['role'] == 'tool' %}{%- set ns.is_tool = true -%}{%- if ns.is_output_first %}{{'<|tool▁outputs▁begin|><|tool▁output▁begin|>' + message['content'] + '<|tool▁output▁end|>'}}{%- set ns.is_output_first = false %}{%- else %}{{'\\n<|tool▁output▁begin|>' + message['content'] + '<|tool▁output▁end|>'}}{%- endif %}{%- endif %}{%- endfor -%}{% if ns.is_tool %}{{'<|tool▁outputs▁end|>'}}{% endif %}{% if add_generation_prompt and not ns.is_tool %}{{'<|Assistant|>'}}{% endif %}",
185
+ "clean_up_tokenization_spaces": false,
186
+ "eos_token": "<|end▁of▁sentence|>",
187
+ "extra_special_tokens": {},
188
+ "legacy": true,
189
+ "model_max_length": 20000,
190
+ "pad_token": "<|end▁of▁sentence|>",
191
+ "padding_side": "right",
192
+ "sp_model_kwargs": {},
193
+ "split_special_tokens": false,
194
+ "tokenizer_class": "LlamaTokenizer",
195
+ "unk_token": null,
196
+ "use_default_system_prompt": false
197
+ }
trainer_state.json ADDED
@@ -0,0 +1,1050 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_metric": null,
3
+ "best_model_checkpoint": null,
4
+ "epoch": 9.654545454545454,
5
+ "eval_steps": 30,
6
+ "global_step": 270,
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.07272727272727272,
13
+ "grad_norm": 0.42279353737831116,
14
+ "learning_rate": 3.3333333333333333e-06,
15
+ "loss": 0.4041,
16
+ "step": 2
17
+ },
18
+ {
19
+ "epoch": 0.14545454545454545,
20
+ "grad_norm": 0.39341622591018677,
21
+ "learning_rate": 4.999826945767665e-06,
22
+ "loss": 0.4252,
23
+ "step": 4
24
+ },
25
+ {
26
+ "epoch": 0.21818181818181817,
27
+ "grad_norm": 0.28936225175857544,
28
+ "learning_rate": 4.998442655654946e-06,
29
+ "loss": 0.4065,
30
+ "step": 6
31
+ },
32
+ {
33
+ "epoch": 0.2909090909090909,
34
+ "grad_norm": 0.1611073613166809,
35
+ "learning_rate": 4.995674841986217e-06,
36
+ "loss": 0.3861,
37
+ "step": 8
38
+ },
39
+ {
40
+ "epoch": 0.36363636363636365,
41
+ "grad_norm": 0.1466752290725708,
42
+ "learning_rate": 4.991525037450412e-06,
43
+ "loss": 0.3941,
44
+ "step": 10
45
+ },
46
+ {
47
+ "epoch": 0.43636363636363634,
48
+ "grad_norm": 0.23374205827713013,
49
+ "learning_rate": 4.985995540019956e-06,
50
+ "loss": 0.385,
51
+ "step": 12
52
+ },
53
+ {
54
+ "epoch": 0.509090909090909,
55
+ "grad_norm": 0.2576417326927185,
56
+ "learning_rate": 4.979089411678252e-06,
57
+ "loss": 0.3865,
58
+ "step": 14
59
+ },
60
+ {
61
+ "epoch": 0.5818181818181818,
62
+ "grad_norm": 0.2165990173816681,
63
+ "learning_rate": 4.970810476724097e-06,
64
+ "loss": 0.3914,
65
+ "step": 16
66
+ },
67
+ {
68
+ "epoch": 0.6545454545454545,
69
+ "grad_norm": 0.13620640337467194,
70
+ "learning_rate": 4.961163319653959e-06,
71
+ "loss": 0.3682,
72
+ "step": 18
73
+ },
74
+ {
75
+ "epoch": 0.7272727272727273,
76
+ "grad_norm": 0.09898896515369415,
77
+ "learning_rate": 4.950153282623289e-06,
78
+ "loss": 0.3763,
79
+ "step": 20
80
+ },
81
+ {
82
+ "epoch": 0.8,
83
+ "grad_norm": 0.08760473132133484,
84
+ "learning_rate": 4.937786462488284e-06,
85
+ "loss": 0.3793,
86
+ "step": 22
87
+ },
88
+ {
89
+ "epoch": 0.8727272727272727,
90
+ "grad_norm": 0.10171981155872345,
91
+ "learning_rate": 4.9240697074297205e-06,
92
+ "loss": 0.3823,
93
+ "step": 24
94
+ },
95
+ {
96
+ "epoch": 0.9454545454545454,
97
+ "grad_norm": 0.10795366764068604,
98
+ "learning_rate": 4.909010613160751e-06,
99
+ "loss": 0.3805,
100
+ "step": 26
101
+ },
102
+ {
103
+ "epoch": 1.0,
104
+ "grad_norm": 0.08594109863042831,
105
+ "learning_rate": 4.892617518720737e-06,
106
+ "loss": 0.3662,
107
+ "step": 28
108
+ },
109
+ {
110
+ "epoch": 1.0727272727272728,
111
+ "grad_norm": 0.08396578580141068,
112
+ "learning_rate": 4.874899501857477e-06,
113
+ "loss": 0.368,
114
+ "step": 30
115
+ },
116
+ {
117
+ "epoch": 1.0727272727272728,
118
+ "eval_loss": 0.40457433462142944,
119
+ "eval_runtime": 16.4893,
120
+ "eval_samples_per_second": 6.065,
121
+ "eval_steps_per_second": 0.425,
122
+ "step": 30
123
+ },
124
+ {
125
+ "epoch": 1.1454545454545455,
126
+ "grad_norm": 0.06160604581236839,
127
+ "learning_rate": 4.85586637400036e-06,
128
+ "loss": 0.3608,
129
+ "step": 32
130
+ },
131
+ {
132
+ "epoch": 1.2181818181818183,
133
+ "grad_norm": 0.053206440061330795,
134
+ "learning_rate": 4.8355286748272405e-06,
135
+ "loss": 0.3423,
136
+ "step": 34
137
+ },
138
+ {
139
+ "epoch": 1.290909090909091,
140
+ "grad_norm": 0.05600437521934509,
141
+ "learning_rate": 4.813897666428054e-06,
142
+ "loss": 0.349,
143
+ "step": 36
144
+ },
145
+ {
146
+ "epoch": 1.3636363636363638,
147
+ "grad_norm": 0.06277399510145187,
148
+ "learning_rate": 4.790985327068376e-06,
149
+ "loss": 0.3569,
150
+ "step": 38
151
+ },
152
+ {
153
+ "epoch": 1.4363636363636363,
154
+ "grad_norm": 0.0717867836356163,
155
+ "learning_rate": 4.766804344556414e-06,
156
+ "loss": 0.359,
157
+ "step": 40
158
+ },
159
+ {
160
+ "epoch": 1.509090909090909,
161
+ "grad_norm": 0.051569655537605286,
162
+ "learning_rate": 4.741368109217072e-06,
163
+ "loss": 0.3489,
164
+ "step": 42
165
+ },
166
+ {
167
+ "epoch": 1.5818181818181818,
168
+ "grad_norm": 0.04518551751971245,
169
+ "learning_rate": 4.714690706477e-06,
170
+ "loss": 0.3382,
171
+ "step": 44
172
+ },
173
+ {
174
+ "epoch": 1.6545454545454545,
175
+ "grad_norm": 0.0480523444712162,
176
+ "learning_rate": 4.68678690906473e-06,
177
+ "loss": 0.3412,
178
+ "step": 46
179
+ },
180
+ {
181
+ "epoch": 1.7272727272727273,
182
+ "grad_norm": 0.04666323587298393,
183
+ "learning_rate": 4.657672168830211e-06,
184
+ "loss": 0.3536,
185
+ "step": 48
186
+ },
187
+ {
188
+ "epoch": 1.8,
189
+ "grad_norm": 0.05208882689476013,
190
+ "learning_rate": 4.627362608188281e-06,
191
+ "loss": 0.3483,
192
+ "step": 50
193
+ },
194
+ {
195
+ "epoch": 1.8727272727272726,
196
+ "grad_norm": 0.05304299667477608,
197
+ "learning_rate": 4.5958750111908065e-06,
198
+ "loss": 0.3408,
199
+ "step": 52
200
+ },
201
+ {
202
+ "epoch": 1.9454545454545453,
203
+ "grad_norm": 0.04273353889584541,
204
+ "learning_rate": 4.563226814232444e-06,
205
+ "loss": 0.3728,
206
+ "step": 54
207
+ },
208
+ {
209
+ "epoch": 2.0,
210
+ "grad_norm": 0.08124157786369324,
211
+ "learning_rate": 4.529436096395157e-06,
212
+ "loss": 0.3783,
213
+ "step": 56
214
+ },
215
+ {
216
+ "epoch": 2.0727272727272728,
217
+ "grad_norm": 0.044167324900627136,
218
+ "learning_rate": 4.494521569436845e-06,
219
+ "loss": 0.3326,
220
+ "step": 58
221
+ },
222
+ {
223
+ "epoch": 2.1454545454545455,
224
+ "grad_norm": 0.041194308549165726,
225
+ "learning_rate": 4.4585025674296315e-06,
226
+ "loss": 0.3302,
227
+ "step": 60
228
+ },
229
+ {
230
+ "epoch": 2.1454545454545455,
231
+ "eval_loss": 0.4037678837776184,
232
+ "eval_runtime": 15.9657,
233
+ "eval_samples_per_second": 6.263,
234
+ "eval_steps_per_second": 0.438,
235
+ "step": 60
236
+ },
237
+ {
238
+ "epoch": 2.2181818181818183,
239
+ "grad_norm": 0.050775595009326935,
240
+ "learning_rate": 4.4213990360535274e-06,
241
+ "loss": 0.3303,
242
+ "step": 62
243
+ },
244
+ {
245
+ "epoch": 2.290909090909091,
246
+ "grad_norm": 0.03840049356222153,
247
+ "learning_rate": 4.383231521551432e-06,
248
+ "loss": 0.3142,
249
+ "step": 64
250
+ },
251
+ {
252
+ "epoch": 2.3636363636363638,
253
+ "grad_norm": 0.04364444687962532,
254
+ "learning_rate": 4.3440211593515556e-06,
255
+ "loss": 0.3329,
256
+ "step": 66
257
+ },
258
+ {
259
+ "epoch": 2.4363636363636365,
260
+ "grad_norm": 0.040008459240198135,
261
+ "learning_rate": 4.303789662363587e-06,
262
+ "loss": 0.3426,
263
+ "step": 68
264
+ },
265
+ {
266
+ "epoch": 2.509090909090909,
267
+ "grad_norm": 0.04201684519648552,
268
+ "learning_rate": 4.262559308955072e-06,
269
+ "loss": 0.3439,
270
+ "step": 70
271
+ },
272
+ {
273
+ "epoch": 2.581818181818182,
274
+ "grad_norm": 0.04128064960241318,
275
+ "learning_rate": 4.220352930614672e-06,
276
+ "loss": 0.3391,
277
+ "step": 72
278
+ },
279
+ {
280
+ "epoch": 2.6545454545454543,
281
+ "grad_norm": 0.03866910934448242,
282
+ "learning_rate": 4.177193899309127e-06,
283
+ "loss": 0.3299,
284
+ "step": 74
285
+ },
286
+ {
287
+ "epoch": 2.7272727272727275,
288
+ "grad_norm": 0.0435042642056942,
289
+ "learning_rate": 4.133106114540923e-06,
290
+ "loss": 0.323,
291
+ "step": 76
292
+ },
293
+ {
294
+ "epoch": 2.8,
295
+ "grad_norm": 0.03538796305656433,
296
+ "learning_rate": 4.088113990113846e-06,
297
+ "loss": 0.322,
298
+ "step": 78
299
+ },
300
+ {
301
+ "epoch": 2.8727272727272726,
302
+ "grad_norm": 0.04087506979703903,
303
+ "learning_rate": 4.042242440613724e-06,
304
+ "loss": 0.3247,
305
+ "step": 80
306
+ },
307
+ {
308
+ "epoch": 2.9454545454545453,
309
+ "grad_norm": 0.046281322836875916,
310
+ "learning_rate": 3.995516867611865e-06,
311
+ "loss": 0.3438,
312
+ "step": 82
313
+ },
314
+ {
315
+ "epoch": 3.0,
316
+ "grad_norm": 0.04055408388376236,
317
+ "learning_rate": 3.947963145598833e-06,
318
+ "loss": 0.3276,
319
+ "step": 84
320
+ },
321
+ {
322
+ "epoch": 3.0727272727272728,
323
+ "grad_norm": 0.041513592004776,
324
+ "learning_rate": 3.899607607656334e-06,
325
+ "loss": 0.3252,
326
+ "step": 86
327
+ },
328
+ {
329
+ "epoch": 3.1454545454545455,
330
+ "grad_norm": 0.03839336708188057,
331
+ "learning_rate": 3.850477030875147e-06,
332
+ "loss": 0.3115,
333
+ "step": 88
334
+ },
335
+ {
336
+ "epoch": 3.2181818181818183,
337
+ "grad_norm": 0.04176229238510132,
338
+ "learning_rate": 3.8005986215272056e-06,
339
+ "loss": 0.309,
340
+ "step": 90
341
+ },
342
+ {
343
+ "epoch": 3.2181818181818183,
344
+ "eval_loss": 0.40795081853866577,
345
+ "eval_runtime": 15.995,
346
+ "eval_samples_per_second": 6.252,
347
+ "eval_steps_per_second": 0.438,
348
+ "step": 90
349
+ },
350
+ {
351
+ "epoch": 3.290909090909091,
352
+ "grad_norm": 0.04411574825644493,
353
+ "learning_rate": 3.7500000000000005e-06,
354
+ "loss": 0.3077,
355
+ "step": 92
356
+ },
357
+ {
358
+ "epoch": 3.3636363636363638,
359
+ "grad_norm": 0.038224343210458755,
360
+ "learning_rate": 3.6987091855016667e-06,
361
+ "loss": 0.2897,
362
+ "step": 94
363
+ },
364
+ {
365
+ "epoch": 3.4363636363636365,
366
+ "grad_norm": 0.048621904104948044,
367
+ "learning_rate": 3.6467545805452266e-06,
368
+ "loss": 0.3019,
369
+ "step": 96
370
+ },
371
+ {
372
+ "epoch": 3.509090909090909,
373
+ "grad_norm": 0.041004959493875504,
374
+ "learning_rate": 3.594164955220577e-06,
375
+ "loss": 0.3105,
376
+ "step": 98
377
+ },
378
+ {
379
+ "epoch": 3.581818181818182,
380
+ "grad_norm": 0.040131937712430954,
381
+ "learning_rate": 3.5409694312629193e-06,
382
+ "loss": 0.3201,
383
+ "step": 100
384
+ },
385
+ {
386
+ "epoch": 3.6545454545454543,
387
+ "grad_norm": 0.04099489003419876,
388
+ "learning_rate": 3.4871974659264786e-06,
389
+ "loss": 0.3149,
390
+ "step": 102
391
+ },
392
+ {
393
+ "epoch": 3.7272727272727275,
394
+ "grad_norm": 0.04340096190571785,
395
+ "learning_rate": 3.4328788356724135e-06,
396
+ "loss": 0.3044,
397
+ "step": 104
398
+ },
399
+ {
400
+ "epoch": 3.8,
401
+ "grad_norm": 0.04188128933310509,
402
+ "learning_rate": 3.378043619679974e-06,
403
+ "loss": 0.3103,
404
+ "step": 106
405
+ },
406
+ {
407
+ "epoch": 3.8727272727272726,
408
+ "grad_norm": 0.037973225116729736,
409
+ "learning_rate": 3.322722183190025e-06,
410
+ "loss": 0.2999,
411
+ "step": 108
412
+ },
413
+ {
414
+ "epoch": 3.9454545454545453,
415
+ "grad_norm": 0.038421131670475006,
416
+ "learning_rate": 3.26694516069016e-06,
417
+ "loss": 0.312,
418
+ "step": 110
419
+ },
420
+ {
421
+ "epoch": 4.0,
422
+ "grad_norm": 0.06082421541213989,
423
+ "learning_rate": 3.210743438950718e-06,
424
+ "loss": 0.276,
425
+ "step": 112
426
+ },
427
+ {
428
+ "epoch": 4.072727272727272,
429
+ "grad_norm": 0.037277910858392715,
430
+ "learning_rate": 3.154148139921102e-06,
431
+ "loss": 0.2977,
432
+ "step": 114
433
+ },
434
+ {
435
+ "epoch": 4.1454545454545455,
436
+ "grad_norm": 0.037613365799188614,
437
+ "learning_rate": 3.0971906034958616e-06,
438
+ "loss": 0.3004,
439
+ "step": 116
440
+ },
441
+ {
442
+ "epoch": 4.218181818181818,
443
+ "grad_norm": 0.03691912069916725,
444
+ "learning_rate": 3.0399023701600903e-06,
445
+ "loss": 0.2673,
446
+ "step": 118
447
+ },
448
+ {
449
+ "epoch": 4.290909090909091,
450
+ "grad_norm": 0.03884879872202873,
451
+ "learning_rate": 2.9823151635237424e-06,
452
+ "loss": 0.2901,
453
+ "step": 120
454
+ },
455
+ {
456
+ "epoch": 4.290909090909091,
457
+ "eval_loss": 0.41295385360717773,
458
+ "eval_runtime": 15.9766,
459
+ "eval_samples_per_second": 6.259,
460
+ "eval_steps_per_second": 0.438,
461
+ "step": 120
462
+ },
463
+ {
464
+ "epoch": 4.363636363636363,
465
+ "grad_norm": 0.040829263627529144,
466
+ "learning_rate": 2.924460872754547e-06,
467
+ "loss": 0.2902,
468
+ "step": 122
469
+ },
470
+ {
471
+ "epoch": 4.4363636363636365,
472
+ "grad_norm": 0.04225178807973862,
473
+ "learning_rate": 2.8663715349192388e-06,
474
+ "loss": 0.2951,
475
+ "step": 124
476
+ },
477
+ {
478
+ "epoch": 4.509090909090909,
479
+ "grad_norm": 0.036058977246284485,
480
+ "learning_rate": 2.8080793172428965e-06,
481
+ "loss": 0.2919,
482
+ "step": 126
483
+ },
484
+ {
485
+ "epoch": 4.581818181818182,
486
+ "grad_norm": 0.03855273872613907,
487
+ "learning_rate": 2.7496164992961995e-06,
488
+ "loss": 0.2897,
489
+ "step": 128
490
+ },
491
+ {
492
+ "epoch": 4.654545454545454,
493
+ "grad_norm": 0.039659108966588974,
494
+ "learning_rate": 2.691015455120468e-06,
495
+ "loss": 0.2932,
496
+ "step": 130
497
+ },
498
+ {
499
+ "epoch": 4.7272727272727275,
500
+ "grad_norm": 0.042663708329200745,
501
+ "learning_rate": 2.6323086353004077e-06,
502
+ "loss": 0.2725,
503
+ "step": 132
504
+ },
505
+ {
506
+ "epoch": 4.8,
507
+ "grad_norm": 0.03936437889933586,
508
+ "learning_rate": 2.573528548994449e-06,
509
+ "loss": 0.2939,
510
+ "step": 134
511
+ },
512
+ {
513
+ "epoch": 4.872727272727273,
514
+ "grad_norm": 0.0572555810213089,
515
+ "learning_rate": 2.5147077459326556e-06,
516
+ "loss": 0.2776,
517
+ "step": 136
518
+ },
519
+ {
520
+ "epoch": 4.945454545454545,
521
+ "grad_norm": 0.0380295105278492,
522
+ "learning_rate": 2.455878798392179e-06,
523
+ "loss": 0.2979,
524
+ "step": 138
525
+ },
526
+ {
527
+ "epoch": 5.0,
528
+ "grad_norm": 0.035944413393735886,
529
+ "learning_rate": 2.397074283160206e-06,
530
+ "loss": 0.2715,
531
+ "step": 140
532
+ },
533
+ {
534
+ "epoch": 5.072727272727272,
535
+ "grad_norm": 0.0400959774851799,
536
+ "learning_rate": 2.338326763494429e-06,
537
+ "loss": 0.2746,
538
+ "step": 142
539
+ },
540
+ {
541
+ "epoch": 5.1454545454545455,
542
+ "grad_norm": 0.047982338815927505,
543
+ "learning_rate": 2.2796687710909966e-06,
544
+ "loss": 0.2705,
545
+ "step": 144
546
+ },
547
+ {
548
+ "epoch": 5.218181818181818,
549
+ "grad_norm": 0.04013433679938316,
550
+ "learning_rate": 2.2211327880699392e-06,
551
+ "loss": 0.2549,
552
+ "step": 146
553
+ },
554
+ {
555
+ "epoch": 5.290909090909091,
556
+ "grad_norm": 0.0582863911986351,
557
+ "learning_rate": 2.162751228988063e-06,
558
+ "loss": 0.2731,
559
+ "step": 148
560
+ },
561
+ {
562
+ "epoch": 5.363636363636363,
563
+ "grad_norm": 0.03681691363453865,
564
+ "learning_rate": 2.1045564228892404e-06,
565
+ "loss": 0.2705,
566
+ "step": 150
567
+ },
568
+ {
569
+ "epoch": 5.363636363636363,
570
+ "eval_loss": 0.41707590222358704,
571
+ "eval_runtime": 15.9844,
572
+ "eval_samples_per_second": 6.256,
573
+ "eval_steps_per_second": 0.438,
574
+ "step": 150
575
+ },
576
+ {
577
+ "epoch": 5.4363636363636365,
578
+ "grad_norm": 0.040616922080516815,
579
+ "learning_rate": 2.04658059540206e-06,
580
+ "loss": 0.2603,
581
+ "step": 152
582
+ },
583
+ {
584
+ "epoch": 5.509090909090909,
585
+ "grad_norm": 0.04648638516664505,
586
+ "learning_rate": 1.9888558508947496e-06,
587
+ "loss": 0.2665,
588
+ "step": 154
589
+ },
590
+ {
591
+ "epoch": 5.581818181818182,
592
+ "grad_norm": 0.03560300171375275,
593
+ "learning_rate": 1.9314141546972345e-06,
594
+ "loss": 0.2682,
595
+ "step": 156
596
+ },
597
+ {
598
+ "epoch": 5.654545454545454,
599
+ "grad_norm": 0.03742830082774162,
600
+ "learning_rate": 1.8742873154002007e-06,
601
+ "loss": 0.2726,
602
+ "step": 158
603
+ },
604
+ {
605
+ "epoch": 5.7272727272727275,
606
+ "grad_norm": 0.03804292157292366,
607
+ "learning_rate": 1.8175069672409476e-06,
608
+ "loss": 0.2581,
609
+ "step": 160
610
+ },
611
+ {
612
+ "epoch": 5.8,
613
+ "grad_norm": 0.03460890054702759,
614
+ "learning_rate": 1.7611045525857902e-06,
615
+ "loss": 0.2834,
616
+ "step": 162
617
+ },
618
+ {
619
+ "epoch": 5.872727272727273,
620
+ "grad_norm": 0.038920674473047256,
621
+ "learning_rate": 1.7051113045187123e-06,
622
+ "loss": 0.2746,
623
+ "step": 164
624
+ },
625
+ {
626
+ "epoch": 5.945454545454545,
627
+ "grad_norm": 0.04531797394156456,
628
+ "learning_rate": 1.6495582295459081e-06,
629
+ "loss": 0.2666,
630
+ "step": 166
631
+ },
632
+ {
633
+ "epoch": 6.0,
634
+ "grad_norm": 0.06146521493792534,
635
+ "learning_rate": 1.5944760904257944e-06,
636
+ "loss": 0.2675,
637
+ "step": 168
638
+ },
639
+ {
640
+ "epoch": 6.072727272727272,
641
+ "grad_norm": 0.0393206886947155,
642
+ "learning_rate": 1.5398953891339972e-06,
643
+ "loss": 0.2619,
644
+ "step": 170
645
+ },
646
+ {
647
+ "epoch": 6.1454545454545455,
648
+ "grad_norm": 0.03849950432777405,
649
+ "learning_rate": 1.485846349972751e-06,
650
+ "loss": 0.2582,
651
+ "step": 172
652
+ },
653
+ {
654
+ "epoch": 6.218181818181818,
655
+ "grad_norm": 0.03983594849705696,
656
+ "learning_rate": 1.4323589028340598e-06,
657
+ "loss": 0.2736,
658
+ "step": 174
659
+ },
660
+ {
661
+ "epoch": 6.290909090909091,
662
+ "grad_norm": 0.03905485197901726,
663
+ "learning_rate": 1.3794626666258868e-06,
664
+ "loss": 0.2428,
665
+ "step": 176
666
+ },
667
+ {
668
+ "epoch": 6.363636363636363,
669
+ "grad_norm": 0.04092865809798241,
670
+ "learning_rate": 1.3271869328705517e-06,
671
+ "loss": 0.2555,
672
+ "step": 178
673
+ },
674
+ {
675
+ "epoch": 6.4363636363636365,
676
+ "grad_norm": 0.036916088312864304,
677
+ "learning_rate": 1.2755606494844294e-06,
678
+ "loss": 0.2615,
679
+ "step": 180
680
+ },
681
+ {
682
+ "epoch": 6.4363636363636365,
683
+ "eval_loss": 0.4211080074310303,
684
+ "eval_runtime": 15.9838,
685
+ "eval_samples_per_second": 6.256,
686
+ "eval_steps_per_second": 0.438,
687
+ "step": 180
688
+ },
689
+ {
690
+ "epoch": 6.509090909090909,
691
+ "grad_norm": 0.03942929953336716,
692
+ "learning_rate": 1.2246124047479074e-06,
693
+ "loss": 0.2553,
694
+ "step": 182
695
+ },
696
+ {
697
+ "epoch": 6.581818181818182,
698
+ "grad_norm": 0.038776326924562454,
699
+ "learning_rate": 1.174370411474503e-06,
700
+ "loss": 0.2523,
701
+ "step": 184
702
+ },
703
+ {
704
+ "epoch": 6.654545454545454,
705
+ "grad_norm": 0.039575546979904175,
706
+ "learning_rate": 1.1248624913878966e-06,
707
+ "loss": 0.2616,
708
+ "step": 186
709
+ },
710
+ {
711
+ "epoch": 6.7272727272727275,
712
+ "grad_norm": 0.03467780724167824,
713
+ "learning_rate": 1.0761160597155288e-06,
714
+ "loss": 0.2675,
715
+ "step": 188
716
+ },
717
+ {
718
+ "epoch": 6.8,
719
+ "grad_norm": 0.036917053163051605,
720
+ "learning_rate": 1.028158110007294e-06,
721
+ "loss": 0.268,
722
+ "step": 190
723
+ },
724
+ {
725
+ "epoch": 6.872727272727273,
726
+ "grad_norm": 0.03764381632208824,
727
+ "learning_rate": 9.81015199187753e-07,
728
+ "loss": 0.2618,
729
+ "step": 192
730
+ },
731
+ {
732
+ "epoch": 6.945454545454545,
733
+ "grad_norm": 0.03786522150039673,
734
+ "learning_rate": 9.347134328501098e-07,
735
+ "loss": 0.2468,
736
+ "step": 194
737
+ },
738
+ {
739
+ "epoch": 7.0,
740
+ "grad_norm": 0.03737010434269905,
741
+ "learning_rate": 8.892784508001343e-07,
742
+ "loss": 0.2299,
743
+ "step": 196
744
+ },
745
+ {
746
+ "epoch": 7.072727272727272,
747
+ "grad_norm": 0.04024997726082802,
748
+ "learning_rate": 8.44735412857999e-07,
749
+ "loss": 0.2625,
750
+ "step": 198
751
+ },
752
+ {
753
+ "epoch": 7.1454545454545455,
754
+ "grad_norm": 0.042676106095314026,
755
+ "learning_rate": 8.011089849259263e-07,
756
+ "loss": 0.2615,
757
+ "step": 200
758
+ },
759
+ {
760
+ "epoch": 7.218181818181818,
761
+ "grad_norm": 0.03763395920395851,
762
+ "learning_rate": 7.584233253293327e-07,
763
+ "loss": 0.2476,
764
+ "step": 202
765
+ },
766
+ {
767
+ "epoch": 7.290909090909091,
768
+ "grad_norm": 0.03564968332648277,
769
+ "learning_rate": 7.167020714390502e-07,
770
+ "loss": 0.2453,
771
+ "step": 204
772
+ },
773
+ {
774
+ "epoch": 7.363636363636363,
775
+ "grad_norm": 0.03487633168697357,
776
+ "learning_rate": 6.759683265820294e-07,
777
+ "loss": 0.2557,
778
+ "step": 206
779
+ },
780
+ {
781
+ "epoch": 7.4363636363636365,
782
+ "grad_norm": 0.038702890276908875,
783
+ "learning_rate": 6.36244647247774e-07,
784
+ "loss": 0.2537,
785
+ "step": 208
786
+ },
787
+ {
788
+ "epoch": 7.509090909090909,
789
+ "grad_norm": 0.03509435057640076,
790
+ "learning_rate": 5.975530305975808e-07,
791
+ "loss": 0.2417,
792
+ "step": 210
793
+ },
794
+ {
795
+ "epoch": 7.509090909090909,
796
+ "eval_loss": 0.4235740005970001,
797
+ "eval_runtime": 15.9573,
798
+ "eval_samples_per_second": 6.267,
799
+ "eval_steps_per_second": 0.439,
800
+ "step": 210
801
+ },
802
+ {
803
+ "epoch": 7.581818181818182,
804
+ "grad_norm": 0.03575809672474861,
805
+ "learning_rate": 5.599149022835201e-07,
806
+ "loss": 0.2521,
807
+ "step": 212
808
+ },
809
+ {
810
+ "epoch": 7.654545454545454,
811
+ "grad_norm": 0.038031384348869324,
812
+ "learning_rate": 5.233511045838846e-07,
813
+ "loss": 0.2645,
814
+ "step": 214
815
+ },
816
+ {
817
+ "epoch": 7.7272727272727275,
818
+ "grad_norm": 0.03550686687231064,
819
+ "learning_rate": 4.878818848616861e-07,
820
+ "loss": 0.2416,
821
+ "step": 216
822
+ },
823
+ {
824
+ "epoch": 7.8,
825
+ "grad_norm": 0.035883497446775436,
826
+ "learning_rate": 4.5352688435259084e-07,
827
+ "loss": 0.2523,
828
+ "step": 218
829
+ },
830
+ {
831
+ "epoch": 7.872727272727273,
832
+ "grad_norm": 0.039348237216472626,
833
+ "learning_rate": 4.2030512728849946e-07,
834
+ "loss": 0.2476,
835
+ "step": 220
836
+ },
837
+ {
838
+ "epoch": 7.945454545454545,
839
+ "grad_norm": 0.03574049472808838,
840
+ "learning_rate": 3.882350103627952e-07,
841
+ "loss": 0.2514,
842
+ "step": 222
843
+ },
844
+ {
845
+ "epoch": 8.0,
846
+ "grad_norm": 0.05936720594763756,
847
+ "learning_rate": 3.5733429254309253e-07,
848
+ "loss": 0.241,
849
+ "step": 224
850
+ },
851
+ {
852
+ "epoch": 8.072727272727272,
853
+ "grad_norm": 0.03717917203903198,
854
+ "learning_rate": 3.276200852371339e-07,
855
+ "loss": 0.2488,
856
+ "step": 226
857
+ },
858
+ {
859
+ "epoch": 8.145454545454545,
860
+ "grad_norm": 0.03638555109500885,
861
+ "learning_rate": 2.9910884281727225e-07,
862
+ "loss": 0.2479,
863
+ "step": 228
864
+ },
865
+ {
866
+ "epoch": 8.218181818181819,
867
+ "grad_norm": 0.03493395075201988,
868
+ "learning_rate": 2.7181635350878645e-07,
869
+ "loss": 0.2398,
870
+ "step": 230
871
+ },
872
+ {
873
+ "epoch": 8.290909090909091,
874
+ "grad_norm": 0.0358763113617897,
875
+ "learning_rate": 2.4575773064708904e-07,
876
+ "loss": 0.2537,
877
+ "step": 232
878
+ },
879
+ {
880
+ "epoch": 8.363636363636363,
881
+ "grad_norm": 0.03697650507092476,
882
+ "learning_rate": 2.2094740430864569e-07,
883
+ "loss": 0.237,
884
+ "step": 234
885
+ },
886
+ {
887
+ "epoch": 8.436363636363636,
888
+ "grad_norm": 0.03936561197042465,
889
+ "learning_rate": 1.9739911332025796e-07,
890
+ "loss": 0.2358,
891
+ "step": 236
892
+ },
893
+ {
894
+ "epoch": 8.50909090909091,
895
+ "grad_norm": 0.03290196508169174,
896
+ "learning_rate": 1.7512589765112998e-07,
897
+ "loss": 0.2338,
898
+ "step": 238
899
+ },
900
+ {
901
+ "epoch": 8.581818181818182,
902
+ "grad_norm": 0.0346793606877327,
903
+ "learning_rate": 1.5414009119192635e-07,
904
+ "loss": 0.2569,
905
+ "step": 240
906
+ },
907
+ {
908
+ "epoch": 8.581818181818182,
909
+ "eval_loss": 0.42472872138023376,
910
+ "eval_runtime": 15.9951,
911
+ "eval_samples_per_second": 6.252,
912
+ "eval_steps_per_second": 0.438,
913
+ "step": 240
914
+ },
915
+ {
916
+ "epoch": 8.654545454545454,
917
+ "grad_norm": 0.040124256163835526,
918
+ "learning_rate": 1.3445331492482617e-07,
919
+ "loss": 0.2667,
920
+ "step": 242
921
+ },
922
+ {
923
+ "epoch": 8.727272727272727,
924
+ "grad_norm": 0.03517503663897514,
925
+ "learning_rate": 1.1607647048835463e-07,
926
+ "loss": 0.2355,
927
+ "step": 244
928
+ },
929
+ {
930
+ "epoch": 8.8,
931
+ "grad_norm": 0.038074642419815063,
932
+ "learning_rate": 9.901973414055188e-08,
933
+ "loss": 0.2439,
934
+ "step": 246
935
+ },
936
+ {
937
+ "epoch": 8.872727272727273,
938
+ "grad_norm": 0.03690966218709946,
939
+ "learning_rate": 8.329255112382666e-08,
940
+ "loss": 0.2487,
941
+ "step": 248
942
+ },
943
+ {
944
+ "epoch": 8.945454545454545,
945
+ "grad_norm": 0.03566785156726837,
946
+ "learning_rate": 6.890363043461051e-08,
947
+ "loss": 0.252,
948
+ "step": 250
949
+ },
950
+ {
951
+ "epoch": 9.0,
952
+ "grad_norm": 0.0351359024643898,
953
+ "learning_rate": 5.5860940000714016e-08,
954
+ "loss": 0.2637,
955
+ "step": 252
956
+ },
957
+ {
958
+ "epoch": 9.072727272727272,
959
+ "grad_norm": 0.03571401536464691,
960
+ "learning_rate": 4.4171702269051874e-08,
961
+ "loss": 0.2386,
962
+ "step": 254
963
+ },
964
+ {
965
+ "epoch": 9.145454545454545,
966
+ "grad_norm": 0.04017382860183716,
967
+ "learning_rate": 3.3842390206180186e-08,
968
+ "loss": 0.2527,
969
+ "step": 256
970
+ },
971
+ {
972
+ "epoch": 9.218181818181819,
973
+ "grad_norm": 0.035146769136190414,
974
+ "learning_rate": 2.487872371386424e-08,
975
+ "loss": 0.2461,
976
+ "step": 258
977
+ },
978
+ {
979
+ "epoch": 9.290909090909091,
980
+ "grad_norm": 0.03707621991634369,
981
+ "learning_rate": 1.728566646165747e-08,
982
+ "loss": 0.2537,
983
+ "step": 260
984
+ },
985
+ {
986
+ "epoch": 9.363636363636363,
987
+ "grad_norm": 0.03554265946149826,
988
+ "learning_rate": 1.1067423138247103e-08,
989
+ "loss": 0.2353,
990
+ "step": 262
991
+ },
992
+ {
993
+ "epoch": 9.436363636363636,
994
+ "grad_norm": 0.03387082368135452,
995
+ "learning_rate": 6.2274371230905405e-09,
996
+ "loss": 0.2422,
997
+ "step": 264
998
+ },
999
+ {
1000
+ "epoch": 9.50909090909091,
1001
+ "grad_norm": 0.03694632276892662,
1002
+ "learning_rate": 2.7683885796273014e-09,
1003
+ "loss": 0.2448,
1004
+ "step": 266
1005
+ },
1006
+ {
1007
+ "epoch": 9.581818181818182,
1008
+ "grad_norm": 0.03442605957388878,
1009
+ "learning_rate": 6.921929711287134e-10,
1010
+ "loss": 0.2482,
1011
+ "step": 268
1012
+ },
1013
+ {
1014
+ "epoch": 9.654545454545454,
1015
+ "grad_norm": 0.03988894447684288,
1016
+ "learning_rate": 0.0,
1017
+ "loss": 0.2565,
1018
+ "step": 270
1019
+ },
1020
+ {
1021
+ "epoch": 9.654545454545454,
1022
+ "eval_loss": 0.42475754022598267,
1023
+ "eval_runtime": 15.9878,
1024
+ "eval_samples_per_second": 6.255,
1025
+ "eval_steps_per_second": 0.438,
1026
+ "step": 270
1027
+ }
1028
+ ],
1029
+ "logging_steps": 2,
1030
+ "max_steps": 270,
1031
+ "num_input_tokens_seen": 0,
1032
+ "num_train_epochs": 10,
1033
+ "save_steps": 500,
1034
+ "stateful_callbacks": {
1035
+ "TrainerControl": {
1036
+ "args": {
1037
+ "should_epoch_stop": false,
1038
+ "should_evaluate": false,
1039
+ "should_log": false,
1040
+ "should_save": true,
1041
+ "should_training_stop": true
1042
+ },
1043
+ "attributes": {}
1044
+ }
1045
+ },
1046
+ "total_flos": 5.17181948959916e+17,
1047
+ "train_batch_size": 1,
1048
+ "trial_name": null,
1049
+ "trial_params": null
1050
+ }