ShethArihant commited on
Commit
e3e31a4
·
verified ·
1 Parent(s): b630300

Training in progress, step 500

Browse files
README.md ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: deepseek-ai/deepseek-coder-1.3b-instruct
3
+ library_name: transformers
4
+ model_name: deepseek-coder-1.3b-instruct_sft-secure-code-gen_7-epochs_ce-1.0_triplet-0
5
+ tags:
6
+ - generated_from_trainer
7
+ - trl
8
+ - sft
9
+ licence: license
10
+ ---
11
+
12
+ # Model Card for deepseek-coder-1.3b-instruct_sft-secure-code-gen_7-epochs_ce-1.0_triplet-0
13
+
14
+ This model is a fine-tuned version of [deepseek-ai/deepseek-coder-1.3b-instruct](https://huggingface.co/deepseek-ai/deepseek-coder-1.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="ShethArihant/deepseek-coder-1.3b-instruct_sft-secure-code-gen_7-epochs_ce-1.0_triplet-0", 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/arihants-carnegie-mellon-university/huggingface/runs/n583xdq0)
31
+
32
+
33
+ This model was trained with SFT.
34
+
35
+ ### Framework versions
36
+
37
+ - TRL: 0.23.0
38
+ - Transformers: 4.56.1
39
+ - Pytorch: 2.8.0+cu126
40
+ - Datasets: 4.0.0
41
+ - Tokenizers: 0.22.0
42
+
43
+ ## Citations
44
+
45
+
46
+
47
+ Cite TRL as:
48
+
49
+ ```bibtex
50
+ @misc{vonwerra2022trl,
51
+ title = {{TRL: Transformer Reinforcement Learning}},
52
+ 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{\'e}dec},
53
+ year = 2020,
54
+ journal = {GitHub repository},
55
+ publisher = {GitHub},
56
+ howpublished = {\url{https://github.com/huggingface/trl}}
57
+ }
58
+ ```
chat_template.jinja ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {% if not add_generation_prompt is defined %}
2
+ {% set add_generation_prompt = false %}
3
+ {% endif %}
4
+ {%- set ns = namespace(found=false) -%}
5
+ {%- for message in messages -%}
6
+ {%- if message['role'] == 'system' -%}
7
+ {%- set ns.found = true -%}
8
+ {%- endif -%}
9
+ {%- endfor -%}
10
+ {{bos_token}}{%- if not ns.found -%}
11
+ {{'You are an AI programming assistant, utilizing the Deepseek Coder model, developed by Deepseek Company, and you only answer questions related to computer science. For politically sensitive questions, security and privacy issues, and other non-computer science questions, you will refuse to answer\n'}}
12
+ {%- endif %}
13
+ {%- for message in messages %}
14
+ {%- if message['role'] == 'system' %}
15
+ {{ message['content'] }}
16
+ {%- else %}
17
+ {%- if message['role'] == 'user' %}
18
+ {{'### Instruction:\n' + message['content'] + '\n'}}
19
+ {%- else %}
20
+ {{'### Response:\n' + message['content'] + '\n<|EOT|>\n'}}
21
+ {%- endif %}
22
+ {%- endif %}
23
+ {%- endfor %}
24
+ {% if add_generation_prompt %}
25
+ {{'### Response:'}}
26
+ {% endif %}
config.json ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "LlamaForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "bos_token_id": 32013,
8
+ "dtype": "float32",
9
+ "eos_token_id": 32021,
10
+ "head_dim": 128,
11
+ "hidden_act": "silu",
12
+ "hidden_size": 2048,
13
+ "initializer_range": 0.02,
14
+ "intermediate_size": 5504,
15
+ "max_position_embeddings": 16384,
16
+ "mlp_bias": false,
17
+ "model_type": "llama",
18
+ "num_attention_heads": 16,
19
+ "num_hidden_layers": 24,
20
+ "num_key_value_heads": 16,
21
+ "pad_token_id": 32014,
22
+ "pretraining_tp": 1,
23
+ "rms_norm_eps": 1e-06,
24
+ "rope_scaling": {
25
+ "factor": 4.0,
26
+ "rope_type": "linear",
27
+ "type": "linear"
28
+ },
29
+ "rope_theta": 100000,
30
+ "tie_word_embeddings": false,
31
+ "transformers_version": "4.56.1",
32
+ "use_cache": true,
33
+ "vocab_size": 32256
34
+ }
model-00001-of-00002.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f0248a48b868ca917436ab8b646de4901ba21e98cc57a49930c2570399816f16
3
+ size 4986380064
model-00002-of-00002.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:71022c6c1d628126896fae3083ea6dbf591cf74a436e8c36d90c29fdf62f072b
3
+ size 399532808
model.safetensors.index.json ADDED
@@ -0,0 +1,227 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "metadata": {
3
+ "total_parameters": 1346471936,
4
+ "total_size": 5385887744
5
+ },
6
+ "weight_map": {
7
+ "lm_head.weight": "model-00002-of-00002.safetensors",
8
+ "model.embed_tokens.weight": "model-00001-of-00002.safetensors",
9
+ "model.layers.0.input_layernorm.weight": "model-00001-of-00002.safetensors",
10
+ "model.layers.0.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
11
+ "model.layers.0.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
12
+ "model.layers.0.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
13
+ "model.layers.0.post_attention_layernorm.weight": "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.weight": "model-00001-of-00002.safetensors",
17
+ "model.layers.0.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
18
+ "model.layers.1.input_layernorm.weight": "model-00001-of-00002.safetensors",
19
+ "model.layers.1.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
20
+ "model.layers.1.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
21
+ "model.layers.1.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
22
+ "model.layers.1.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
23
+ "model.layers.1.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
24
+ "model.layers.1.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
25
+ "model.layers.1.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
26
+ "model.layers.1.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
27
+ "model.layers.10.input_layernorm.weight": "model-00001-of-00002.safetensors",
28
+ "model.layers.10.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
29
+ "model.layers.10.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
30
+ "model.layers.10.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
31
+ "model.layers.10.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
32
+ "model.layers.10.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
33
+ "model.layers.10.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
34
+ "model.layers.10.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
35
+ "model.layers.10.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
36
+ "model.layers.11.input_layernorm.weight": "model-00001-of-00002.safetensors",
37
+ "model.layers.11.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
38
+ "model.layers.11.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
39
+ "model.layers.11.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
40
+ "model.layers.11.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
41
+ "model.layers.11.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
42
+ "model.layers.11.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
43
+ "model.layers.11.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
44
+ "model.layers.11.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
45
+ "model.layers.12.input_layernorm.weight": "model-00001-of-00002.safetensors",
46
+ "model.layers.12.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
47
+ "model.layers.12.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
48
+ "model.layers.12.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
49
+ "model.layers.12.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
50
+ "model.layers.12.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
51
+ "model.layers.12.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
52
+ "model.layers.12.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
53
+ "model.layers.12.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
54
+ "model.layers.13.input_layernorm.weight": "model-00001-of-00002.safetensors",
55
+ "model.layers.13.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
56
+ "model.layers.13.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
57
+ "model.layers.13.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
58
+ "model.layers.13.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
59
+ "model.layers.13.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
60
+ "model.layers.13.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
61
+ "model.layers.13.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
62
+ "model.layers.13.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
63
+ "model.layers.14.input_layernorm.weight": "model-00001-of-00002.safetensors",
64
+ "model.layers.14.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
65
+ "model.layers.14.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
66
+ "model.layers.14.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
67
+ "model.layers.14.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
68
+ "model.layers.14.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
69
+ "model.layers.14.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
70
+ "model.layers.14.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
71
+ "model.layers.14.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
72
+ "model.layers.15.input_layernorm.weight": "model-00001-of-00002.safetensors",
73
+ "model.layers.15.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
74
+ "model.layers.15.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
75
+ "model.layers.15.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
76
+ "model.layers.15.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
77
+ "model.layers.15.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
78
+ "model.layers.15.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
79
+ "model.layers.15.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
80
+ "model.layers.15.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
81
+ "model.layers.16.input_layernorm.weight": "model-00001-of-00002.safetensors",
82
+ "model.layers.16.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
83
+ "model.layers.16.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
84
+ "model.layers.16.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
85
+ "model.layers.16.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
86
+ "model.layers.16.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
87
+ "model.layers.16.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
88
+ "model.layers.16.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
89
+ "model.layers.16.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
90
+ "model.layers.17.input_layernorm.weight": "model-00001-of-00002.safetensors",
91
+ "model.layers.17.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
92
+ "model.layers.17.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
93
+ "model.layers.17.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
94
+ "model.layers.17.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
95
+ "model.layers.17.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
96
+ "model.layers.17.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
97
+ "model.layers.17.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
98
+ "model.layers.17.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
99
+ "model.layers.18.input_layernorm.weight": "model-00001-of-00002.safetensors",
100
+ "model.layers.18.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
101
+ "model.layers.18.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
102
+ "model.layers.18.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
103
+ "model.layers.18.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
104
+ "model.layers.18.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
105
+ "model.layers.18.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
106
+ "model.layers.18.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
107
+ "model.layers.18.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
108
+ "model.layers.19.input_layernorm.weight": "model-00001-of-00002.safetensors",
109
+ "model.layers.19.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
110
+ "model.layers.19.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
111
+ "model.layers.19.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
112
+ "model.layers.19.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
113
+ "model.layers.19.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
114
+ "model.layers.19.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
115
+ "model.layers.19.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
116
+ "model.layers.19.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
117
+ "model.layers.2.input_layernorm.weight": "model-00001-of-00002.safetensors",
118
+ "model.layers.2.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
119
+ "model.layers.2.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
120
+ "model.layers.2.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
121
+ "model.layers.2.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
122
+ "model.layers.2.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
123
+ "model.layers.2.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
124
+ "model.layers.2.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
125
+ "model.layers.2.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
126
+ "model.layers.20.input_layernorm.weight": "model-00001-of-00002.safetensors",
127
+ "model.layers.20.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
128
+ "model.layers.20.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
129
+ "model.layers.20.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
130
+ "model.layers.20.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
131
+ "model.layers.20.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
132
+ "model.layers.20.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
133
+ "model.layers.20.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
134
+ "model.layers.20.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
135
+ "model.layers.21.input_layernorm.weight": "model-00001-of-00002.safetensors",
136
+ "model.layers.21.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
137
+ "model.layers.21.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
138
+ "model.layers.21.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
139
+ "model.layers.21.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
140
+ "model.layers.21.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
141
+ "model.layers.21.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
142
+ "model.layers.21.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
143
+ "model.layers.21.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
144
+ "model.layers.22.input_layernorm.weight": "model-00001-of-00002.safetensors",
145
+ "model.layers.22.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
146
+ "model.layers.22.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
147
+ "model.layers.22.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
148
+ "model.layers.22.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
149
+ "model.layers.22.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
150
+ "model.layers.22.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
151
+ "model.layers.22.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
152
+ "model.layers.22.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
153
+ "model.layers.23.input_layernorm.weight": "model-00002-of-00002.safetensors",
154
+ "model.layers.23.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
155
+ "model.layers.23.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
156
+ "model.layers.23.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
157
+ "model.layers.23.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
158
+ "model.layers.23.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
159
+ "model.layers.23.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
160
+ "model.layers.23.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
161
+ "model.layers.23.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
162
+ "model.layers.3.input_layernorm.weight": "model-00001-of-00002.safetensors",
163
+ "model.layers.3.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
164
+ "model.layers.3.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
165
+ "model.layers.3.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
166
+ "model.layers.3.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
167
+ "model.layers.3.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
168
+ "model.layers.3.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
169
+ "model.layers.3.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
170
+ "model.layers.3.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
171
+ "model.layers.4.input_layernorm.weight": "model-00001-of-00002.safetensors",
172
+ "model.layers.4.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
173
+ "model.layers.4.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
174
+ "model.layers.4.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
175
+ "model.layers.4.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
176
+ "model.layers.4.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
177
+ "model.layers.4.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
178
+ "model.layers.4.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
179
+ "model.layers.4.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
180
+ "model.layers.5.input_layernorm.weight": "model-00001-of-00002.safetensors",
181
+ "model.layers.5.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
182
+ "model.layers.5.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
183
+ "model.layers.5.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
184
+ "model.layers.5.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
185
+ "model.layers.5.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
186
+ "model.layers.5.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
187
+ "model.layers.5.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
188
+ "model.layers.5.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
189
+ "model.layers.6.input_layernorm.weight": "model-00001-of-00002.safetensors",
190
+ "model.layers.6.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
191
+ "model.layers.6.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
192
+ "model.layers.6.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
193
+ "model.layers.6.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
194
+ "model.layers.6.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
195
+ "model.layers.6.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
196
+ "model.layers.6.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
197
+ "model.layers.6.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
198
+ "model.layers.7.input_layernorm.weight": "model-00001-of-00002.safetensors",
199
+ "model.layers.7.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
200
+ "model.layers.7.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
201
+ "model.layers.7.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
202
+ "model.layers.7.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
203
+ "model.layers.7.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
204
+ "model.layers.7.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
205
+ "model.layers.7.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
206
+ "model.layers.7.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
207
+ "model.layers.8.input_layernorm.weight": "model-00001-of-00002.safetensors",
208
+ "model.layers.8.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
209
+ "model.layers.8.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
210
+ "model.layers.8.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
211
+ "model.layers.8.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
212
+ "model.layers.8.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
213
+ "model.layers.8.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
214
+ "model.layers.8.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
215
+ "model.layers.8.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
216
+ "model.layers.9.input_layernorm.weight": "model-00001-of-00002.safetensors",
217
+ "model.layers.9.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
218
+ "model.layers.9.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
219
+ "model.layers.9.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
220
+ "model.layers.9.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
221
+ "model.layers.9.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
222
+ "model.layers.9.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
223
+ "model.layers.9.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
224
+ "model.layers.9.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
225
+ "model.norm.weight": "model-00002-of-00002.safetensors"
226
+ }
227
+ }
special_tokens_map.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<|begin▁of▁sentence|>",
4
+ "lstrip": false,
5
+ "normalized": true,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "<|EOT|>",
11
+ "lstrip": false,
12
+ "normalized": true,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": {
17
+ "content": "<|end▁of▁sentence|>",
18
+ "lstrip": false,
19
+ "normalized": true,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ }
23
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,194 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": true,
3
+ "add_eos_token": false,
4
+ "add_prefix_space": null,
5
+ "added_tokens_decoder": {
6
+ "32000": {
7
+ "content": "õ",
8
+ "lstrip": false,
9
+ "normalized": true,
10
+ "rstrip": false,
11
+ "single_word": false,
12
+ "special": false
13
+ },
14
+ "32001": {
15
+ "content": "÷",
16
+ "lstrip": false,
17
+ "normalized": true,
18
+ "rstrip": false,
19
+ "single_word": false,
20
+ "special": false
21
+ },
22
+ "32002": {
23
+ "content": "Á",
24
+ "lstrip": false,
25
+ "normalized": true,
26
+ "rstrip": false,
27
+ "single_word": false,
28
+ "special": false
29
+ },
30
+ "32003": {
31
+ "content": "ý",
32
+ "lstrip": false,
33
+ "normalized": true,
34
+ "rstrip": false,
35
+ "single_word": false,
36
+ "special": false
37
+ },
38
+ "32004": {
39
+ "content": "À",
40
+ "lstrip": false,
41
+ "normalized": true,
42
+ "rstrip": false,
43
+ "single_word": false,
44
+ "special": false
45
+ },
46
+ "32005": {
47
+ "content": "ÿ",
48
+ "lstrip": false,
49
+ "normalized": true,
50
+ "rstrip": false,
51
+ "single_word": false,
52
+ "special": false
53
+ },
54
+ "32006": {
55
+ "content": "ø",
56
+ "lstrip": false,
57
+ "normalized": true,
58
+ "rstrip": false,
59
+ "single_word": false,
60
+ "special": false
61
+ },
62
+ "32007": {
63
+ "content": "ú",
64
+ "lstrip": false,
65
+ "normalized": true,
66
+ "rstrip": false,
67
+ "single_word": false,
68
+ "special": false
69
+ },
70
+ "32008": {
71
+ "content": "þ",
72
+ "lstrip": false,
73
+ "normalized": true,
74
+ "rstrip": false,
75
+ "single_word": false,
76
+ "special": false
77
+ },
78
+ "32009": {
79
+ "content": "ü",
80
+ "lstrip": false,
81
+ "normalized": true,
82
+ "rstrip": false,
83
+ "single_word": false,
84
+ "special": false
85
+ },
86
+ "32010": {
87
+ "content": "ù",
88
+ "lstrip": false,
89
+ "normalized": true,
90
+ "rstrip": false,
91
+ "single_word": false,
92
+ "special": false
93
+ },
94
+ "32011": {
95
+ "content": "ö",
96
+ "lstrip": false,
97
+ "normalized": true,
98
+ "rstrip": false,
99
+ "single_word": false,
100
+ "special": false
101
+ },
102
+ "32012": {
103
+ "content": "û",
104
+ "lstrip": false,
105
+ "normalized": true,
106
+ "rstrip": false,
107
+ "single_word": false,
108
+ "special": false
109
+ },
110
+ "32013": {
111
+ "content": "<|begin▁of▁sentence|>",
112
+ "lstrip": false,
113
+ "normalized": true,
114
+ "rstrip": false,
115
+ "single_word": false,
116
+ "special": true
117
+ },
118
+ "32014": {
119
+ "content": "<|end▁of▁sentence|>",
120
+ "lstrip": false,
121
+ "normalized": true,
122
+ "rstrip": false,
123
+ "single_word": false,
124
+ "special": true
125
+ },
126
+ "32015": {
127
+ "content": "<|fim▁hole|>",
128
+ "lstrip": false,
129
+ "normalized": true,
130
+ "rstrip": false,
131
+ "single_word": false,
132
+ "special": false
133
+ },
134
+ "32016": {
135
+ "content": "<|fim▁begin|>",
136
+ "lstrip": false,
137
+ "normalized": true,
138
+ "rstrip": false,
139
+ "single_word": false,
140
+ "special": false
141
+ },
142
+ "32017": {
143
+ "content": "<|fim▁end|>",
144
+ "lstrip": false,
145
+ "normalized": true,
146
+ "rstrip": false,
147
+ "single_word": false,
148
+ "special": false
149
+ },
150
+ "32018": {
151
+ "content": "<pad>",
152
+ "lstrip": false,
153
+ "normalized": true,
154
+ "rstrip": false,
155
+ "single_word": false,
156
+ "special": false
157
+ },
158
+ "32019": {
159
+ "content": "<|User|>",
160
+ "lstrip": false,
161
+ "normalized": true,
162
+ "rstrip": false,
163
+ "single_word": false,
164
+ "special": false
165
+ },
166
+ "32020": {
167
+ "content": "<|Assistant|>",
168
+ "lstrip": false,
169
+ "normalized": true,
170
+ "rstrip": false,
171
+ "single_word": false,
172
+ "special": false
173
+ },
174
+ "32021": {
175
+ "content": "<|EOT|>",
176
+ "lstrip": false,
177
+ "normalized": true,
178
+ "rstrip": false,
179
+ "single_word": false,
180
+ "special": true
181
+ }
182
+ },
183
+ "bos_token": "<|begin▁of▁sentence|>",
184
+ "clean_up_tokenization_spaces": false,
185
+ "eos_token": "<|EOT|>",
186
+ "extra_special_tokens": {},
187
+ "legacy": true,
188
+ "model_max_length": 16384,
189
+ "pad_token": "<|end▁of▁sentence|>",
190
+ "sp_model_kwargs": {},
191
+ "tokenizer_class": "LlamaTokenizerFast",
192
+ "unk_token": null,
193
+ "use_default_system_prompt": false
194
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:085c4c45246c5b6a523581305ab58934b78e11c4b2cf90c919c598e7ee35e9fb
3
+ size 6353