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 +41 -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:7d014ec8387ca809a2c5a0ace89469357e60c4a9250abf9ead33d5f3809fd852
|
| 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,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{"current_steps": 5, "total_steps": 40000, "loss": 15.318, "lr": 4.999999876629946e-05, "epoch": 0.0006401638819537802, "percentage": 0.01, "elapsed_time": "0:00:06", "remaining_time": "14:14:00", "throughput": 4740.61, "total_tokens": 30368}
|
| 2 |
+
{"current_steps": 10, "total_steps": 40000, "loss": 15.2409, "lr": 4.999999375439123e-05, "epoch": 0.0012803277639075604, "percentage": 0.03, "elapsed_time": "0:00:09", "remaining_time": "10:59:25", "throughput": 6177.64, "total_tokens": 61120}
|
| 3 |
+
{"current_steps": 15, "total_steps": 40000, "loss": 15.6965, "lr": 4.9999984887169785e-05, "epoch": 0.0019204916458613404, "percentage": 0.04, "elapsed_time": "0:00:13", "remaining_time": "9:52:39", "throughput": 6795.98, "total_tokens": 90656}
|
| 4 |
+
{"current_steps": 20, "total_steps": 40000, "loss": 14.3972, "lr": 4.9999972164636506e-05, "epoch": 0.002560655527815121, "percentage": 0.05, "elapsed_time": "0:00:16", "remaining_time": "9:19:23", "throughput": 7168.06, "total_tokens": 120352}
|
| 5 |
+
{"current_steps": 25, "total_steps": 40000, "loss": 15.3146, "lr": 4.999995558679334e-05, "epoch": 0.003200819409768901, "percentage": 0.06, "elapsed_time": "0:00:20", "remaining_time": "8:59:58", "throughput": 7435.44, "total_tokens": 150656}
|
| 6 |
+
{"current_steps": 30, "total_steps": 40000, "loss": 14.6181, "lr": 4.999993515364287e-05, "epoch": 0.003840983291722681, "percentage": 0.07, "elapsed_time": "0:00:23", "remaining_time": "8:46:46", "throughput": 7617.31, "total_tokens": 180704}
|
| 7 |
+
{"current_steps": 35, "total_steps": 40000, "loss": 15.3107, "lr": 4.999991086518822e-05, "epoch": 0.004481147173676461, "percentage": 0.09, "elapsed_time": "0:00:27", "remaining_time": "8:36:13", "throughput": 7728.09, "total_tokens": 209632}
|
| 8 |
+
{"current_steps": 40, "total_steps": 40000, "loss": 16.1322, "lr": 4.999988272143315e-05, "epoch": 0.005121311055630242, "percentage": 0.1, "elapsed_time": "0:00:30", "remaining_time": "8:28:08", "throughput": 7783.11, "total_tokens": 237536}
|
| 9 |
+
{"current_steps": 45, "total_steps": 40000, "loss": 16.0034, "lr": 4.999985072238199e-05, "epoch": 0.005761474937584022, "percentage": 0.11, "elapsed_time": "0:00:33", "remaining_time": "8:22:20", "throughput": 7879.69, "total_tokens": 267488}
|
| 10 |
+
{"current_steps": 50, "total_steps": 40000, "loss": 14.5426, "lr": 4.999981486803969e-05, "epoch": 0.006401638819537802, "percentage": 0.12, "elapsed_time": "0:00:37", "remaining_time": "8:18:10", "throughput": 7966.21, "total_tokens": 298016}
|
| 11 |
+
{"current_steps": 55, "total_steps": 40000, "loss": 14.2286, "lr": 4.999977515841176e-05, "epoch": 0.007041802701491582, "percentage": 0.14, "elapsed_time": "0:00:40", "remaining_time": "8:14:33", "throughput": 8013.12, "total_tokens": 327392}
|
| 12 |
+
{"current_steps": 60, "total_steps": 40000, "loss": 14.6176, "lr": 4.9999731593504344e-05, "epoch": 0.007681966583445362, "percentage": 0.15, "elapsed_time": "0:00:44", "remaining_time": "8:11:18", "throughput": 8048.44, "total_tokens": 356416}
|
| 13 |
+
{"current_steps": 65, "total_steps": 40000, "loss": 15.2734, "lr": 4.999968417332415e-05, "epoch": 0.008322130465399142, "percentage": 0.16, "elapsed_time": "0:00:47", "remaining_time": "8:08:20", "throughput": 8076.82, "total_tokens": 385184}
|
| 14 |
+
{"current_steps": 70, "total_steps": 40000, "loss": 15.2232, "lr": 4.999963289787848e-05, "epoch": 0.008962294347352922, "percentage": 0.18, "elapsed_time": "0:00:51", "remaining_time": "8:05:38", "throughput": 8106.32, "total_tokens": 414080}
|
| 15 |
+
{"current_steps": 75, "total_steps": 40000, "loss": 14.4353, "lr": 4.999957776717526e-05, "epoch": 0.009602458229306703, "percentage": 0.19, "elapsed_time": "0:00:54", "remaining_time": "8:03:15", "throughput": 8122.05, "total_tokens": 442400}
|
| 16 |
+
{"current_steps": 80, "total_steps": 40000, "loss": 15.3412, "lr": 4.9999518781222984e-05, "epoch": 0.010242622111260483, "percentage": 0.2, "elapsed_time": "0:00:57", "remaining_time": "8:01:10", "throughput": 8133.63, "total_tokens": 470592}
|
| 17 |
+
{"current_steps": 85, "total_steps": 40000, "loss": 15.233, "lr": 4.9999455940030746e-05, "epoch": 0.010882785993214263, "percentage": 0.21, "elapsed_time": "0:01:01", "remaining_time": "7:59:26", "throughput": 8143.88, "total_tokens": 498880}
|
| 18 |
+
{"current_steps": 90, "total_steps": 40000, "loss": 15.4797, "lr": 4.999938924360824e-05, "epoch": 0.011522949875168043, "percentage": 0.22, "elapsed_time": "0:01:04", "remaining_time": "7:58:11", "throughput": 8174.91, "total_tokens": 528928}
|
| 19 |
+
{"current_steps": 95, "total_steps": 40000, "loss": 14.9452, "lr": 4.999931869196575e-05, "epoch": 0.012163113757121823, "percentage": 0.24, "elapsed_time": "0:01:08", "remaining_time": "7:56:48", "throughput": 8187.64, "total_tokens": 557632}
|
| 20 |
+
{"current_steps": 100, "total_steps": 40000, "loss": 14.8516, "lr": 4.999924428511416e-05, "epoch": 0.012803277639075603, "percentage": 0.25, "elapsed_time": "0:01:11", "remaining_time": "7:55:44", "throughput": 8211.69, "total_tokens": 587456}
|
| 21 |
+
{"current_steps": 105, "total_steps": 40000, "loss": 14.9926, "lr": 4.999916602306494e-05, "epoch": 0.013443441521029383, "percentage": 0.26, "elapsed_time": "0:01:14", "remaining_time": "7:54:33", "throughput": 8225.02, "total_tokens": 616384}
|
| 22 |
+
{"current_steps": 110, "total_steps": 40000, "loss": 15.343, "lr": 4.999908390583016e-05, "epoch": 0.014083605402983163, "percentage": 0.27, "elapsed_time": "0:01:18", "remaining_time": "7:53:22", "throughput": 8233.85, "total_tokens": 644896}
|
| 23 |
+
{"current_steps": 115, "total_steps": 40000, "loss": 15.1719, "lr": 4.999899793342247e-05, "epoch": 0.014723769284936943, "percentage": 0.29, "elapsed_time": "0:01:21", "remaining_time": "7:52:38", "throughput": 8248.36, "total_tokens": 674432}
|
| 24 |
+
{"current_steps": 120, "total_steps": 40000, "loss": 15.2813, "lr": 4.999890810585516e-05, "epoch": 0.015363933166890723, "percentage": 0.3, "elapsed_time": "0:01:25", "remaining_time": "7:51:59", "throughput": 8267.56, "total_tokens": 704512}
|
| 25 |
+
{"current_steps": 125, "total_steps": 40000, "loss": 14.3003, "lr": 4.999881442314206e-05, "epoch": 0.016004097048844503, "percentage": 0.31, "elapsed_time": "0:01:28", "remaining_time": "7:51:01", "throughput": 8270.62, "total_tokens": 732736}
|
| 26 |
+
{"current_steps": 130, "total_steps": 40000, "loss": 15.0838, "lr": 4.9998716885297617e-05, "epoch": 0.016644260930798283, "percentage": 0.33, "elapsed_time": "0:01:32", "remaining_time": "7:50:47", "throughput": 8294.64, "total_tokens": 763968}
|
| 27 |
+
{"current_steps": 135, "total_steps": 40000, "loss": 15.5232, "lr": 4.999861549233688e-05, "epoch": 0.017284424812752063, "percentage": 0.34, "elapsed_time": "0:01:35", "remaining_time": "7:50:07", "throughput": 8304.28, "total_tokens": 793248}
|
| 28 |
+
{"current_steps": 140, "total_steps": 40000, "loss": 15.2213, "lr": 4.999851024427548e-05, "epoch": 0.017924588694705843, "percentage": 0.35, "elapsed_time": "0:01:38", "remaining_time": "7:49:36", "throughput": 8315.53, "total_tokens": 822944}
|
| 29 |
+
{"current_steps": 145, "total_steps": 40000, "loss": 14.0815, "lr": 4.999840114112965e-05, "epoch": 0.018564752576659623, "percentage": 0.36, "elapsed_time": "0:01:42", "remaining_time": "7:49:05", "throughput": 8325.3, "total_tokens": 852512}
|
| 30 |
+
{"current_steps": 150, "total_steps": 40000, "loss": 15.0929, "lr": 4.999828818291621e-05, "epoch": 0.019204916458613407, "percentage": 0.38, "elapsed_time": "0:01:46", "remaining_time": "7:49:22", "throughput": 8318.59, "total_tokens": 881824}
|
| 31 |
+
{"current_steps": 155, "total_steps": 40000, "loss": 15.2447, "lr": 4.999817136965259e-05, "epoch": 0.019845080340567187, "percentage": 0.39, "elapsed_time": "0:01:49", "remaining_time": "7:48:52", "throughput": 8324.28, "total_tokens": 910976}
|
| 32 |
+
{"current_steps": 160, "total_steps": 40000, "loss": 14.7413, "lr": 4.9998050701356794e-05, "epoch": 0.020485244222520967, "percentage": 0.4, "elapsed_time": "0:01:52", "remaining_time": "7:48:20", "throughput": 8330.31, "total_tokens": 940096}
|
| 33 |
+
{"current_steps": 165, "total_steps": 40000, "loss": 14.9901, "lr": 4.999792617804744e-05, "epoch": 0.021125408104474747, "percentage": 0.41, "elapsed_time": "0:01:56", "remaining_time": "7:47:57", "throughput": 8338.57, "total_tokens": 969760}
|
| 34 |
+
{"current_steps": 170, "total_steps": 40000, "loss": 15.1492, "lr": 4.9997797799743724e-05, "epoch": 0.021765571986428527, "percentage": 0.43, "elapsed_time": "0:01:59", "remaining_time": "7:47:38", "throughput": 8349.98, "total_tokens": 999968}
|
| 35 |
+
{"current_steps": 175, "total_steps": 40000, "loss": 15.2314, "lr": 4.999766556646545e-05, "epoch": 0.022405735868382307, "percentage": 0.44, "elapsed_time": "0:02:03", "remaining_time": "7:47:10", "throughput": 8353.6, "total_tokens": 1028928}
|
| 36 |
+
{"current_steps": 180, "total_steps": 40000, "loss": 14.5333, "lr": 4.9997529478232996e-05, "epoch": 0.023045899750336087, "percentage": 0.45, "elapsed_time": "0:02:06", "remaining_time": "7:46:45", "throughput": 8359.22, "total_tokens": 1058240}
|
| 37 |
+
{"current_steps": 185, "total_steps": 40000, "loss": 14.8102, "lr": 4.9997389535067365e-05, "epoch": 0.023686063632289867, "percentage": 0.46, "elapsed_time": "0:02:10", "remaining_time": "7:46:23", "throughput": 8363.53, "total_tokens": 1087456}
|
| 38 |
+
{"current_steps": 190, "total_steps": 40000, "loss": 14.9887, "lr": 4.999724573699012e-05, "epoch": 0.024326227514243647, "percentage": 0.47, "elapsed_time": "0:02:13", "remaining_time": "7:45:57", "throughput": 8366.07, "total_tokens": 1116320}
|
| 39 |
+
{"current_steps": 195, "total_steps": 40000, "loss": 14.9871, "lr": 4.9997098084023457e-05, "epoch": 0.024966391396197427, "percentage": 0.49, "elapsed_time": "0:02:16", "remaining_time": "7:45:32", "throughput": 8365.77, "total_tokens": 1144736}
|
| 40 |
+
{"current_steps": 200, "total_steps": 40000, "loss": 15.566, "lr": 4.999694657619013e-05, "epoch": 0.025606555278151207, "percentage": 0.5, "elapsed_time": "0:02:20", "remaining_time": "7:45:14", "throughput": 8369.13, "total_tokens": 1173984}
|
| 41 |
+
{"current_steps": 200, "total_steps": 40000, "eval_loss": 15.096641540527344, "epoch": 0.025606555278151207, "percentage": 0.5, "elapsed_time": "0:05:27", "remaining_time": "18:06:39", "throughput": 3583.18, "total_tokens": 1173984}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:61308b129bb7d3ce9d0ec1cf4c39bb0c234964e922f23b902b5d82cef0bb2143
|
| 3 |
+
size 5752
|