Josephgflowers commited on
Commit
6a54924
1 Parent(s): 6d5abeb

Upload 12 files

Browse files
config.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "/home/joe/Downloads/so_much",
3
+ "architectures": [
4
+ "LlamaForCausalLM"
5
+ ],
6
+ "attention_bias": false,
7
+ "attention_dropout": 0.0,
8
+ "bos_token_id": 1,
9
+ "eos_token_id": 2,
10
+ "hidden_act": "silu",
11
+ "hidden_size": 2048,
12
+ "initializer_range": 0.02,
13
+ "intermediate_size": 5632,
14
+ "max_position_embeddings": 2048,
15
+ "model_type": "llama",
16
+ "num_attention_heads": 32,
17
+ "num_hidden_layers": 31,
18
+ "num_key_value_heads": 4,
19
+ "pretraining_tp": 1,
20
+ "rms_norm_eps": 1e-05,
21
+ "rope_scaling": null,
22
+ "rope_theta": 10000.0,
23
+ "tie_word_embeddings": false,
24
+ "torch_dtype": "float16",
25
+ "transformers_version": "4.38.0.dev0",
26
+ "unsloth_version": "2024.1",
27
+ "use_cache": false,
28
+ "vocab_size": 32000
29
+ }
generation_config.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 1,
4
+ "eos_token_id": 2,
5
+ "transformers_version": "4.38.0.dev0",
6
+ "use_cache": false
7
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ef32ccef672d5de3e5f2be43e0a1be3cb7061cc11bd8751c0c818f751415bfe8
3
+ size 2992926176
optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b6c6a9e7b695f7687e731b7a15386f2a736e885cb744ab237ee84633b183ff84
3
+ size 5454522
rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:386fcc8cc1089aade9450d86fb239ea3483f455fd2d78d8378645feecfec9d69
3
+ size 14244
scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3f9625c4bd6137497fdc071f2ef3c6109f815959a4f84d167e89493c9fe28650
3
+ size 1064
special_tokens_map.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<s>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "</s>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": {
17
+ "content": "</s>",
18
+ "lstrip": false,
19
+ "normalized": false,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ },
23
+ "unk_token": {
24
+ "content": "<unk>",
25
+ "lstrip": false,
26
+ "normalized": false,
27
+ "rstrip": false,
28
+ "single_word": false
29
+ }
30
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e556afd44213b6bd1be2b850ebbbd98f5481437a8021afaf58ee7fb1818d347
3
+ size 499723
tokenizer_config.json ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": true,
3
+ "add_eos_token": false,
4
+ "added_tokens_decoder": {
5
+ "0": {
6
+ "content": "<unk>",
7
+ "lstrip": false,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false,
11
+ "special": true
12
+ },
13
+ "1": {
14
+ "content": "<s>",
15
+ "lstrip": false,
16
+ "normalized": false,
17
+ "rstrip": false,
18
+ "single_word": false,
19
+ "special": true
20
+ },
21
+ "2": {
22
+ "content": "</s>",
23
+ "lstrip": false,
24
+ "normalized": false,
25
+ "rstrip": false,
26
+ "single_word": false,
27
+ "special": true
28
+ }
29
+ },
30
+ "bos_token": "<s>",
31
+ "chat_template": "{% for message in messages %}\n{% if message['role'] == 'user' %}\n{{ '<|user|>\n' + message['content'] + eos_token }}\n{% elif message['role'] == 'system' %}\n{{ '<|system|>\n' + message['content'] + eos_token }}\n{% elif message['role'] == 'assistant' %}\n{{ '<|assistant|>\n' + message['content'] + eos_token }}\n{% endif %}\n{% if loop.last and add_generation_prompt %}\n{{ '<|assistant|>' }}\n{% endif %}\n{% endfor %}",
32
+ "clean_up_tokenization_spaces": false,
33
+ "eos_token": "</s>",
34
+ "legacy": false,
35
+ "max_length": 2048,
36
+ "model_max_length": 2048,
37
+ "pad_token": "</s>",
38
+ "padding_side": "right",
39
+ "sp_model_kwargs": {},
40
+ "stride": 0,
41
+ "tokenizer_class": "LlamaTokenizer",
42
+ "truncation_side": "right",
43
+ "truncation_strategy": "longest_first",
44
+ "unk_token": "<unk>",
45
+ "use_default_system_prompt": false
46
+ }
trainer_state.json ADDED
@@ -0,0 +1,203 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_metric": null,
3
+ "best_model_checkpoint": null,
4
+ "epoch": 0.056700482783555585,
5
+ "eval_steps": 500,
6
+ "global_step": 2666,
7
+ "is_hyper_param_search": false,
8
+ "is_local_process_zero": true,
9
+ "is_world_process_zero": true,
10
+ "log_history": [
11
+ {
12
+ "epoch": 0.0,
13
+ "grad_norm": 0.9096835851669312,
14
+ "learning_rate": 4.989366000978328e-05,
15
+ "loss": 0.5573,
16
+ "step": 100
17
+ },
18
+ {
19
+ "epoch": 0.0,
20
+ "grad_norm": 0.8342915177345276,
21
+ "learning_rate": 4.978732001956656e-05,
22
+ "loss": 0.5416,
23
+ "step": 200
24
+ },
25
+ {
26
+ "epoch": 0.01,
27
+ "grad_norm": 1.401437759399414,
28
+ "learning_rate": 4.968098002934984e-05,
29
+ "loss": 0.5475,
30
+ "step": 300
31
+ },
32
+ {
33
+ "epoch": 0.01,
34
+ "grad_norm": 0.7456225156784058,
35
+ "learning_rate": 4.957464003913312e-05,
36
+ "loss": 0.5302,
37
+ "step": 400
38
+ },
39
+ {
40
+ "epoch": 0.01,
41
+ "grad_norm": 0.966705858707428,
42
+ "learning_rate": 4.94683000489164e-05,
43
+ "loss": 0.5257,
44
+ "step": 500
45
+ },
46
+ {
47
+ "epoch": 0.01,
48
+ "grad_norm": 0.8829948902130127,
49
+ "learning_rate": 4.936302345860184e-05,
50
+ "loss": 0.5185,
51
+ "step": 600
52
+ },
53
+ {
54
+ "epoch": 0.01,
55
+ "grad_norm": 0.8967320322990417,
56
+ "learning_rate": 4.925668346838512e-05,
57
+ "loss": 0.5195,
58
+ "step": 700
59
+ },
60
+ {
61
+ "epoch": 0.02,
62
+ "grad_norm": 0.8852934241294861,
63
+ "learning_rate": 4.9151406878070574e-05,
64
+ "loss": 0.5117,
65
+ "step": 800
66
+ },
67
+ {
68
+ "epoch": 0.02,
69
+ "grad_norm": 1.0393266677856445,
70
+ "learning_rate": 4.9045066887853846e-05,
71
+ "loss": 0.5027,
72
+ "step": 900
73
+ },
74
+ {
75
+ "epoch": 0.02,
76
+ "grad_norm": 1.016802191734314,
77
+ "learning_rate": 4.8938726897637125e-05,
78
+ "loss": 0.5099,
79
+ "step": 1000
80
+ },
81
+ {
82
+ "epoch": 0.02,
83
+ "grad_norm": 1.0666687488555908,
84
+ "learning_rate": 4.8832386907420405e-05,
85
+ "loss": 0.5129,
86
+ "step": 1100
87
+ },
88
+ {
89
+ "epoch": 0.03,
90
+ "grad_norm": 1.0762836933135986,
91
+ "learning_rate": 4.872604691720369e-05,
92
+ "loss": 0.5277,
93
+ "step": 1200
94
+ },
95
+ {
96
+ "epoch": 0.03,
97
+ "grad_norm": 0.8559880256652832,
98
+ "learning_rate": 4.861970692698696e-05,
99
+ "loss": 0.4987,
100
+ "step": 1300
101
+ },
102
+ {
103
+ "epoch": 0.03,
104
+ "grad_norm": 1.0834448337554932,
105
+ "learning_rate": 4.851336693677024e-05,
106
+ "loss": 0.5171,
107
+ "step": 1400
108
+ },
109
+ {
110
+ "epoch": 0.03,
111
+ "grad_norm": 0.9118117690086365,
112
+ "learning_rate": 4.840702694655352e-05,
113
+ "loss": 0.5073,
114
+ "step": 1500
115
+ },
116
+ {
117
+ "epoch": 0.03,
118
+ "grad_norm": 1.029111623764038,
119
+ "learning_rate": 4.830068695633681e-05,
120
+ "loss": 0.5085,
121
+ "step": 1600
122
+ },
123
+ {
124
+ "epoch": 0.04,
125
+ "grad_norm": 0.9440446496009827,
126
+ "learning_rate": 4.819434696612008e-05,
127
+ "loss": 0.4978,
128
+ "step": 1700
129
+ },
130
+ {
131
+ "epoch": 0.04,
132
+ "grad_norm": 0.8061498403549194,
133
+ "learning_rate": 4.808800697590336e-05,
134
+ "loss": 0.4859,
135
+ "step": 1800
136
+ },
137
+ {
138
+ "epoch": 0.04,
139
+ "grad_norm": 1.1587491035461426,
140
+ "learning_rate": 4.798166698568664e-05,
141
+ "loss": 0.5029,
142
+ "step": 1900
143
+ },
144
+ {
145
+ "epoch": 0.04,
146
+ "grad_norm": 0.8422715067863464,
147
+ "learning_rate": 4.787532699546992e-05,
148
+ "loss": 0.507,
149
+ "step": 2000
150
+ },
151
+ {
152
+ "epoch": 0.04,
153
+ "grad_norm": 1.0634592771530151,
154
+ "learning_rate": 4.77689870052532e-05,
155
+ "loss": 0.4967,
156
+ "step": 2100
157
+ },
158
+ {
159
+ "epoch": 0.05,
160
+ "grad_norm": 1.1594743728637695,
161
+ "learning_rate": 4.7662647015036477e-05,
162
+ "loss": 0.4993,
163
+ "step": 2200
164
+ },
165
+ {
166
+ "epoch": 0.05,
167
+ "grad_norm": 1.0729972124099731,
168
+ "learning_rate": 4.7556307024819756e-05,
169
+ "loss": 0.496,
170
+ "step": 2300
171
+ },
172
+ {
173
+ "epoch": 0.05,
174
+ "grad_norm": 1.0069080591201782,
175
+ "learning_rate": 4.7449967034603035e-05,
176
+ "loss": 0.5016,
177
+ "step": 2400
178
+ },
179
+ {
180
+ "epoch": 0.05,
181
+ "grad_norm": 0.9722279906272888,
182
+ "learning_rate": 4.7343627044386314e-05,
183
+ "loss": 0.4883,
184
+ "step": 2500
185
+ },
186
+ {
187
+ "epoch": 0.06,
188
+ "grad_norm": 0.760681688785553,
189
+ "learning_rate": 4.7237287054169594e-05,
190
+ "loss": 0.4899,
191
+ "step": 2600
192
+ }
193
+ ],
194
+ "logging_steps": 100,
195
+ "max_steps": 47019,
196
+ "num_input_tokens_seen": 0,
197
+ "num_train_epochs": 1,
198
+ "save_steps": 1333,
199
+ "total_flos": 7.500219014216417e+17,
200
+ "train_batch_size": 16,
201
+ "trial_name": null,
202
+ "trial_params": null
203
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e57c4dc9131f9bf65b5c29340629c4a87fa288a08d427753cdc7fbe9a295c893
3
+ size 4920