Training in progress, step 200
Browse files- .gitattributes +1 -0
- adapter_config.json +17 -0
- adapter_model.safetensors +3 -0
- added_tokens.json +3 -0
- special_tokens_map.json +42 -0
- tokenizer.json +3 -0
- tokenizer.model +3 -0
- tokenizer_config.json +0 -0
- trainer_log.jsonl +43 -0
- training_args.bin +3 -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
|
adapter_config.json
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"auto_mapping": null,
|
| 3 |
+
"base_model_name_or_path": "google/gemma-3-1b-it",
|
| 4 |
+
"exclude_modules": null,
|
| 5 |
+
"inference_mode": true,
|
| 6 |
+
"modules_to_save": null,
|
| 7 |
+
"peft_type": "LN_TUNING",
|
| 8 |
+
"revision": null,
|
| 9 |
+
"target_modules": [
|
| 10 |
+
"input_layernorm",
|
| 11 |
+
"post_attention_layernorm",
|
| 12 |
+
"pre_feedforward_layernorm",
|
| 13 |
+
"post_feedforward_layernorm",
|
| 14 |
+
"norm"
|
| 15 |
+
],
|
| 16 |
+
"task_type": "CAUSAL_LM"
|
| 17 |
+
}
|
adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4a192b7cf3c23f360bc1b1d47c65dd031cf9b81b85a2184968e22604e2cd82b8
|
| 3 |
+
size 257072
|
added_tokens.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"<image_soft_token>": 262144
|
| 3 |
+
}
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"additional_special_tokens": [
|
| 3 |
+
{
|
| 4 |
+
"content": "<end_of_turn>",
|
| 5 |
+
"lstrip": false,
|
| 6 |
+
"normalized": false,
|
| 7 |
+
"rstrip": false,
|
| 8 |
+
"single_word": false
|
| 9 |
+
}
|
| 10 |
+
],
|
| 11 |
+
"boi_token": "<start_of_image>",
|
| 12 |
+
"bos_token": {
|
| 13 |
+
"content": "<bos>",
|
| 14 |
+
"lstrip": false,
|
| 15 |
+
"normalized": false,
|
| 16 |
+
"rstrip": false,
|
| 17 |
+
"single_word": false
|
| 18 |
+
},
|
| 19 |
+
"eoi_token": "<end_of_image>",
|
| 20 |
+
"eos_token": {
|
| 21 |
+
"content": "<eos>",
|
| 22 |
+
"lstrip": false,
|
| 23 |
+
"normalized": false,
|
| 24 |
+
"rstrip": false,
|
| 25 |
+
"single_word": false
|
| 26 |
+
},
|
| 27 |
+
"image_token": "<image_soft_token>",
|
| 28 |
+
"pad_token": {
|
| 29 |
+
"content": "<pad>",
|
| 30 |
+
"lstrip": false,
|
| 31 |
+
"normalized": false,
|
| 32 |
+
"rstrip": false,
|
| 33 |
+
"single_word": false
|
| 34 |
+
},
|
| 35 |
+
"unk_token": {
|
| 36 |
+
"content": "<unk>",
|
| 37 |
+
"lstrip": false,
|
| 38 |
+
"normalized": false,
|
| 39 |
+
"rstrip": false,
|
| 40 |
+
"single_word": false
|
| 41 |
+
}
|
| 42 |
+
}
|
tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4667f2089529e8e7657cfb6d1c19910ae71ff5f28aa7ab2ff2763330affad795
|
| 3 |
+
size 33384568
|
tokenizer.model
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1299c11d7cf632ef3b4e11937501358ada021bbdf7c47638d13c0ee982f2e79c
|
| 3 |
+
size 4689074
|
tokenizer_config.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
trainer_log.jsonl
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{"current_steps": 5, "total_steps": 40000, "loss": 3.259, "lr": 4.999999876629946e-05, "epoch": 0.0008157272208173587, "percentage": 0.01, "elapsed_time": "0:00:04", "remaining_time": "9:01:10", "throughput": 1955.02, "total_tokens": 7936}
|
| 2 |
+
{"current_steps": 10, "total_steps": 40000, "loss": 3.6591, "lr": 4.999999375439123e-05, "epoch": 0.0016314544416347174, "percentage": 0.03, "elapsed_time": "0:00:05", "remaining_time": "6:35:02", "throughput": 2882.99, "total_tokens": 17088}
|
| 3 |
+
{"current_steps": 15, "total_steps": 40000, "loss": 3.8124, "lr": 4.9999984887169785e-05, "epoch": 0.002447181662452076, "percentage": 0.04, "elapsed_time": "0:00:07", "remaining_time": "5:37:18", "throughput": 3553.07, "total_tokens": 26976}
|
| 4 |
+
{"current_steps": 20, "total_steps": 40000, "loss": 3.9648, "lr": 4.9999972164636506e-05, "epoch": 0.0032629088832694347, "percentage": 0.05, "elapsed_time": "0:00:09", "remaining_time": "5:08:07", "throughput": 4058.56, "total_tokens": 37536}
|
| 5 |
+
{"current_steps": 25, "total_steps": 40000, "loss": 3.676, "lr": 4.999995558679334e-05, "epoch": 0.004078636104086793, "percentage": 0.06, "elapsed_time": "0:00:10", "remaining_time": "4:50:22", "throughput": 4242.24, "total_tokens": 46224}
|
| 6 |
+
{"current_steps": 30, "total_steps": 40000, "loss": 3.3804, "lr": 4.999993515364287e-05, "epoch": 0.004894363324904152, "percentage": 0.07, "elapsed_time": "0:00:12", "remaining_time": "4:38:31", "throughput": 4463.4, "total_tokens": 55984}
|
| 7 |
+
{"current_steps": 35, "total_steps": 40000, "loss": 4.1807, "lr": 4.999991086518822e-05, "epoch": 0.005710090545721511, "percentage": 0.09, "elapsed_time": "0:00:14", "remaining_time": "4:30:17", "throughput": 4643.66, "total_tokens": 65952}
|
| 8 |
+
{"current_steps": 40, "total_steps": 40000, "loss": 3.3567, "lr": 4.999988272143315e-05, "epoch": 0.0065258177665388694, "percentage": 0.1, "elapsed_time": "0:00:15", "remaining_time": "4:24:21", "throughput": 4802.75, "total_tokens": 76256}
|
| 9 |
+
{"current_steps": 45, "total_steps": 40000, "loss": 3.9635, "lr": 4.999985072238199e-05, "epoch": 0.007341544987356228, "percentage": 0.11, "elapsed_time": "0:00:17", "remaining_time": "4:19:26", "throughput": 4909.87, "total_tokens": 86080}
|
| 10 |
+
{"current_steps": 50, "total_steps": 40000, "loss": 3.7106, "lr": 4.999981486803969e-05, "epoch": 0.008157272208173586, "percentage": 0.12, "elapsed_time": "0:00:19", "remaining_time": "4:15:24", "throughput": 5032.88, "total_tokens": 96528}
|
| 11 |
+
{"current_steps": 55, "total_steps": 40000, "loss": 3.7218, "lr": 4.999977515841176e-05, "epoch": 0.008972999428990946, "percentage": 0.14, "elapsed_time": "0:00:20", "remaining_time": "4:12:03", "throughput": 5097.47, "total_tokens": 106144}
|
| 12 |
+
{"current_steps": 60, "total_steps": 40000, "loss": 4.0036, "lr": 4.9999731593504344e-05, "epoch": 0.009788726649808304, "percentage": 0.15, "elapsed_time": "0:00:22", "remaining_time": "4:09:15", "throughput": 5126.82, "total_tokens": 115184}
|
| 13 |
+
{"current_steps": 65, "total_steps": 40000, "loss": 2.9399, "lr": 4.999968417332415e-05, "epoch": 0.010604453870625663, "percentage": 0.16, "elapsed_time": "0:00:24", "remaining_time": "4:06:52", "throughput": 5147.32, "total_tokens": 124096}
|
| 14 |
+
{"current_steps": 70, "total_steps": 40000, "loss": 3.0799, "lr": 4.999963289787848e-05, "epoch": 0.011420181091443021, "percentage": 0.18, "elapsed_time": "0:00:25", "remaining_time": "4:04:52", "throughput": 5174.48, "total_tokens": 133280}
|
| 15 |
+
{"current_steps": 75, "total_steps": 40000, "loss": 3.4594, "lr": 4.999957776717526e-05, "epoch": 0.012235908312260381, "percentage": 0.19, "elapsed_time": "0:00:27", "remaining_time": "4:03:06", "throughput": 5221.34, "total_tokens": 143072}
|
| 16 |
+
{"current_steps": 80, "total_steps": 40000, "loss": 3.8839, "lr": 4.9999518781222984e-05, "epoch": 0.013051635533077739, "percentage": 0.2, "elapsed_time": "0:00:29", "remaining_time": "4:01:33", "throughput": 5226.49, "total_tokens": 151808}
|
| 17 |
+
{"current_steps": 85, "total_steps": 40000, "loss": 3.066, "lr": 4.9999455940030746e-05, "epoch": 0.013867362753895097, "percentage": 0.21, "elapsed_time": "0:00:30", "remaining_time": "4:00:18", "throughput": 5249.5, "total_tokens": 161184}
|
| 18 |
+
{"current_steps": 90, "total_steps": 40000, "loss": 3.3802, "lr": 4.999938924360824e-05, "epoch": 0.014683089974712456, "percentage": 0.22, "elapsed_time": "0:00:32", "remaining_time": "3:59:04", "throughput": 5296.3, "total_tokens": 171328}
|
| 19 |
+
{"current_steps": 95, "total_steps": 40000, "loss": 3.4538, "lr": 4.999931869196575e-05, "epoch": 0.015498817195529814, "percentage": 0.24, "elapsed_time": "0:00:33", "remaining_time": "3:57:58", "throughput": 5304.23, "total_tokens": 180304}
|
| 20 |
+
{"current_steps": 100, "total_steps": 40000, "loss": 3.5582, "lr": 4.999924428511416e-05, "epoch": 0.016314544416347172, "percentage": 0.25, "elapsed_time": "0:00:35", "remaining_time": "3:56:58", "throughput": 5360.44, "total_tokens": 191024}
|
| 21 |
+
{"current_steps": 105, "total_steps": 40000, "loss": 4.0029, "lr": 4.999916602306494e-05, "epoch": 0.017130271637164532, "percentage": 0.26, "elapsed_time": "0:00:37", "remaining_time": "3:56:12", "throughput": 5390.28, "total_tokens": 201056}
|
| 22 |
+
{"current_steps": 110, "total_steps": 40000, "loss": 3.8148, "lr": 4.999908390583016e-05, "epoch": 0.01794599885798189, "percentage": 0.27, "elapsed_time": "0:00:38", "remaining_time": "3:55:23", "throughput": 5438.24, "total_tokens": 211808}
|
| 23 |
+
{"current_steps": 115, "total_steps": 40000, "loss": 2.4903, "lr": 4.999899793342247e-05, "epoch": 0.01876172607879925, "percentage": 0.29, "elapsed_time": "0:00:40", "remaining_time": "3:54:38", "throughput": 5423.02, "total_tokens": 220128}
|
| 24 |
+
{"current_steps": 120, "total_steps": 40000, "loss": 3.6544, "lr": 4.999890810585516e-05, "epoch": 0.019577453299616607, "percentage": 0.3, "elapsed_time": "0:00:42", "remaining_time": "3:53:56", "throughput": 5427.99, "total_tokens": 229264}
|
| 25 |
+
{"current_steps": 125, "total_steps": 40000, "loss": 3.8463, "lr": 4.999881442314206e-05, "epoch": 0.020393180520433967, "percentage": 0.31, "elapsed_time": "0:00:43", "remaining_time": "3:53:20", "throughput": 5448.48, "total_tokens": 239120}
|
| 26 |
+
{"current_steps": 130, "total_steps": 40000, "loss": 3.5765, "lr": 4.9998716885297617e-05, "epoch": 0.021208907741251327, "percentage": 0.33, "elapsed_time": "0:00:45", "remaining_time": "3:52:52", "throughput": 5457.87, "total_tokens": 248656}
|
| 27 |
+
{"current_steps": 135, "total_steps": 40000, "loss": 3.1689, "lr": 4.999861549233688e-05, "epoch": 0.022024634962068683, "percentage": 0.34, "elapsed_time": "0:00:47", "remaining_time": "3:52:20", "throughput": 5483.13, "total_tokens": 258848}
|
| 28 |
+
{"current_steps": 140, "total_steps": 40000, "loss": 2.9884, "lr": 4.999851024427548e-05, "epoch": 0.022840362182886043, "percentage": 0.35, "elapsed_time": "0:00:48", "remaining_time": "3:51:52", "throughput": 5483.22, "total_tokens": 267936}
|
| 29 |
+
{"current_steps": 145, "total_steps": 40000, "loss": 3.4, "lr": 4.999840114112965e-05, "epoch": 0.023656089403703402, "percentage": 0.36, "elapsed_time": "0:00:50", "remaining_time": "3:51:24", "throughput": 5492.69, "total_tokens": 277456}
|
| 30 |
+
{"current_steps": 150, "total_steps": 40000, "loss": 3.2699, "lr": 4.999828818291621e-05, "epoch": 0.024471816624520762, "percentage": 0.38, "elapsed_time": "0:00:52", "remaining_time": "3:50:59", "throughput": 5492.68, "total_tokens": 286544}
|
| 31 |
+
{"current_steps": 155, "total_steps": 40000, "loss": 3.6739, "lr": 4.999817136965259e-05, "epoch": 0.025287543845338118, "percentage": 0.39, "elapsed_time": "0:00:53", "remaining_time": "3:50:36", "throughput": 5521.8, "total_tokens": 297216}
|
| 32 |
+
{"current_steps": 160, "total_steps": 40000, "loss": 3.2335, "lr": 4.9998050701356794e-05, "epoch": 0.026103271066155478, "percentage": 0.4, "elapsed_time": "0:00:55", "remaining_time": "3:50:14", "throughput": 5541.95, "total_tokens": 307472}
|
| 33 |
+
{"current_steps": 165, "total_steps": 40000, "loss": 3.7822, "lr": 4.999792617804744e-05, "epoch": 0.026918998286972837, "percentage": 0.41, "elapsed_time": "0:00:57", "remaining_time": "3:49:55", "throughput": 5564.63, "total_tokens": 317984}
|
| 34 |
+
{"current_steps": 170, "total_steps": 40000, "loss": 3.7112, "lr": 4.9997797799743724e-05, "epoch": 0.027734725507790194, "percentage": 0.43, "elapsed_time": "0:00:58", "remaining_time": "3:49:35", "throughput": 5582.9, "total_tokens": 328240}
|
| 35 |
+
{"current_steps": 175, "total_steps": 40000, "loss": 3.2021, "lr": 4.999766556646545e-05, "epoch": 0.028550452728607553, "percentage": 0.44, "elapsed_time": "0:01:00", "remaining_time": "3:49:18", "throughput": 5571.46, "total_tokens": 336848}
|
| 36 |
+
{"current_steps": 180, "total_steps": 40000, "loss": 3.1365, "lr": 4.9997529478232996e-05, "epoch": 0.029366179949424913, "percentage": 0.45, "elapsed_time": "0:01:02", "remaining_time": "3:49:01", "throughput": 5575.1, "total_tokens": 346304}
|
| 37 |
+
{"current_steps": 185, "total_steps": 40000, "loss": 4.2958, "lr": 4.9997389535067365e-05, "epoch": 0.030181907170242273, "percentage": 0.46, "elapsed_time": "0:01:03", "remaining_time": "3:48:42", "throughput": 5585.81, "total_tokens": 356160}
|
| 38 |
+
{"current_steps": 190, "total_steps": 40000, "loss": 3.601, "lr": 4.999724573699012e-05, "epoch": 0.03099763439105963, "percentage": 0.47, "elapsed_time": "0:01:05", "remaining_time": "3:48:25", "throughput": 5587.41, "total_tokens": 365488}
|
| 39 |
+
{"current_steps": 195, "total_steps": 40000, "loss": 2.9122, "lr": 4.9997098084023457e-05, "epoch": 0.031813361611876985, "percentage": 0.49, "elapsed_time": "0:01:07", "remaining_time": "3:48:09", "throughput": 5600.52, "total_tokens": 375600}
|
| 40 |
+
{"current_steps": 200, "total_steps": 40000, "loss": 2.857, "lr": 4.999694657619013e-05, "epoch": 0.032629088832694345, "percentage": 0.5, "elapsed_time": "0:01:08", "remaining_time": "3:47:52", "throughput": 5604.73, "total_tokens": 385088}
|
| 41 |
+
{"current_steps": 200, "total_steps": 40000, "eval_loss": 3.502742290496826, "epoch": 0.032629088832694345, "percentage": 0.5, "elapsed_time": "0:02:16", "remaining_time": "7:31:30", "throughput": 2828.72, "total_tokens": 385088}
|
| 42 |
+
{"current_steps": 205, "total_steps": 40000, "loss": 3.9705, "lr": 4.999679121351352e-05, "epoch": 0.033444816053511704, "percentage": 0.51, "elapsed_time": "0:02:19", "remaining_time": "7:31:01", "throughput": 2834.66, "total_tokens": 395168}
|
| 43 |
+
{"current_steps": 210, "total_steps": 40000, "loss": 3.7099, "lr": 4.9996631996017565e-05, "epoch": 0.034260543274329064, "percentage": 0.53, "elapsed_time": "0:02:21", "remaining_time": "7:25:36", "throughput": 2877.4, "total_tokens": 406016}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c60a9ffd9d47a5aae82bddb72bbf6c5ba368db80cd4ba1860cf93d7bb1659114
|
| 3 |
+
size 5752
|