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:1e207c821ac0bc667903cc1de1f0a402fb3c779dc8f2ee2e1c047a3d11ac47b4
|
| 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.3181, "lr": 4.999999876629946e-05, "epoch": 0.0023573785950023575, "percentage": 0.01, "elapsed_time": "0:00:04", "remaining_time": "9:13:11", "throughput": 1037.24, "total_tokens": 4304}
|
| 2 |
+
{"current_steps": 10, "total_steps": 40000, "loss": 3.4016, "lr": 4.999999375439123e-05, "epoch": 0.004714757190004715, "percentage": 0.03, "elapsed_time": "0:00:06", "remaining_time": "6:55:11", "throughput": 1353.56, "total_tokens": 8432}
|
| 3 |
+
{"current_steps": 15, "total_steps": 40000, "loss": 3.6651, "lr": 4.9999984887169785e-05, "epoch": 0.007072135785007072, "percentage": 0.04, "elapsed_time": "0:00:07", "remaining_time": "5:48:47", "throughput": 1616.15, "total_tokens": 12688}
|
| 4 |
+
{"current_steps": 20, "total_steps": 40000, "loss": 2.5727, "lr": 4.9999972164636506e-05, "epoch": 0.00942951438000943, "percentage": 0.05, "elapsed_time": "0:00:09", "remaining_time": "5:15:30", "throughput": 1833.18, "total_tokens": 17360}
|
| 5 |
+
{"current_steps": 25, "total_steps": 40000, "loss": 3.6417, "lr": 4.999995558679334e-05, "epoch": 0.011786892975011787, "percentage": 0.06, "elapsed_time": "0:00:11", "remaining_time": "4:55:13", "throughput": 1968.66, "total_tokens": 21808}
|
| 6 |
+
{"current_steps": 30, "total_steps": 40000, "loss": 2.8592, "lr": 4.999993515364287e-05, "epoch": 0.014144271570014143, "percentage": 0.07, "elapsed_time": "0:00:12", "remaining_time": "4:41:33", "throughput": 2046.73, "total_tokens": 25952}
|
| 7 |
+
{"current_steps": 35, "total_steps": 40000, "loss": 3.2495, "lr": 4.999991086518822e-05, "epoch": 0.0165016501650165, "percentage": 0.09, "elapsed_time": "0:00:14", "remaining_time": "4:32:01", "throughput": 2068.53, "total_tokens": 29568}
|
| 8 |
+
{"current_steps": 40, "total_steps": 40000, "loss": 3.6548, "lr": 4.999988272143315e-05, "epoch": 0.01885902876001886, "percentage": 0.1, "elapsed_time": "0:00:15", "remaining_time": "4:25:32", "throughput": 2113.86, "total_tokens": 33712}
|
| 9 |
+
{"current_steps": 45, "total_steps": 40000, "loss": 3.9781, "lr": 4.999985072238199e-05, "epoch": 0.021216407355021217, "percentage": 0.11, "elapsed_time": "0:00:17", "remaining_time": "4:19:47", "throughput": 2156.32, "total_tokens": 37856}
|
| 10 |
+
{"current_steps": 50, "total_steps": 40000, "loss": 2.9699, "lr": 4.999981486803969e-05, "epoch": 0.023573785950023574, "percentage": 0.12, "elapsed_time": "0:00:19", "remaining_time": "4:15:08", "throughput": 2188.81, "total_tokens": 41936}
|
| 11 |
+
{"current_steps": 55, "total_steps": 40000, "loss": 3.6207, "lr": 4.999977515841176e-05, "epoch": 0.02593116454502593, "percentage": 0.14, "elapsed_time": "0:00:20", "remaining_time": "4:11:21", "throughput": 2236.72, "total_tokens": 46448}
|
| 12 |
+
{"current_steps": 60, "total_steps": 40000, "loss": 3.8764, "lr": 4.9999731593504344e-05, "epoch": 0.028288543140028287, "percentage": 0.15, "elapsed_time": "0:00:22", "remaining_time": "4:08:12", "throughput": 2285.03, "total_tokens": 51120}
|
| 13 |
+
{"current_steps": 65, "total_steps": 40000, "loss": 3.5528, "lr": 4.999968417332415e-05, "epoch": 0.030645921735030647, "percentage": 0.16, "elapsed_time": "0:00:23", "remaining_time": "4:05:32", "throughput": 2315.27, "total_tokens": 55520}
|
| 14 |
+
{"current_steps": 70, "total_steps": 40000, "loss": 2.8439, "lr": 4.999963289787848e-05, "epoch": 0.033003300330033, "percentage": 0.18, "elapsed_time": "0:00:25", "remaining_time": "4:03:17", "throughput": 2363.93, "total_tokens": 60496}
|
| 15 |
+
{"current_steps": 75, "total_steps": 40000, "loss": 3.0624, "lr": 4.999957776717526e-05, "epoch": 0.03536067892503536, "percentage": 0.19, "elapsed_time": "0:00:27", "remaining_time": "4:01:17", "throughput": 2366.83, "total_tokens": 64368}
|
| 16 |
+
{"current_steps": 80, "total_steps": 40000, "loss": 3.1747, "lr": 4.9999518781222984e-05, "epoch": 0.03771805752003772, "percentage": 0.2, "elapsed_time": "0:00:28", "remaining_time": "3:59:33", "throughput": 2385.78, "total_tokens": 68720}
|
| 17 |
+
{"current_steps": 85, "total_steps": 40000, "loss": 3.0803, "lr": 4.9999455940030746e-05, "epoch": 0.040075436115040074, "percentage": 0.21, "elapsed_time": "0:00:30", "remaining_time": "3:58:07", "throughput": 2385.91, "total_tokens": 72592}
|
| 18 |
+
{"current_steps": 90, "total_steps": 40000, "loss": 3.0761, "lr": 4.999938924360824e-05, "epoch": 0.042432814710042434, "percentage": 0.22, "elapsed_time": "0:00:32", "remaining_time": "3:56:43", "throughput": 2384.77, "total_tokens": 76384}
|
| 19 |
+
{"current_steps": 95, "total_steps": 40000, "loss": 3.8674, "lr": 4.999931869196575e-05, "epoch": 0.04479019330504479, "percentage": 0.24, "elapsed_time": "0:00:33", "remaining_time": "3:55:27", "throughput": 2385.22, "total_tokens": 80224}
|
| 20 |
+
{"current_steps": 100, "total_steps": 40000, "loss": 3.3456, "lr": 4.999924428511416e-05, "epoch": 0.04714757190004715, "percentage": 0.25, "elapsed_time": "0:00:35", "remaining_time": "3:54:22", "throughput": 2403.29, "total_tokens": 84704}
|
| 21 |
+
{"current_steps": 105, "total_steps": 40000, "loss": 2.6927, "lr": 4.999916602306494e-05, "epoch": 0.04950495049504951, "percentage": 0.26, "elapsed_time": "0:00:36", "remaining_time": "3:53:20", "throughput": 2406.79, "total_tokens": 88688}
|
| 22 |
+
{"current_steps": 110, "total_steps": 40000, "loss": 2.548, "lr": 4.999908390583016e-05, "epoch": 0.05186232909005186, "percentage": 0.27, "elapsed_time": "0:00:38", "remaining_time": "3:52:25", "throughput": 2423.17, "total_tokens": 93184}
|
| 23 |
+
{"current_steps": 115, "total_steps": 40000, "loss": 2.7135, "lr": 4.999899793342247e-05, "epoch": 0.05421970768505422, "percentage": 0.29, "elapsed_time": "0:00:40", "remaining_time": "3:51:33", "throughput": 2451.18, "total_tokens": 98192}
|
| 24 |
+
{"current_steps": 120, "total_steps": 40000, "loss": 3.3028, "lr": 4.999890810585516e-05, "epoch": 0.056577086280056574, "percentage": 0.3, "elapsed_time": "0:00:41", "remaining_time": "3:50:46", "throughput": 2469.93, "total_tokens": 102912}
|
| 25 |
+
{"current_steps": 125, "total_steps": 40000, "loss": 3.0543, "lr": 4.999881442314206e-05, "epoch": 0.058934464875058934, "percentage": 0.31, "elapsed_time": "0:00:43", "remaining_time": "3:50:05", "throughput": 2504.47, "total_tokens": 108384}
|
| 26 |
+
{"current_steps": 130, "total_steps": 40000, "loss": 3.2932, "lr": 4.9998716885297617e-05, "epoch": 0.061291843470061294, "percentage": 0.33, "elapsed_time": "0:00:44", "remaining_time": "3:49:31", "throughput": 2522.06, "total_tokens": 113248}
|
| 27 |
+
{"current_steps": 135, "total_steps": 40000, "loss": 3.7265, "lr": 4.999861549233688e-05, "epoch": 0.06364922206506365, "percentage": 0.34, "elapsed_time": "0:00:46", "remaining_time": "3:48:54", "throughput": 2534.31, "total_tokens": 117872}
|
| 28 |
+
{"current_steps": 140, "total_steps": 40000, "loss": 3.6222, "lr": 4.999851024427548e-05, "epoch": 0.066006600660066, "percentage": 0.35, "elapsed_time": "0:00:48", "remaining_time": "3:48:18", "throughput": 2539.36, "total_tokens": 122176}
|
| 29 |
+
{"current_steps": 145, "total_steps": 40000, "loss": 2.3929, "lr": 4.999840114112965e-05, "epoch": 0.06836397925506836, "percentage": 0.36, "elapsed_time": "0:00:49", "remaining_time": "3:47:44", "throughput": 2543.12, "total_tokens": 126432}
|
| 30 |
+
{"current_steps": 150, "total_steps": 40000, "loss": 2.9133, "lr": 4.999828818291621e-05, "epoch": 0.07072135785007072, "percentage": 0.38, "elapsed_time": "0:00:51", "remaining_time": "3:47:13", "throughput": 2544.42, "total_tokens": 130576}
|
| 31 |
+
{"current_steps": 155, "total_steps": 40000, "loss": 3.3196, "lr": 4.999817136965259e-05, "epoch": 0.07307873644507308, "percentage": 0.39, "elapsed_time": "0:00:52", "remaining_time": "3:46:44", "throughput": 2554.41, "total_tokens": 135184}
|
| 32 |
+
{"current_steps": 160, "total_steps": 40000, "loss": 2.6439, "lr": 4.9998050701356794e-05, "epoch": 0.07543611504007544, "percentage": 0.4, "elapsed_time": "0:00:54", "remaining_time": "3:46:17", "throughput": 2553.66, "total_tokens": 139248}
|
| 33 |
+
{"current_steps": 165, "total_steps": 40000, "loss": 3.1255, "lr": 4.999792617804744e-05, "epoch": 0.07779349363507779, "percentage": 0.41, "elapsed_time": "0:00:56", "remaining_time": "3:45:50", "throughput": 2565.22, "total_tokens": 143984}
|
| 34 |
+
{"current_steps": 170, "total_steps": 40000, "loss": 3.1224, "lr": 4.9997797799743724e-05, "epoch": 0.08015087223008015, "percentage": 0.43, "elapsed_time": "0:00:57", "remaining_time": "3:45:25", "throughput": 2575.89, "total_tokens": 148704}
|
| 35 |
+
{"current_steps": 175, "total_steps": 40000, "loss": 3.3138, "lr": 4.999766556646545e-05, "epoch": 0.08250825082508251, "percentage": 0.44, "elapsed_time": "0:00:59", "remaining_time": "3:45:02", "throughput": 2586.03, "total_tokens": 153440}
|
| 36 |
+
{"current_steps": 180, "total_steps": 40000, "loss": 3.02, "lr": 4.9997529478232996e-05, "epoch": 0.08486562942008487, "percentage": 0.45, "elapsed_time": "0:01:00", "remaining_time": "3:44:43", "throughput": 2580.21, "total_tokens": 157264}
|
| 37 |
+
{"current_steps": 185, "total_steps": 40000, "loss": 3.3455, "lr": 4.9997389535067365e-05, "epoch": 0.08722300801508723, "percentage": 0.46, "elapsed_time": "0:01:02", "remaining_time": "3:44:22", "throughput": 2587.16, "total_tokens": 161840}
|
| 38 |
+
{"current_steps": 190, "total_steps": 40000, "loss": 3.384, "lr": 4.999724573699012e-05, "epoch": 0.08958038661008957, "percentage": 0.47, "elapsed_time": "0:01:04", "remaining_time": "3:44:02", "throughput": 2581.48, "total_tokens": 165616}
|
| 39 |
+
{"current_steps": 195, "total_steps": 40000, "loss": 3.4483, "lr": 4.9997098084023457e-05, "epoch": 0.09193776520509193, "percentage": 0.49, "elapsed_time": "0:01:05", "remaining_time": "3:43:44", "throughput": 2581.28, "total_tokens": 169760}
|
| 40 |
+
{"current_steps": 200, "total_steps": 40000, "loss": 2.6453, "lr": 4.999694657619013e-05, "epoch": 0.0942951438000943, "percentage": 0.5, "elapsed_time": "0:01:07", "remaining_time": "3:43:28", "throughput": 2583.81, "total_tokens": 174096}
|
| 41 |
+
{"current_steps": 200, "total_steps": 40000, "eval_loss": 3.203144073486328, "epoch": 0.0942951438000943, "percentage": 0.5, "elapsed_time": "0:01:27", "remaining_time": "4:51:10", "throughput": 1983.01, "total_tokens": 174096}
|
| 42 |
+
{"current_steps": 205, "total_steps": 40000, "loss": 3.3474, "lr": 4.999679121351352e-05, "epoch": 0.09665252239509665, "percentage": 0.51, "elapsed_time": "0:01:31", "remaining_time": "4:54:30", "throughput": 1963.17, "total_tokens": 178704}
|
| 43 |
+
{"current_steps": 210, "total_steps": 40000, "loss": 3.3527, "lr": 4.9996631996017565e-05, "epoch": 0.09900990099009901, "percentage": 0.53, "elapsed_time": "0:01:32", "remaining_time": "4:52:37", "throughput": 1973.89, "total_tokens": 182912}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2eb19a27bdd0086df7315396c4fa207271d8f7456abd9cb77ab5e40422d6bbb3
|
| 3 |
+
size 5752
|