Model save
Browse files- .gitattributes +1 -0
- README.md +68 -0
- added_tokens.json +24 -0
- all_results.json +8 -0
- config.json +29 -0
- generation_config.json +14 -0
- merges.txt +0 -0
- model-00001-of-00002.safetensors +3 -0
- model-00002-of-00002.safetensors +3 -0
- model.safetensors.index.json +442 -0
- special_tokens_map.json +31 -0
- tokenizer.json +3 -0
- tokenizer_config.json +209 -0
- train_results.json +8 -0
- trainer_state.json +624 -0
- training_args.bin +3 -0
- vocab.json +0 -0
.gitattributes
CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
@@ -0,0 +1,68 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
base_model: Qwen/Qwen2.5-3B-Instruct
|
3 |
+
library_name: transformers
|
4 |
+
model_name: Qwen2.5-3B-GRPO-Countdown
|
5 |
+
tags:
|
6 |
+
- generated_from_trainer
|
7 |
+
- trl
|
8 |
+
- grpo
|
9 |
+
licence: license
|
10 |
+
---
|
11 |
+
|
12 |
+
# Model Card for Qwen2.5-3B-GRPO-Countdown
|
13 |
+
|
14 |
+
This model is a fine-tuned version of [Qwen/Qwen2.5-3B-Instruct](https://huggingface.co/Qwen/Qwen2.5-3B-Instruct).
|
15 |
+
It has been trained using [TRL](https://github.com/huggingface/trl).
|
16 |
+
|
17 |
+
## Quick start
|
18 |
+
|
19 |
+
```python
|
20 |
+
from transformers import pipeline
|
21 |
+
|
22 |
+
question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
|
23 |
+
generator = pipeline("text-generation", model="JeffP111/Qwen2.5-3B-GRPO-Countdown", device="cuda")
|
24 |
+
output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
|
25 |
+
print(output["generated_text"])
|
26 |
+
```
|
27 |
+
|
28 |
+
## Training procedure
|
29 |
+
|
30 |
+
[<img src="https://raw.githubusercontent.com/wandb/assets/main/wandb-github-badge-28.svg" alt="Visualize in Weights & Biases" width="150" height="24"/>](https://wandb.ai/thishere/huggingface/runs/2vvpr4vn)
|
31 |
+
|
32 |
+
|
33 |
+
This model was trained with GRPO, a method introduced in [DeepSeekMath: Pushing the Limits of Mathematical Reasoning in Open Language Models](https://huggingface.co/papers/2402.03300).
|
34 |
+
|
35 |
+
### Framework versions
|
36 |
+
|
37 |
+
- TRL: 0.15.0.dev0
|
38 |
+
- Transformers: 4.49.0.dev0
|
39 |
+
- Pytorch: 2.5.1
|
40 |
+
- Datasets: 3.2.0
|
41 |
+
- Tokenizers: 0.21.0
|
42 |
+
|
43 |
+
## Citations
|
44 |
+
|
45 |
+
Cite GRPO as:
|
46 |
+
|
47 |
+
```bibtex
|
48 |
+
@article{zhihong2024deepseekmath,
|
49 |
+
title = {{DeepSeekMath: Pushing the Limits of Mathematical Reasoning in Open Language Models}},
|
50 |
+
author = {Zhihong Shao and Peiyi Wang and Qihao Zhu and Runxin Xu and Junxiao Song and Mingchuan Zhang and Y. K. Li and Y. Wu and Daya Guo},
|
51 |
+
year = 2024,
|
52 |
+
eprint = {arXiv:2402.03300},
|
53 |
+
}
|
54 |
+
|
55 |
+
```
|
56 |
+
|
57 |
+
Cite TRL as:
|
58 |
+
|
59 |
+
```bibtex
|
60 |
+
@misc{vonwerra2022trl,
|
61 |
+
title = {{TRL: Transformer Reinforcement Learning}},
|
62 |
+
author = {Leandro von Werra and Younes Belkada and Lewis Tunstall and Edward Beeching and Tristan Thrush and Nathan Lambert and Shengyi Huang and Kashif Rasul and Quentin Gallouédec},
|
63 |
+
year = 2020,
|
64 |
+
journal = {GitHub repository},
|
65 |
+
publisher = {GitHub},
|
66 |
+
howpublished = {\url{https://github.com/huggingface/trl}}
|
67 |
+
}
|
68 |
+
```
|
added_tokens.json
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"</tool_call>": 151658,
|
3 |
+
"<tool_call>": 151657,
|
4 |
+
"<|box_end|>": 151649,
|
5 |
+
"<|box_start|>": 151648,
|
6 |
+
"<|endoftext|>": 151643,
|
7 |
+
"<|file_sep|>": 151664,
|
8 |
+
"<|fim_middle|>": 151660,
|
9 |
+
"<|fim_pad|>": 151662,
|
10 |
+
"<|fim_prefix|>": 151659,
|
11 |
+
"<|fim_suffix|>": 151661,
|
12 |
+
"<|im_end|>": 151645,
|
13 |
+
"<|im_start|>": 151644,
|
14 |
+
"<|image_pad|>": 151655,
|
15 |
+
"<|object_ref_end|>": 151647,
|
16 |
+
"<|object_ref_start|>": 151646,
|
17 |
+
"<|quad_end|>": 151651,
|
18 |
+
"<|quad_start|>": 151650,
|
19 |
+
"<|repo_name|>": 151663,
|
20 |
+
"<|video_pad|>": 151656,
|
21 |
+
"<|vision_end|>": 151653,
|
22 |
+
"<|vision_pad|>": 151654,
|
23 |
+
"<|vision_start|>": 151652
|
24 |
+
}
|
all_results.json
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"total_flos": 0.0,
|
3 |
+
"train_loss": 253112.25296123006,
|
4 |
+
"train_runtime": 92260.7677,
|
5 |
+
"train_samples": 45000,
|
6 |
+
"train_samples_per_second": 0.488,
|
7 |
+
"train_steps_per_second": 0.004
|
8 |
+
}
|
config.json
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "Qwen/Qwen2.5-3B-Instruct",
|
3 |
+
"architectures": [
|
4 |
+
"Qwen2ForCausalLM"
|
5 |
+
],
|
6 |
+
"attention_dropout": 0.0,
|
7 |
+
"bos_token_id": 151643,
|
8 |
+
"eos_token_id": 151645,
|
9 |
+
"hidden_act": "silu",
|
10 |
+
"hidden_size": 2048,
|
11 |
+
"initializer_range": 0.02,
|
12 |
+
"intermediate_size": 11008,
|
13 |
+
"max_position_embeddings": 32768,
|
14 |
+
"max_window_layers": 70,
|
15 |
+
"model_type": "qwen2",
|
16 |
+
"num_attention_heads": 16,
|
17 |
+
"num_hidden_layers": 36,
|
18 |
+
"num_key_value_heads": 2,
|
19 |
+
"rms_norm_eps": 1e-06,
|
20 |
+
"rope_scaling": null,
|
21 |
+
"rope_theta": 1000000.0,
|
22 |
+
"sliding_window": null,
|
23 |
+
"tie_word_embeddings": true,
|
24 |
+
"torch_dtype": "bfloat16",
|
25 |
+
"transformers_version": "4.49.0.dev0",
|
26 |
+
"use_cache": false,
|
27 |
+
"use_sliding_window": false,
|
28 |
+
"vocab_size": 151936
|
29 |
+
}
|
generation_config.json
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bos_token_id": 151643,
|
3 |
+
"do_sample": true,
|
4 |
+
"eos_token_id": [
|
5 |
+
151645,
|
6 |
+
151643
|
7 |
+
],
|
8 |
+
"pad_token_id": 151643,
|
9 |
+
"repetition_penalty": 1.05,
|
10 |
+
"temperature": 0.7,
|
11 |
+
"top_k": 20,
|
12 |
+
"top_p": 0.8,
|
13 |
+
"transformers_version": "4.49.0.dev0"
|
14 |
+
}
|
merges.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
model-00001-of-00002.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4a110cbfb90bee62b04db86fc15e96f33ff6abf99beb28056c97a19b4f6e2502
|
3 |
+
size 4957560304
|
model-00002-of-00002.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d7c96a12490f20b9caf39faaa6a47a2df2539d35c70f5fdf418f99be93840766
|
3 |
+
size 1836696752
|
model.safetensors.index.json
ADDED
@@ -0,0 +1,442 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"metadata": {
|
3 |
+
"total_size": 6794207232
|
4 |
+
},
|
5 |
+
"weight_map": {
|
6 |
+
"lm_head.weight": "model-00002-of-00002.safetensors",
|
7 |
+
"model.embed_tokens.weight": "model-00001-of-00002.safetensors",
|
8 |
+
"model.layers.0.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
9 |
+
"model.layers.0.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
10 |
+
"model.layers.0.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
11 |
+
"model.layers.0.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
12 |
+
"model.layers.0.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
13 |
+
"model.layers.0.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
14 |
+
"model.layers.0.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
15 |
+
"model.layers.0.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
16 |
+
"model.layers.0.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
17 |
+
"model.layers.0.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
18 |
+
"model.layers.0.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
19 |
+
"model.layers.0.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
20 |
+
"model.layers.1.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
21 |
+
"model.layers.1.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
22 |
+
"model.layers.1.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
23 |
+
"model.layers.1.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
24 |
+
"model.layers.1.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
25 |
+
"model.layers.1.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
26 |
+
"model.layers.1.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
27 |
+
"model.layers.1.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
28 |
+
"model.layers.1.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
29 |
+
"model.layers.1.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
30 |
+
"model.layers.1.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
31 |
+
"model.layers.1.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
32 |
+
"model.layers.10.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
33 |
+
"model.layers.10.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
34 |
+
"model.layers.10.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
35 |
+
"model.layers.10.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
36 |
+
"model.layers.10.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
37 |
+
"model.layers.10.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
38 |
+
"model.layers.10.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
39 |
+
"model.layers.10.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
40 |
+
"model.layers.10.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
41 |
+
"model.layers.10.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
42 |
+
"model.layers.10.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
43 |
+
"model.layers.10.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
44 |
+
"model.layers.11.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
45 |
+
"model.layers.11.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
46 |
+
"model.layers.11.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
47 |
+
"model.layers.11.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
48 |
+
"model.layers.11.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
49 |
+
"model.layers.11.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
50 |
+
"model.layers.11.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
51 |
+
"model.layers.11.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
52 |
+
"model.layers.11.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
53 |
+
"model.layers.11.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
54 |
+
"model.layers.11.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
55 |
+
"model.layers.11.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
56 |
+
"model.layers.12.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
57 |
+
"model.layers.12.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
58 |
+
"model.layers.12.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
59 |
+
"model.layers.12.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
60 |
+
"model.layers.12.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
61 |
+
"model.layers.12.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
62 |
+
"model.layers.12.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
63 |
+
"model.layers.12.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
64 |
+
"model.layers.12.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
65 |
+
"model.layers.12.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
66 |
+
"model.layers.12.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
67 |
+
"model.layers.12.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
68 |
+
"model.layers.13.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
69 |
+
"model.layers.13.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
70 |
+
"model.layers.13.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
71 |
+
"model.layers.13.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
72 |
+
"model.layers.13.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
73 |
+
"model.layers.13.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
74 |
+
"model.layers.13.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
75 |
+
"model.layers.13.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
76 |
+
"model.layers.13.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
77 |
+
"model.layers.13.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
78 |
+
"model.layers.13.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
79 |
+
"model.layers.13.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
80 |
+
"model.layers.14.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
81 |
+
"model.layers.14.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
82 |
+
"model.layers.14.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
83 |
+
"model.layers.14.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
84 |
+
"model.layers.14.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
85 |
+
"model.layers.14.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
86 |
+
"model.layers.14.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
87 |
+
"model.layers.14.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
88 |
+
"model.layers.14.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
89 |
+
"model.layers.14.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
90 |
+
"model.layers.14.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
91 |
+
"model.layers.14.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
92 |
+
"model.layers.15.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
93 |
+
"model.layers.15.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
94 |
+
"model.layers.15.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
95 |
+
"model.layers.15.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
96 |
+
"model.layers.15.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
97 |
+
"model.layers.15.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
98 |
+
"model.layers.15.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
99 |
+
"model.layers.15.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
100 |
+
"model.layers.15.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
101 |
+
"model.layers.15.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
102 |
+
"model.layers.15.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
103 |
+
"model.layers.15.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
104 |
+
"model.layers.16.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
105 |
+
"model.layers.16.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
106 |
+
"model.layers.16.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
107 |
+
"model.layers.16.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
108 |
+
"model.layers.16.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
109 |
+
"model.layers.16.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
110 |
+
"model.layers.16.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
111 |
+
"model.layers.16.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
112 |
+
"model.layers.16.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
113 |
+
"model.layers.16.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
114 |
+
"model.layers.16.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
115 |
+
"model.layers.16.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
116 |
+
"model.layers.17.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
117 |
+
"model.layers.17.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
118 |
+
"model.layers.17.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
119 |
+
"model.layers.17.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
120 |
+
"model.layers.17.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
121 |
+
"model.layers.17.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
122 |
+
"model.layers.17.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
123 |
+
"model.layers.17.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
124 |
+
"model.layers.17.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
125 |
+
"model.layers.17.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
126 |
+
"model.layers.17.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
127 |
+
"model.layers.17.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
128 |
+
"model.layers.18.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
129 |
+
"model.layers.18.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
130 |
+
"model.layers.18.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
131 |
+
"model.layers.18.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
132 |
+
"model.layers.18.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
133 |
+
"model.layers.18.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
134 |
+
"model.layers.18.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
135 |
+
"model.layers.18.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
136 |
+
"model.layers.18.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
137 |
+
"model.layers.18.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
138 |
+
"model.layers.18.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
139 |
+
"model.layers.18.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
140 |
+
"model.layers.19.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
141 |
+
"model.layers.19.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
142 |
+
"model.layers.19.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
143 |
+
"model.layers.19.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
144 |
+
"model.layers.19.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
145 |
+
"model.layers.19.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
146 |
+
"model.layers.19.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
147 |
+
"model.layers.19.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
148 |
+
"model.layers.19.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
149 |
+
"model.layers.19.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
150 |
+
"model.layers.19.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
151 |
+
"model.layers.19.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
152 |
+
"model.layers.2.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
153 |
+
"model.layers.2.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
154 |
+
"model.layers.2.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
155 |
+
"model.layers.2.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
156 |
+
"model.layers.2.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
157 |
+
"model.layers.2.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
158 |
+
"model.layers.2.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
159 |
+
"model.layers.2.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
160 |
+
"model.layers.2.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
161 |
+
"model.layers.2.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
162 |
+
"model.layers.2.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
163 |
+
"model.layers.2.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
164 |
+
"model.layers.20.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
165 |
+
"model.layers.20.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
166 |
+
"model.layers.20.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
167 |
+
"model.layers.20.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
168 |
+
"model.layers.20.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
169 |
+
"model.layers.20.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
170 |
+
"model.layers.20.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
171 |
+
"model.layers.20.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
172 |
+
"model.layers.20.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
173 |
+
"model.layers.20.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
174 |
+
"model.layers.20.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
175 |
+
"model.layers.20.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
176 |
+
"model.layers.21.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
177 |
+
"model.layers.21.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
178 |
+
"model.layers.21.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
179 |
+
"model.layers.21.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
180 |
+
"model.layers.21.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
181 |
+
"model.layers.21.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
182 |
+
"model.layers.21.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
183 |
+
"model.layers.21.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
184 |
+
"model.layers.21.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
185 |
+
"model.layers.21.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
186 |
+
"model.layers.21.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
187 |
+
"model.layers.21.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
188 |
+
"model.layers.22.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
189 |
+
"model.layers.22.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
190 |
+
"model.layers.22.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
191 |
+
"model.layers.22.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
192 |
+
"model.layers.22.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
193 |
+
"model.layers.22.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
194 |
+
"model.layers.22.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
195 |
+
"model.layers.22.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
196 |
+
"model.layers.22.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
197 |
+
"model.layers.22.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
198 |
+
"model.layers.22.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
199 |
+
"model.layers.22.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
200 |
+
"model.layers.23.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
201 |
+
"model.layers.23.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
202 |
+
"model.layers.23.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
203 |
+
"model.layers.23.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
204 |
+
"model.layers.23.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
205 |
+
"model.layers.23.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
206 |
+
"model.layers.23.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
207 |
+
"model.layers.23.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
208 |
+
"model.layers.23.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
209 |
+
"model.layers.23.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
210 |
+
"model.layers.23.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
211 |
+
"model.layers.23.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
212 |
+
"model.layers.24.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
213 |
+
"model.layers.24.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
214 |
+
"model.layers.24.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
215 |
+
"model.layers.24.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
216 |
+
"model.layers.24.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
217 |
+
"model.layers.24.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
218 |
+
"model.layers.24.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
219 |
+
"model.layers.24.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
220 |
+
"model.layers.24.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
221 |
+
"model.layers.24.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
222 |
+
"model.layers.24.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
223 |
+
"model.layers.24.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
224 |
+
"model.layers.25.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
225 |
+
"model.layers.25.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
226 |
+
"model.layers.25.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
227 |
+
"model.layers.25.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
228 |
+
"model.layers.25.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
229 |
+
"model.layers.25.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
230 |
+
"model.layers.25.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
231 |
+
"model.layers.25.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
232 |
+
"model.layers.25.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
233 |
+
"model.layers.25.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
234 |
+
"model.layers.25.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
235 |
+
"model.layers.25.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
236 |
+
"model.layers.26.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
237 |
+
"model.layers.26.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
238 |
+
"model.layers.26.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
239 |
+
"model.layers.26.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
240 |
+
"model.layers.26.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
241 |
+
"model.layers.26.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
242 |
+
"model.layers.26.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
243 |
+
"model.layers.26.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
244 |
+
"model.layers.26.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
245 |
+
"model.layers.26.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
246 |
+
"model.layers.26.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
247 |
+
"model.layers.26.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
248 |
+
"model.layers.27.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
249 |
+
"model.layers.27.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
250 |
+
"model.layers.27.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
251 |
+
"model.layers.27.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
252 |
+
"model.layers.27.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
253 |
+
"model.layers.27.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
254 |
+
"model.layers.27.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
255 |
+
"model.layers.27.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
256 |
+
"model.layers.27.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
257 |
+
"model.layers.27.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
258 |
+
"model.layers.27.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
259 |
+
"model.layers.27.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
260 |
+
"model.layers.28.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
261 |
+
"model.layers.28.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
262 |
+
"model.layers.28.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
263 |
+
"model.layers.28.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
264 |
+
"model.layers.28.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
265 |
+
"model.layers.28.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
266 |
+
"model.layers.28.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
267 |
+
"model.layers.28.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
268 |
+
"model.layers.28.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
269 |
+
"model.layers.28.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
270 |
+
"model.layers.28.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
271 |
+
"model.layers.28.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
272 |
+
"model.layers.29.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
273 |
+
"model.layers.29.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
274 |
+
"model.layers.29.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
275 |
+
"model.layers.29.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
276 |
+
"model.layers.29.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
277 |
+
"model.layers.29.self_attn.k_proj.bias": "model-00002-of-00002.safetensors",
|
278 |
+
"model.layers.29.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
279 |
+
"model.layers.29.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
280 |
+
"model.layers.29.self_attn.q_proj.bias": "model-00002-of-00002.safetensors",
|
281 |
+
"model.layers.29.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
282 |
+
"model.layers.29.self_attn.v_proj.bias": "model-00002-of-00002.safetensors",
|
283 |
+
"model.layers.29.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
284 |
+
"model.layers.3.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
285 |
+
"model.layers.3.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
286 |
+
"model.layers.3.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
287 |
+
"model.layers.3.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
288 |
+
"model.layers.3.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
289 |
+
"model.layers.3.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
290 |
+
"model.layers.3.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
291 |
+
"model.layers.3.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
292 |
+
"model.layers.3.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
293 |
+
"model.layers.3.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
294 |
+
"model.layers.3.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
295 |
+
"model.layers.3.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
296 |
+
"model.layers.30.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
297 |
+
"model.layers.30.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
298 |
+
"model.layers.30.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
299 |
+
"model.layers.30.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
300 |
+
"model.layers.30.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
301 |
+
"model.layers.30.self_attn.k_proj.bias": "model-00002-of-00002.safetensors",
|
302 |
+
"model.layers.30.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
303 |
+
"model.layers.30.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
304 |
+
"model.layers.30.self_attn.q_proj.bias": "model-00002-of-00002.safetensors",
|
305 |
+
"model.layers.30.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
306 |
+
"model.layers.30.self_attn.v_proj.bias": "model-00002-of-00002.safetensors",
|
307 |
+
"model.layers.30.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
308 |
+
"model.layers.31.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
309 |
+
"model.layers.31.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
310 |
+
"model.layers.31.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
311 |
+
"model.layers.31.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
312 |
+
"model.layers.31.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
313 |
+
"model.layers.31.self_attn.k_proj.bias": "model-00002-of-00002.safetensors",
|
314 |
+
"model.layers.31.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
315 |
+
"model.layers.31.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
316 |
+
"model.layers.31.self_attn.q_proj.bias": "model-00002-of-00002.safetensors",
|
317 |
+
"model.layers.31.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
318 |
+
"model.layers.31.self_attn.v_proj.bias": "model-00002-of-00002.safetensors",
|
319 |
+
"model.layers.31.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
320 |
+
"model.layers.32.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
321 |
+
"model.layers.32.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
322 |
+
"model.layers.32.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
323 |
+
"model.layers.32.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
324 |
+
"model.layers.32.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
325 |
+
"model.layers.32.self_attn.k_proj.bias": "model-00002-of-00002.safetensors",
|
326 |
+
"model.layers.32.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
327 |
+
"model.layers.32.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
328 |
+
"model.layers.32.self_attn.q_proj.bias": "model-00002-of-00002.safetensors",
|
329 |
+
"model.layers.32.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
330 |
+
"model.layers.32.self_attn.v_proj.bias": "model-00002-of-00002.safetensors",
|
331 |
+
"model.layers.32.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
332 |
+
"model.layers.33.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
333 |
+
"model.layers.33.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
334 |
+
"model.layers.33.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
335 |
+
"model.layers.33.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
336 |
+
"model.layers.33.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
337 |
+
"model.layers.33.self_attn.k_proj.bias": "model-00002-of-00002.safetensors",
|
338 |
+
"model.layers.33.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
339 |
+
"model.layers.33.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
340 |
+
"model.layers.33.self_attn.q_proj.bias": "model-00002-of-00002.safetensors",
|
341 |
+
"model.layers.33.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
342 |
+
"model.layers.33.self_attn.v_proj.bias": "model-00002-of-00002.safetensors",
|
343 |
+
"model.layers.33.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
344 |
+
"model.layers.34.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
345 |
+
"model.layers.34.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
346 |
+
"model.layers.34.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
347 |
+
"model.layers.34.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
348 |
+
"model.layers.34.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
349 |
+
"model.layers.34.self_attn.k_proj.bias": "model-00002-of-00002.safetensors",
|
350 |
+
"model.layers.34.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
351 |
+
"model.layers.34.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
352 |
+
"model.layers.34.self_attn.q_proj.bias": "model-00002-of-00002.safetensors",
|
353 |
+
"model.layers.34.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
354 |
+
"model.layers.34.self_attn.v_proj.bias": "model-00002-of-00002.safetensors",
|
355 |
+
"model.layers.34.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
356 |
+
"model.layers.35.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
357 |
+
"model.layers.35.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
358 |
+
"model.layers.35.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
359 |
+
"model.layers.35.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
360 |
+
"model.layers.35.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
361 |
+
"model.layers.35.self_attn.k_proj.bias": "model-00002-of-00002.safetensors",
|
362 |
+
"model.layers.35.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
363 |
+
"model.layers.35.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
364 |
+
"model.layers.35.self_attn.q_proj.bias": "model-00002-of-00002.safetensors",
|
365 |
+
"model.layers.35.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
366 |
+
"model.layers.35.self_attn.v_proj.bias": "model-00002-of-00002.safetensors",
|
367 |
+
"model.layers.35.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
368 |
+
"model.layers.4.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
369 |
+
"model.layers.4.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
370 |
+
"model.layers.4.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
371 |
+
"model.layers.4.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
372 |
+
"model.layers.4.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
373 |
+
"model.layers.4.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
374 |
+
"model.layers.4.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
375 |
+
"model.layers.4.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
376 |
+
"model.layers.4.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
377 |
+
"model.layers.4.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
378 |
+
"model.layers.4.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
379 |
+
"model.layers.4.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
380 |
+
"model.layers.5.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
381 |
+
"model.layers.5.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
382 |
+
"model.layers.5.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
383 |
+
"model.layers.5.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
384 |
+
"model.layers.5.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
385 |
+
"model.layers.5.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
386 |
+
"model.layers.5.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
387 |
+
"model.layers.5.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
388 |
+
"model.layers.5.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
389 |
+
"model.layers.5.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
390 |
+
"model.layers.5.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
391 |
+
"model.layers.5.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
392 |
+
"model.layers.6.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
393 |
+
"model.layers.6.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
394 |
+
"model.layers.6.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
395 |
+
"model.layers.6.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
396 |
+
"model.layers.6.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
397 |
+
"model.layers.6.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
398 |
+
"model.layers.6.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
399 |
+
"model.layers.6.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
400 |
+
"model.layers.6.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
401 |
+
"model.layers.6.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
402 |
+
"model.layers.6.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
403 |
+
"model.layers.6.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
404 |
+
"model.layers.7.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
405 |
+
"model.layers.7.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
406 |
+
"model.layers.7.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
407 |
+
"model.layers.7.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
408 |
+
"model.layers.7.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
409 |
+
"model.layers.7.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
410 |
+
"model.layers.7.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
411 |
+
"model.layers.7.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
412 |
+
"model.layers.7.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
413 |
+
"model.layers.7.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
414 |
+
"model.layers.7.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
415 |
+
"model.layers.7.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
416 |
+
"model.layers.8.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
417 |
+
"model.layers.8.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
418 |
+
"model.layers.8.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
419 |
+
"model.layers.8.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
420 |
+
"model.layers.8.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
421 |
+
"model.layers.8.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
422 |
+
"model.layers.8.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
423 |
+
"model.layers.8.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
424 |
+
"model.layers.8.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
425 |
+
"model.layers.8.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
426 |
+
"model.layers.8.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
427 |
+
"model.layers.8.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
428 |
+
"model.layers.9.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
429 |
+
"model.layers.9.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
430 |
+
"model.layers.9.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
431 |
+
"model.layers.9.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
432 |
+
"model.layers.9.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
433 |
+
"model.layers.9.self_attn.k_proj.bias": "model-00001-of-00002.safetensors",
|
434 |
+
"model.layers.9.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
435 |
+
"model.layers.9.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
436 |
+
"model.layers.9.self_attn.q_proj.bias": "model-00001-of-00002.safetensors",
|
437 |
+
"model.layers.9.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
438 |
+
"model.layers.9.self_attn.v_proj.bias": "model-00001-of-00002.safetensors",
|
439 |
+
"model.layers.9.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
440 |
+
"model.norm.weight": "model-00002-of-00002.safetensors"
|
441 |
+
}
|
442 |
+
}
|
special_tokens_map.json
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"additional_special_tokens": [
|
3 |
+
"<|im_start|>",
|
4 |
+
"<|im_end|>",
|
5 |
+
"<|object_ref_start|>",
|
6 |
+
"<|object_ref_end|>",
|
7 |
+
"<|box_start|>",
|
8 |
+
"<|box_end|>",
|
9 |
+
"<|quad_start|>",
|
10 |
+
"<|quad_end|>",
|
11 |
+
"<|vision_start|>",
|
12 |
+
"<|vision_end|>",
|
13 |
+
"<|vision_pad|>",
|
14 |
+
"<|image_pad|>",
|
15 |
+
"<|video_pad|>"
|
16 |
+
],
|
17 |
+
"eos_token": {
|
18 |
+
"content": "<|im_end|>",
|
19 |
+
"lstrip": false,
|
20 |
+
"normalized": false,
|
21 |
+
"rstrip": false,
|
22 |
+
"single_word": false
|
23 |
+
},
|
24 |
+
"pad_token": {
|
25 |
+
"content": "<|endoftext|>",
|
26 |
+
"lstrip": false,
|
27 |
+
"normalized": false,
|
28 |
+
"rstrip": false,
|
29 |
+
"single_word": false
|
30 |
+
}
|
31 |
+
}
|
tokenizer.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5eee858c5123a4279c3e1f7b81247343f356ac767940b2692a928ad929543214
|
3 |
+
size 11422063
|
tokenizer_config.json
ADDED
@@ -0,0 +1,209 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"add_bos_token": false,
|
3 |
+
"add_prefix_space": false,
|
4 |
+
"added_tokens_decoder": {
|
5 |
+
"151643": {
|
6 |
+
"content": "<|endoftext|>",
|
7 |
+
"lstrip": false,
|
8 |
+
"normalized": false,
|
9 |
+
"rstrip": false,
|
10 |
+
"single_word": false,
|
11 |
+
"special": true
|
12 |
+
},
|
13 |
+
"151644": {
|
14 |
+
"content": "<|im_start|>",
|
15 |
+
"lstrip": false,
|
16 |
+
"normalized": false,
|
17 |
+
"rstrip": false,
|
18 |
+
"single_word": false,
|
19 |
+
"special": true
|
20 |
+
},
|
21 |
+
"151645": {
|
22 |
+
"content": "<|im_end|>",
|
23 |
+
"lstrip": false,
|
24 |
+
"normalized": false,
|
25 |
+
"rstrip": false,
|
26 |
+
"single_word": false,
|
27 |
+
"special": true
|
28 |
+
},
|
29 |
+
"151646": {
|
30 |
+
"content": "<|object_ref_start|>",
|
31 |
+
"lstrip": false,
|
32 |
+
"normalized": false,
|
33 |
+
"rstrip": false,
|
34 |
+
"single_word": false,
|
35 |
+
"special": true
|
36 |
+
},
|
37 |
+
"151647": {
|
38 |
+
"content": "<|object_ref_end|>",
|
39 |
+
"lstrip": false,
|
40 |
+
"normalized": false,
|
41 |
+
"rstrip": false,
|
42 |
+
"single_word": false,
|
43 |
+
"special": true
|
44 |
+
},
|
45 |
+
"151648": {
|
46 |
+
"content": "<|box_start|>",
|
47 |
+
"lstrip": false,
|
48 |
+
"normalized": false,
|
49 |
+
"rstrip": false,
|
50 |
+
"single_word": false,
|
51 |
+
"special": true
|
52 |
+
},
|
53 |
+
"151649": {
|
54 |
+
"content": "<|box_end|>",
|
55 |
+
"lstrip": false,
|
56 |
+
"normalized": false,
|
57 |
+
"rstrip": false,
|
58 |
+
"single_word": false,
|
59 |
+
"special": true
|
60 |
+
},
|
61 |
+
"151650": {
|
62 |
+
"content": "<|quad_start|>",
|
63 |
+
"lstrip": false,
|
64 |
+
"normalized": false,
|
65 |
+
"rstrip": false,
|
66 |
+
"single_word": false,
|
67 |
+
"special": true
|
68 |
+
},
|
69 |
+
"151651": {
|
70 |
+
"content": "<|quad_end|>",
|
71 |
+
"lstrip": false,
|
72 |
+
"normalized": false,
|
73 |
+
"rstrip": false,
|
74 |
+
"single_word": false,
|
75 |
+
"special": true
|
76 |
+
},
|
77 |
+
"151652": {
|
78 |
+
"content": "<|vision_start|>",
|
79 |
+
"lstrip": false,
|
80 |
+
"normalized": false,
|
81 |
+
"rstrip": false,
|
82 |
+
"single_word": false,
|
83 |
+
"special": true
|
84 |
+
},
|
85 |
+
"151653": {
|
86 |
+
"content": "<|vision_end|>",
|
87 |
+
"lstrip": false,
|
88 |
+
"normalized": false,
|
89 |
+
"rstrip": false,
|
90 |
+
"single_word": false,
|
91 |
+
"special": true
|
92 |
+
},
|
93 |
+
"151654": {
|
94 |
+
"content": "<|vision_pad|>",
|
95 |
+
"lstrip": false,
|
96 |
+
"normalized": false,
|
97 |
+
"rstrip": false,
|
98 |
+
"single_word": false,
|
99 |
+
"special": true
|
100 |
+
},
|
101 |
+
"151655": {
|
102 |
+
"content": "<|image_pad|>",
|
103 |
+
"lstrip": false,
|
104 |
+
"normalized": false,
|
105 |
+
"rstrip": false,
|
106 |
+
"single_word": false,
|
107 |
+
"special": true
|
108 |
+
},
|
109 |
+
"151656": {
|
110 |
+
"content": "<|video_pad|>",
|
111 |
+
"lstrip": false,
|
112 |
+
"normalized": false,
|
113 |
+
"rstrip": false,
|
114 |
+
"single_word": false,
|
115 |
+
"special": true
|
116 |
+
},
|
117 |
+
"151657": {
|
118 |
+
"content": "<tool_call>",
|
119 |
+
"lstrip": false,
|
120 |
+
"normalized": false,
|
121 |
+
"rstrip": false,
|
122 |
+
"single_word": false,
|
123 |
+
"special": false
|
124 |
+
},
|
125 |
+
"151658": {
|
126 |
+
"content": "</tool_call>",
|
127 |
+
"lstrip": false,
|
128 |
+
"normalized": false,
|
129 |
+
"rstrip": false,
|
130 |
+
"single_word": false,
|
131 |
+
"special": false
|
132 |
+
},
|
133 |
+
"151659": {
|
134 |
+
"content": "<|fim_prefix|>",
|
135 |
+
"lstrip": false,
|
136 |
+
"normalized": false,
|
137 |
+
"rstrip": false,
|
138 |
+
"single_word": false,
|
139 |
+
"special": false
|
140 |
+
},
|
141 |
+
"151660": {
|
142 |
+
"content": "<|fim_middle|>",
|
143 |
+
"lstrip": false,
|
144 |
+
"normalized": false,
|
145 |
+
"rstrip": false,
|
146 |
+
"single_word": false,
|
147 |
+
"special": false
|
148 |
+
},
|
149 |
+
"151661": {
|
150 |
+
"content": "<|fim_suffix|>",
|
151 |
+
"lstrip": false,
|
152 |
+
"normalized": false,
|
153 |
+
"rstrip": false,
|
154 |
+
"single_word": false,
|
155 |
+
"special": false
|
156 |
+
},
|
157 |
+
"151662": {
|
158 |
+
"content": "<|fim_pad|>",
|
159 |
+
"lstrip": false,
|
160 |
+
"normalized": false,
|
161 |
+
"rstrip": false,
|
162 |
+
"single_word": false,
|
163 |
+
"special": false
|
164 |
+
},
|
165 |
+
"151663": {
|
166 |
+
"content": "<|repo_name|>",
|
167 |
+
"lstrip": false,
|
168 |
+
"normalized": false,
|
169 |
+
"rstrip": false,
|
170 |
+
"single_word": false,
|
171 |
+
"special": false
|
172 |
+
},
|
173 |
+
"151664": {
|
174 |
+
"content": "<|file_sep|>",
|
175 |
+
"lstrip": false,
|
176 |
+
"normalized": false,
|
177 |
+
"rstrip": false,
|
178 |
+
"single_word": false,
|
179 |
+
"special": false
|
180 |
+
}
|
181 |
+
},
|
182 |
+
"additional_special_tokens": [
|
183 |
+
"<|im_start|>",
|
184 |
+
"<|im_end|>",
|
185 |
+
"<|object_ref_start|>",
|
186 |
+
"<|object_ref_end|>",
|
187 |
+
"<|box_start|>",
|
188 |
+
"<|box_end|>",
|
189 |
+
"<|quad_start|>",
|
190 |
+
"<|quad_end|>",
|
191 |
+
"<|vision_start|>",
|
192 |
+
"<|vision_end|>",
|
193 |
+
"<|vision_pad|>",
|
194 |
+
"<|image_pad|>",
|
195 |
+
"<|video_pad|>"
|
196 |
+
],
|
197 |
+
"bos_token": null,
|
198 |
+
"chat_template": "{%- if tools %}\n {{- '<|im_start|>system\\n' }}\n {%- if messages[0]['role'] == 'system' %}\n {{- messages[0]['content'] }}\n {%- else %}\n {{- 'You are Qwen, created by Alibaba Cloud. You are a helpful assistant.' }}\n {%- endif %}\n {{- \"\\n\\n# Tools\\n\\nYou may call one or more functions to assist with the user query.\\n\\nYou are provided with function signatures within <tools></tools> XML tags:\\n<tools>\" }}\n {%- for tool in tools %}\n {{- \"\\n\" }}\n {{- tool | tojson }}\n {%- endfor %}\n {{- \"\\n</tools>\\n\\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\\n<tool_call>\\n{\\\"name\\\": <function-name>, \\\"arguments\\\": <args-json-object>}\\n</tool_call><|im_end|>\\n\" }}\n{%- else %}\n {%- if messages[0]['role'] == 'system' %}\n {{- '<|im_start|>system\\n' + messages[0]['content'] + '<|im_end|>\\n' }}\n {%- else %}\n {{- '<|im_start|>system\\nYou are Qwen, created by Alibaba Cloud. You are a helpful assistant.<|im_end|>\\n' }}\n {%- endif %}\n{%- endif %}\n{%- for message in messages %}\n {%- if (message.role == \"user\") or (message.role == \"system\" and not loop.first) or (message.role == \"assistant\" and not message.tool_calls) %}\n {{- '<|im_start|>' + message.role + '\\n' + message.content + '<|im_end|>' + '\\n' }}\n {%- elif message.role == \"assistant\" %}\n {{- '<|im_start|>' + message.role }}\n {%- if message.content %}\n {{- '\\n' + message.content }}\n {%- endif %}\n {%- for tool_call in message.tool_calls %}\n {%- if tool_call.function is defined %}\n {%- set tool_call = tool_call.function %}\n {%- endif %}\n {{- '\\n<tool_call>\\n{\"name\": \"' }}\n {{- tool_call.name }}\n {{- '\", \"arguments\": ' }}\n {{- tool_call.arguments | tojson }}\n {{- '}\\n</tool_call>' }}\n {%- endfor %}\n {{- '<|im_end|>\\n' }}\n {%- elif message.role == \"tool\" %}\n {%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != \"tool\") %}\n {{- '<|im_start|>user' }}\n {%- endif %}\n {{- '\\n<tool_response>\\n' }}\n {{- message.content }}\n {{- '\\n</tool_response>' }}\n {%- if loop.last or (messages[loop.index0 + 1].role != \"tool\") %}\n {{- '<|im_end|>\\n' }}\n {%- endif %}\n {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n {{- '<|im_start|>assistant\\n' }}\n{%- endif %}\n",
|
199 |
+
"clean_up_tokenization_spaces": false,
|
200 |
+
"eos_token": "<|im_end|>",
|
201 |
+
"errors": "replace",
|
202 |
+
"extra_special_tokens": {},
|
203 |
+
"model_max_length": 131072,
|
204 |
+
"pad_token": "<|endoftext|>",
|
205 |
+
"padding_side": "left",
|
206 |
+
"split_special_tokens": false,
|
207 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
208 |
+
"unk_token": null
|
209 |
+
}
|
train_results.json
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"total_flos": 0.0,
|
3 |
+
"train_loss": 253112.25296123006,
|
4 |
+
"train_runtime": 92260.7677,
|
5 |
+
"train_samples": 45000,
|
6 |
+
"train_samples_per_second": 0.488,
|
7 |
+
"train_steps_per_second": 0.004
|
8 |
+
}
|
trainer_state.json
ADDED
@@ -0,0 +1,624 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"best_metric": null,
|
3 |
+
"best_model_checkpoint": null,
|
4 |
+
"epoch": 0.9979779125836056,
|
5 |
+
"eval_steps": 100,
|
6 |
+
"global_step": 401,
|
7 |
+
"is_hyper_param_search": false,
|
8 |
+
"is_local_process_zero": true,
|
9 |
+
"is_world_process_zero": true,
|
10 |
+
"log_history": [
|
11 |
+
{
|
12 |
+
"completion_length": 445.60470695495604,
|
13 |
+
"epoch": 0.02488722974023954,
|
14 |
+
"grad_norm": 0.4118676483631134,
|
15 |
+
"kl": 0.010468816757202149,
|
16 |
+
"learning_rate": 4.8780487804878055e-06,
|
17 |
+
"loss": 0.0004,
|
18 |
+
"reward": 0.6772321731783449,
|
19 |
+
"reward_std": 0.40852332254871726,
|
20 |
+
"rewards/equation_reward_func": 0.07633928939467297,
|
21 |
+
"rewards/format_reward_func": 0.6008928816765546,
|
22 |
+
"step": 10
|
23 |
+
},
|
24 |
+
{
|
25 |
+
"completion_length": 277.97166414260863,
|
26 |
+
"epoch": 0.04977445948047908,
|
27 |
+
"grad_norm": 0.3340870440006256,
|
28 |
+
"kl": 0.08794097900390625,
|
29 |
+
"learning_rate": 9.756097560975611e-06,
|
30 |
+
"loss": 0.0035,
|
31 |
+
"reward": 1.1737723745405675,
|
32 |
+
"reward_std": 0.2244849470909685,
|
33 |
+
"rewards/equation_reward_func": 0.18337054466828703,
|
34 |
+
"rewards/format_reward_func": 0.9904018051922321,
|
35 |
+
"step": 20
|
36 |
+
},
|
37 |
+
{
|
38 |
+
"completion_length": 358.0676491737366,
|
39 |
+
"epoch": 0.07466168922071861,
|
40 |
+
"grad_norm": 403145293824.0,
|
41 |
+
"kl": 251659428.747583,
|
42 |
+
"learning_rate": 1.4634146341463415e-05,
|
43 |
+
"loss": 10058519.2,
|
44 |
+
"reward": 1.1559152286499739,
|
45 |
+
"reward_std": 0.3308718525338918,
|
46 |
+
"rewards/equation_reward_func": 0.20848215216537938,
|
47 |
+
"rewards/format_reward_func": 0.9474330730736256,
|
48 |
+
"step": 30
|
49 |
+
},
|
50 |
+
{
|
51 |
+
"completion_length": 173.60179430246353,
|
52 |
+
"epoch": 0.09954891896095816,
|
53 |
+
"grad_norm": 33.38664627075195,
|
54 |
+
"kl": 1592.3597778320313,
|
55 |
+
"learning_rate": 1.9512195121951222e-05,
|
56 |
+
"loss": 63.6938,
|
57 |
+
"reward": 0.9162946855649352,
|
58 |
+
"reward_std": 0.4809370403178036,
|
59 |
+
"rewards/equation_reward_func": 0.1517857214785181,
|
60 |
+
"rewards/format_reward_func": 0.7645089654251933,
|
61 |
+
"step": 40
|
62 |
+
},
|
63 |
+
{
|
64 |
+
"completion_length": 105.79074110984803,
|
65 |
+
"epoch": 0.1244361487011977,
|
66 |
+
"grad_norm": 669.1779174804688,
|
67 |
+
"kl": 19.69697265625,
|
68 |
+
"learning_rate": 1.9969173337331283e-05,
|
69 |
+
"loss": 0.7874,
|
70 |
+
"reward": 0.621205386845395,
|
71 |
+
"reward_std": 0.49133867099881173,
|
72 |
+
"rewards/equation_reward_func": 0.14754464910365642,
|
73 |
+
"rewards/format_reward_func": 0.4736607360187918,
|
74 |
+
"step": 50
|
75 |
+
},
|
76 |
+
{
|
77 |
+
"completion_length": 179.40748615264891,
|
78 |
+
"epoch": 0.14932337844143723,
|
79 |
+
"grad_norm": 0.7297883033752441,
|
80 |
+
"kl": 3413.1394775390627,
|
81 |
+
"learning_rate": 1.9862856015372315e-05,
|
82 |
+
"loss": 136.4553,
|
83 |
+
"reward": 0.7706473573809489,
|
84 |
+
"reward_std": 0.3035780142992735,
|
85 |
+
"rewards/equation_reward_func": 0.1546875070547685,
|
86 |
+
"rewards/format_reward_func": 0.6159598465193994,
|
87 |
+
"step": 60
|
88 |
+
},
|
89 |
+
{
|
90 |
+
"completion_length": 74.70770426988602,
|
91 |
+
"epoch": 0.17421060818167677,
|
92 |
+
"grad_norm": 7532.27197265625,
|
93 |
+
"kl": 47.843603515625,
|
94 |
+
"learning_rate": 1.968147640378108e-05,
|
95 |
+
"loss": 1.9131,
|
96 |
+
"reward": 0.9377232604194432,
|
97 |
+
"reward_std": 0.23382538077421486,
|
98 |
+
"rewards/equation_reward_func": 0.17332590045407414,
|
99 |
+
"rewards/format_reward_func": 0.7643973479513079,
|
100 |
+
"step": 70
|
101 |
+
},
|
102 |
+
{
|
103 |
+
"completion_length": 107.71473670005798,
|
104 |
+
"epoch": 0.19909783792191632,
|
105 |
+
"grad_norm": 155.04930114746094,
|
106 |
+
"kl": 0.835009765625,
|
107 |
+
"learning_rate": 1.9426414910921785e-05,
|
108 |
+
"loss": 0.0334,
|
109 |
+
"reward": 1.1287946943193674,
|
110 |
+
"reward_std": 0.2256626692134887,
|
111 |
+
"rewards/equation_reward_func": 0.1746651871711947,
|
112 |
+
"rewards/format_reward_func": 0.9541295003145933,
|
113 |
+
"step": 80
|
114 |
+
},
|
115 |
+
{
|
116 |
+
"completion_length": 149.29431443214418,
|
117 |
+
"epoch": 0.22398506766215587,
|
118 |
+
"grad_norm": 0.2778171896934509,
|
119 |
+
"kl": 0.97703857421875,
|
120 |
+
"learning_rate": 1.9099612708765432e-05,
|
121 |
+
"loss": 0.039,
|
122 |
+
"reward": 1.1264509385451675,
|
123 |
+
"reward_std": 0.24302657530643046,
|
124 |
+
"rewards/equation_reward_func": 0.1992187604191713,
|
125 |
+
"rewards/format_reward_func": 0.9272321715950966,
|
126 |
+
"step": 90
|
127 |
+
},
|
128 |
+
{
|
129 |
+
"completion_length": 127.52388949394226,
|
130 |
+
"epoch": 0.2488722974023954,
|
131 |
+
"grad_norm": 0.2528281807899475,
|
132 |
+
"kl": 0.5005126953125,
|
133 |
+
"learning_rate": 1.8703556959398998e-05,
|
134 |
+
"loss": 0.02,
|
135 |
+
"reward": 1.1936384476721287,
|
136 |
+
"reward_std": 0.21707446863874794,
|
137 |
+
"rewards/equation_reward_func": 0.21194197433069348,
|
138 |
+
"rewards/format_reward_func": 0.9816964585334063,
|
139 |
+
"step": 100
|
140 |
+
},
|
141 |
+
{
|
142 |
+
"epoch": 0.2488722974023954,
|
143 |
+
"eval_completion_length": 159.91052135275729,
|
144 |
+
"eval_kl": 0.4822254713687151,
|
145 |
+
"eval_loss": 0.019292756915092468,
|
146 |
+
"eval_reward": 1.2420940272634922,
|
147 |
+
"eval_reward_std": 0.21879247122303733,
|
148 |
+
"eval_rewards/equation_reward_func": 0.2618465799442883,
|
149 |
+
"eval_rewards/format_reward_func": 0.980247448609528,
|
150 |
+
"eval_runtime": 2096.9421,
|
151 |
+
"eval_samples_per_second": 2.384,
|
152 |
+
"eval_steps_per_second": 0.085,
|
153 |
+
"step": 100
|
154 |
+
},
|
155 |
+
{
|
156 |
+
"completion_length": 197.92512073516846,
|
157 |
+
"epoch": 0.27375952714263496,
|
158 |
+
"grad_norm": 0.1797320544719696,
|
159 |
+
"kl": 0.44224853515625,
|
160 |
+
"learning_rate": 1.8241261886220155e-05,
|
161 |
+
"loss": 0.0177,
|
162 |
+
"reward": 1.290513451397419,
|
163 |
+
"reward_std": 0.20567998164333404,
|
164 |
+
"rewards/equation_reward_func": 0.3102678721304983,
|
165 |
+
"rewards/format_reward_func": 0.9802455704659223,
|
166 |
+
"step": 110
|
167 |
+
},
|
168 |
+
{
|
169 |
+
"completion_length": 362.7595027923584,
|
170 |
+
"epoch": 0.29864675688287445,
|
171 |
+
"grad_norm": 0.15794633328914642,
|
172 |
+
"kl": 2280653.147998047,
|
173 |
+
"learning_rate": 1.7716245833877202e-05,
|
174 |
+
"loss": 91078.7812,
|
175 |
+
"reward": 1.2590402327477932,
|
176 |
+
"reward_std": 0.1803759267553687,
|
177 |
+
"rewards/equation_reward_func": 0.2713169776368886,
|
178 |
+
"rewards/format_reward_func": 0.9877232406288385,
|
179 |
+
"step": 120
|
180 |
+
},
|
181 |
+
{
|
182 |
+
"completion_length": 328.3310419082642,
|
183 |
+
"epoch": 0.323533986623114,
|
184 |
+
"grad_norm": 7.756823539733887,
|
185 |
+
"kl": 0.4082275390625,
|
186 |
+
"learning_rate": 1.713250449154182e-05,
|
187 |
+
"loss": 0.0163,
|
188 |
+
"reward": 1.27165184058249,
|
189 |
+
"reward_std": 0.20182186937890947,
|
190 |
+
"rewards/equation_reward_func": 0.2963169774971902,
|
191 |
+
"rewards/format_reward_func": 0.9753348492085934,
|
192 |
+
"step": 130
|
193 |
+
},
|
194 |
+
{
|
195 |
+
"completion_length": 211.79688444137574,
|
196 |
+
"epoch": 0.34842121636335355,
|
197 |
+
"grad_norm": 0.22612209618091583,
|
198 |
+
"kl": 0.353564453125,
|
199 |
+
"learning_rate": 1.6494480483301836e-05,
|
200 |
+
"loss": 0.0141,
|
201 |
+
"reward": 1.2380580876022578,
|
202 |
+
"reward_std": 0.24032357237301766,
|
203 |
+
"rewards/equation_reward_func": 0.29475447952281686,
|
204 |
+
"rewards/format_reward_func": 0.943303607776761,
|
205 |
+
"step": 140
|
206 |
+
},
|
207 |
+
{
|
208 |
+
"completion_length": 154.25938205718995,
|
209 |
+
"epoch": 0.3733084461035931,
|
210 |
+
"grad_norm": 0.3829492926597595,
|
211 |
+
"kl": 0.32027587890625,
|
212 |
+
"learning_rate": 1.5807029557109398e-05,
|
213 |
+
"loss": 0.0128,
|
214 |
+
"reward": 1.2484375584870577,
|
215 |
+
"reward_std": 0.17919168020598591,
|
216 |
+
"rewards/equation_reward_func": 0.2755580496159382,
|
217 |
+
"rewards/format_reward_func": 0.9728794828057289,
|
218 |
+
"step": 150
|
219 |
+
},
|
220 |
+
{
|
221 |
+
"completion_length": 235.15280055999756,
|
222 |
+
"epoch": 0.39819567584383264,
|
223 |
+
"grad_norm": 0.23761987686157227,
|
224 |
+
"kl": 0.42236328125,
|
225 |
+
"learning_rate": 1.5075383629607043e-05,
|
226 |
+
"loss": 0.0169,
|
227 |
+
"reward": 1.2582589872181416,
|
228 |
+
"reward_std": 0.19487255290150643,
|
229 |
+
"rewards/equation_reward_func": 0.30011162179289386,
|
230 |
+
"rewards/format_reward_func": 0.9581473525613546,
|
231 |
+
"step": 160
|
232 |
+
},
|
233 |
+
{
|
234 |
+
"completion_length": 428.79577960968015,
|
235 |
+
"epoch": 0.4230829055840722,
|
236 |
+
"grad_norm": 0.22013823688030243,
|
237 |
+
"kl": 0.33797607421875,
|
238 |
+
"learning_rate": 1.4305110968082953e-05,
|
239 |
+
"loss": 0.0135,
|
240 |
+
"reward": 1.2656250596046448,
|
241 |
+
"reward_std": 0.22840066901408135,
|
242 |
+
"rewards/equation_reward_func": 0.311383943259716,
|
243 |
+
"rewards/format_reward_func": 0.9542411014437675,
|
244 |
+
"step": 170
|
245 |
+
},
|
246 |
+
{
|
247 |
+
"completion_length": 447.583056640625,
|
248 |
+
"epoch": 0.44797013532431174,
|
249 |
+
"grad_norm": 0.18443113565444946,
|
250 |
+
"kl": 0.34371337890625,
|
251 |
+
"learning_rate": 1.3502073812594677e-05,
|
252 |
+
"loss": 0.0137,
|
253 |
+
"reward": 1.192633979767561,
|
254 |
+
"reward_std": 0.258369813952595,
|
255 |
+
"rewards/equation_reward_func": 0.26785715589066966,
|
256 |
+
"rewards/format_reward_func": 0.9247768245637417,
|
257 |
+
"step": 180
|
258 |
+
},
|
259 |
+
{
|
260 |
+
"completion_length": 468.4525882720947,
|
261 |
+
"epoch": 0.4728573650645512,
|
262 |
+
"grad_norm": 0.18475499749183655,
|
263 |
+
"kl": 0.336151123046875,
|
264 |
+
"learning_rate": 1.267238376078257e-05,
|
265 |
+
"loss": 0.0134,
|
266 |
+
"reward": 1.150781299173832,
|
267 |
+
"reward_std": 0.31902912934310734,
|
268 |
+
"rewards/equation_reward_func": 0.26283483426086607,
|
269 |
+
"rewards/format_reward_func": 0.887946467846632,
|
270 |
+
"step": 190
|
271 |
+
},
|
272 |
+
{
|
273 |
+
"completion_length": 205.72612552642823,
|
274 |
+
"epoch": 0.4977445948047908,
|
275 |
+
"grad_norm": 0.177314892411232,
|
276 |
+
"kl": 0.29666748046875,
|
277 |
+
"learning_rate": 1.1822355254921478e-05,
|
278 |
+
"loss": 0.0119,
|
279 |
+
"reward": 1.2328125555068254,
|
280 |
+
"reward_std": 0.21277215834707022,
|
281 |
+
"rewards/equation_reward_func": 0.2745535850757733,
|
282 |
+
"rewards/format_reward_func": 0.9582589630037546,
|
283 |
+
"step": 200
|
284 |
+
},
|
285 |
+
{
|
286 |
+
"epoch": 0.4977445948047908,
|
287 |
+
"eval_completion_length": 204.1021135212989,
|
288 |
+
"eval_kl": 0.29685317737430167,
|
289 |
+
"eval_loss": 0.011871281079947948,
|
290 |
+
"eval_reward": 1.2749651410726195,
|
291 |
+
"eval_reward_std": 0.18870500346135827,
|
292 |
+
"eval_rewards/equation_reward_func": 0.29678772335778403,
|
293 |
+
"eval_rewards/format_reward_func": 0.9781774192548996,
|
294 |
+
"eval_runtime": 3019.4392,
|
295 |
+
"eval_samples_per_second": 1.656,
|
296 |
+
"eval_steps_per_second": 0.059,
|
297 |
+
"step": 200
|
298 |
+
},
|
299 |
+
{
|
300 |
+
"completion_length": 227.66161708831788,
|
301 |
+
"epoch": 0.5226318245450303,
|
302 |
+
"grad_norm": 0.21695467829704285,
|
303 |
+
"kl": 0.288677978515625,
|
304 |
+
"learning_rate": 1.0958457525202241e-05,
|
305 |
+
"loss": 0.0115,
|
306 |
+
"reward": 1.2738839823752641,
|
307 |
+
"reward_std": 0.2082868866622448,
|
308 |
+
"rewards/equation_reward_func": 0.3056919798487797,
|
309 |
+
"rewards/format_reward_func": 0.968191996216774,
|
310 |
+
"step": 210
|
311 |
+
},
|
312 |
+
{
|
313 |
+
"completion_length": 206.59152727127076,
|
314 |
+
"epoch": 0.5475190542852699,
|
315 |
+
"grad_norm": 0.17778100073337555,
|
316 |
+
"kl": 0.22813720703125,
|
317 |
+
"learning_rate": 1.008726535498374e-05,
|
318 |
+
"loss": 0.0091,
|
319 |
+
"reward": 1.2793527320027351,
|
320 |
+
"reward_std": 0.19789782017469407,
|
321 |
+
"rewards/equation_reward_func": 0.30334822946460915,
|
322 |
+
"rewards/format_reward_func": 0.976004496589303,
|
323 |
+
"step": 220
|
324 |
+
},
|
325 |
+
{
|
326 |
+
"completion_length": 189.20558891296386,
|
327 |
+
"epoch": 0.5724062840255094,
|
328 |
+
"grad_norm": 0.2292833924293518,
|
329 |
+
"kl": 0.21630859375,
|
330 |
+
"learning_rate": 9.215409042721553e-06,
|
331 |
+
"loss": 0.0087,
|
332 |
+
"reward": 1.2931920245289803,
|
333 |
+
"reward_std": 0.1636760616209358,
|
334 |
+
"rewards/equation_reward_func": 0.3075892997556366,
|
335 |
+
"rewards/format_reward_func": 0.985602705553174,
|
336 |
+
"step": 230
|
337 |
+
},
|
338 |
+
{
|
339 |
+
"completion_length": 207.87523260116578,
|
340 |
+
"epoch": 0.5972935137657489,
|
341 |
+
"grad_norm": 0.24823932349681854,
|
342 |
+
"kl": 0.255029296875,
|
343 |
+
"learning_rate": 8.349523941393224e-06,
|
344 |
+
"loss": 0.0102,
|
345 |
+
"reward": 1.2991071995347738,
|
346 |
+
"reward_std": 0.1962086133658886,
|
347 |
+
"rewards/equation_reward_func": 0.32656251625157895,
|
348 |
+
"rewards/format_reward_func": 0.9725446760654449,
|
349 |
+
"step": 240
|
350 |
+
},
|
351 |
+
{
|
352 |
+
"completion_length": 190.70279846191406,
|
353 |
+
"epoch": 0.6221807435059885,
|
354 |
+
"grad_norm": 0.2746059000492096,
|
355 |
+
"kl": 0.279962158203125,
|
356 |
+
"learning_rate": 7.496199959455584e-06,
|
357 |
+
"loss": 0.0112,
|
358 |
+
"reward": 1.2677455935627222,
|
359 |
+
"reward_std": 0.22690184200182556,
|
360 |
+
"rewards/equation_reward_func": 0.30736608678707855,
|
361 |
+
"rewards/format_reward_func": 0.9603795003145933,
|
362 |
+
"step": 250
|
363 |
+
},
|
364 |
+
{
|
365 |
+
"completion_length": 163.25904750823975,
|
366 |
+
"epoch": 0.647067973246228,
|
367 |
+
"grad_norm": 0.6814990639686584,
|
368 |
+
"kl": 0.43385009765625,
|
369 |
+
"learning_rate": 6.661931407662292e-06,
|
370 |
+
"loss": 0.0174,
|
371 |
+
"reward": 1.2481027361005546,
|
372 |
+
"reward_std": 0.2705018125008792,
|
373 |
+
"rewards/equation_reward_func": 0.3234375156229362,
|
374 |
+
"rewards/format_reward_func": 0.9246652159839869,
|
375 |
+
"step": 260
|
376 |
+
},
|
377 |
+
{
|
378 |
+
"completion_length": 120.41016173362732,
|
379 |
+
"epoch": 0.6719552029864676,
|
380 |
+
"grad_norm": 0.49509918689727783,
|
381 |
+
"kl": 0.59742431640625,
|
382 |
+
"learning_rate": 5.853067573437612e-06,
|
383 |
+
"loss": 0.0239,
|
384 |
+
"reward": 1.2579241640865804,
|
385 |
+
"reward_std": 0.2596528060734272,
|
386 |
+
"rewards/equation_reward_func": 0.3313616224215366,
|
387 |
+
"rewards/format_reward_func": 0.9265625372529029,
|
388 |
+
"step": 270
|
389 |
+
},
|
390 |
+
{
|
391 |
+
"completion_length": 245.69275612831115,
|
392 |
+
"epoch": 0.6968424327267071,
|
393 |
+
"grad_norm": 1.4125251770019531,
|
394 |
+
"kl": 1.049755859375,
|
395 |
+
"learning_rate": 5.075764398965331e-06,
|
396 |
+
"loss": 0.042,
|
397 |
+
"reward": 1.2562500558793546,
|
398 |
+
"reward_std": 0.2570431599859148,
|
399 |
+
"rewards/equation_reward_func": 0.3255580512690358,
|
400 |
+
"rewards/format_reward_func": 0.9306920021772385,
|
401 |
+
"step": 280
|
402 |
+
},
|
403 |
+
{
|
404 |
+
"completion_length": 229.22902803421022,
|
405 |
+
"epoch": 0.7217296624669467,
|
406 |
+
"grad_norm": 0.2942808270454407,
|
407 |
+
"kl": 0.5860107421875,
|
408 |
+
"learning_rate": 4.335937630751675e-06,
|
409 |
+
"loss": 0.0234,
|
410 |
+
"reward": 1.2649554163217545,
|
411 |
+
"reward_std": 0.27522460916079583,
|
412 |
+
"rewards/equation_reward_func": 0.3424107326194644,
|
413 |
+
"rewards/format_reward_func": 0.9225446809083223,
|
414 |
+
"step": 290
|
415 |
+
},
|
416 |
+
{
|
417 |
+
"completion_length": 196.14632596969605,
|
418 |
+
"epoch": 0.7466168922071862,
|
419 |
+
"grad_norm": 0.22581090033054352,
|
420 |
+
"kl": 0.246856689453125,
|
421 |
+
"learning_rate": 3.6392177972223596e-06,
|
422 |
+
"loss": 0.0099,
|
423 |
+
"reward": 1.2797991633415222,
|
424 |
+
"reward_std": 0.27192874858155847,
|
425 |
+
"rewards/equation_reward_func": 0.34486608650768175,
|
426 |
+
"rewards/format_reward_func": 0.9349330712109805,
|
427 |
+
"step": 300
|
428 |
+
},
|
429 |
+
{
|
430 |
+
"epoch": 0.7466168922071862,
|
431 |
+
"eval_completion_length": 176.43523820418886,
|
432 |
+
"eval_kl": 0.21617493016759776,
|
433 |
+
"eval_loss": 0.00864693708717823,
|
434 |
+
"eval_reward": 1.308285176421011,
|
435 |
+
"eval_reward_std": 0.24197927808295416,
|
436 |
+
"eval_rewards/equation_reward_func": 0.36153233883767155,
|
437 |
+
"eval_rewards/format_reward_func": 0.9467528382493131,
|
438 |
+
"eval_runtime": 4445.2454,
|
439 |
+
"eval_samples_per_second": 1.125,
|
440 |
+
"eval_steps_per_second": 0.04,
|
441 |
+
"step": 300
|
442 |
+
},
|
443 |
+
{
|
444 |
+
"completion_length": 182.55291066169738,
|
445 |
+
"epoch": 0.7715041219474257,
|
446 |
+
"grad_norm": 0.3403286635875702,
|
447 |
+
"kl": 0.21319580078125,
|
448 |
+
"learning_rate": 2.990907357001491e-06,
|
449 |
+
"loss": 0.0085,
|
450 |
+
"reward": 1.281919700279832,
|
451 |
+
"reward_std": 0.25035269833169876,
|
452 |
+
"rewards/equation_reward_func": 0.34084823006996884,
|
453 |
+
"rewards/format_reward_func": 0.9410714626312255,
|
454 |
+
"step": 310
|
455 |
+
},
|
456 |
+
{
|
457 |
+
"completion_length": 180.25915956497192,
|
458 |
+
"epoch": 0.7963913516876653,
|
459 |
+
"grad_norm": 0.1979561448097229,
|
460 |
+
"kl": 0.225823974609375,
|
461 |
+
"learning_rate": 2.395940343999691e-06,
|
462 |
+
"loss": 0.009,
|
463 |
+
"reward": 1.3169643417000771,
|
464 |
+
"reward_std": 0.23920484688133,
|
465 |
+
"rewards/equation_reward_func": 0.363392874202691,
|
466 |
+
"rewards/format_reward_func": 0.9535714633762836,
|
467 |
+
"step": 320
|
468 |
+
},
|
469 |
+
{
|
470 |
+
"completion_length": 163.8195384979248,
|
471 |
+
"epoch": 0.8212785814279048,
|
472 |
+
"grad_norm": 0.2086048573255539,
|
473 |
+
"kl": 0.3494384765625,
|
474 |
+
"learning_rate": 1.858844816436809e-06,
|
475 |
+
"loss": 0.014,
|
476 |
+
"reward": 1.2976563081145287,
|
477 |
+
"reward_std": 0.20689995544962586,
|
478 |
+
"rewards/equation_reward_func": 0.3239955520257354,
|
479 |
+
"rewards/format_reward_func": 0.9736607488244772,
|
480 |
+
"step": 330
|
481 |
+
},
|
482 |
+
{
|
483 |
+
"completion_length": 173.9462127685547,
|
484 |
+
"epoch": 0.8461658111681444,
|
485 |
+
"grad_norm": 0.21505990624427795,
|
486 |
+
"kl": 0.2422607421875,
|
487 |
+
"learning_rate": 1.3837083955847418e-06,
|
488 |
+
"loss": 0.0097,
|
489 |
+
"reward": 1.3164063077419996,
|
490 |
+
"reward_std": 0.21665938571095467,
|
491 |
+
"rewards/equation_reward_func": 0.34776787337614223,
|
492 |
+
"rewards/format_reward_func": 0.968638426810503,
|
493 |
+
"step": 340
|
494 |
+
},
|
495 |
+
{
|
496 |
+
"completion_length": 188.86429414749145,
|
497 |
+
"epoch": 0.8710530409083839,
|
498 |
+
"grad_norm": 0.19320468604564667,
|
499 |
+
"kl": 0.267999267578125,
|
500 |
+
"learning_rate": 9.74147156501396e-07,
|
501 |
+
"loss": 0.0107,
|
502 |
+
"reward": 1.2994420282542705,
|
503 |
+
"reward_std": 0.23502404149621725,
|
504 |
+
"rewards/equation_reward_func": 0.34453126683365554,
|
505 |
+
"rewards/format_reward_func": 0.954910746589303,
|
506 |
+
"step": 350
|
507 |
+
},
|
508 |
+
{
|
509 |
+
"completion_length": 190.60637016296386,
|
510 |
+
"epoch": 0.8959402706486235,
|
511 |
+
"grad_norm": 0.22971031069755554,
|
512 |
+
"kl": 0.2662841796875,
|
513 |
+
"learning_rate": 6.332781075160244e-07,
|
514 |
+
"loss": 0.0106,
|
515 |
+
"reward": 1.3205357737839223,
|
516 |
+
"reward_std": 0.2396992813795805,
|
517 |
+
"rewards/equation_reward_func": 0.3675223397091031,
|
518 |
+
"rewards/format_reward_func": 0.9530134283006191,
|
519 |
+
"step": 360
|
520 |
+
},
|
521 |
+
{
|
522 |
+
"completion_length": 175.11931610107422,
|
523 |
+
"epoch": 0.920827500388863,
|
524 |
+
"grad_norm": 0.5891013741493225,
|
525 |
+
"kl": 0.50406494140625,
|
526 |
+
"learning_rate": 3.6369546791377054e-07,
|
527 |
+
"loss": 0.0202,
|
528 |
+
"reward": 1.3478795260190963,
|
529 |
+
"reward_std": 0.22201797575689852,
|
530 |
+
"rewards/equation_reward_func": 0.38828126864973456,
|
531 |
+
"rewards/format_reward_func": 0.9595982495695352,
|
532 |
+
"step": 370
|
533 |
+
},
|
534 |
+
{
|
535 |
+
"completion_length": 164.60090026855468,
|
536 |
+
"epoch": 0.9457147301291025,
|
537 |
+
"grad_norm": 0.27209916710853577,
|
538 |
+
"kl": 0.2961669921875,
|
539 |
+
"learning_rate": 1.6745092436045495e-07,
|
540 |
+
"loss": 0.0118,
|
541 |
+
"reward": 1.3289063088595867,
|
542 |
+
"reward_std": 0.229065563948825,
|
543 |
+
"rewards/equation_reward_func": 0.36986609068699183,
|
544 |
+
"rewards/format_reward_func": 0.9590402111411095,
|
545 |
+
"step": 380
|
546 |
+
},
|
547 |
+
{
|
548 |
+
"completion_length": 161.4010117530823,
|
549 |
+
"epoch": 0.9706019598693421,
|
550 |
+
"grad_norm": 0.316535085439682,
|
551 |
+
"kl": 0.27200927734375,
|
552 |
+
"learning_rate": 4.603801632821148e-08,
|
553 |
+
"loss": 0.0109,
|
554 |
+
"reward": 1.3257813084870578,
|
555 |
+
"reward_std": 0.22753856042400003,
|
556 |
+
"rewards/equation_reward_func": 0.36473215925507246,
|
557 |
+
"rewards/format_reward_func": 0.9610491368919611,
|
558 |
+
"step": 390
|
559 |
+
},
|
560 |
+
{
|
561 |
+
"completion_length": 162.9387348175049,
|
562 |
+
"epoch": 0.9954891896095815,
|
563 |
+
"grad_norm": 0.37567567825317383,
|
564 |
+
"kl": 0.29910888671875,
|
565 |
+
"learning_rate": 3.807693582869032e-10,
|
566 |
+
"loss": 0.012,
|
567 |
+
"reward": 1.3266741678118705,
|
568 |
+
"reward_std": 0.23514977092854678,
|
569 |
+
"rewards/equation_reward_func": 0.3705357322003692,
|
570 |
+
"rewards/format_reward_func": 0.956138427183032,
|
571 |
+
"step": 400
|
572 |
+
},
|
573 |
+
{
|
574 |
+
"epoch": 0.9954891896095815,
|
575 |
+
"eval_completion_length": 161.6374764895306,
|
576 |
+
"eval_kl": 0.3053203561452514,
|
577 |
+
"eval_loss": 0.012214409187436104,
|
578 |
+
"eval_reward": 1.3301078014533614,
|
579 |
+
"eval_reward_std": 0.23096491629517943,
|
580 |
+
"eval_rewards/equation_reward_func": 0.37320432741215775,
|
581 |
+
"eval_rewards/format_reward_func": 0.9569034722930226,
|
582 |
+
"eval_runtime": 3844.8591,
|
583 |
+
"eval_samples_per_second": 1.3,
|
584 |
+
"eval_steps_per_second": 0.047,
|
585 |
+
"step": 400
|
586 |
+
},
|
587 |
+
{
|
588 |
+
"completion_length": 163.43081092834473,
|
589 |
+
"epoch": 0.9979779125836056,
|
590 |
+
"kl": 0.3106689453125,
|
591 |
+
"reward": 1.323660783469677,
|
592 |
+
"reward_std": 0.228781514801085,
|
593 |
+
"rewards/equation_reward_func": 0.3627232350409031,
|
594 |
+
"rewards/format_reward_func": 0.9609375260770321,
|
595 |
+
"step": 401,
|
596 |
+
"total_flos": 0.0,
|
597 |
+
"train_loss": 253112.25296123006,
|
598 |
+
"train_runtime": 92260.7677,
|
599 |
+
"train_samples_per_second": 0.488,
|
600 |
+
"train_steps_per_second": 0.004
|
601 |
+
}
|
602 |
+
],
|
603 |
+
"logging_steps": 10,
|
604 |
+
"max_steps": 401,
|
605 |
+
"num_input_tokens_seen": 0,
|
606 |
+
"num_train_epochs": 1,
|
607 |
+
"save_steps": 500,
|
608 |
+
"stateful_callbacks": {
|
609 |
+
"TrainerControl": {
|
610 |
+
"args": {
|
611 |
+
"should_epoch_stop": false,
|
612 |
+
"should_evaluate": false,
|
613 |
+
"should_log": false,
|
614 |
+
"should_save": false,
|
615 |
+
"should_training_stop": false
|
616 |
+
},
|
617 |
+
"attributes": {}
|
618 |
+
}
|
619 |
+
},
|
620 |
+
"total_flos": 0.0,
|
621 |
+
"train_batch_size": 1,
|
622 |
+
"trial_name": null,
|
623 |
+
"trial_params": null
|
624 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1ce98e1a8e9bd7731cf3c9bca02bcd1a3621b0000e7e8ff7c0f822b28ebe0d34
|
3 |
+
size 7416
|
vocab.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|