Training in progress, step 200
Browse files- .gitattributes +1 -0
- adapter_config.json +18 -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,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"auto_mapping": null,
|
| 3 |
+
"base_model_name_or_path": "google/gemma-3-1b-it",
|
| 4 |
+
"exclude_modules": null,
|
| 5 |
+
"fan_in_fan_out": false,
|
| 6 |
+
"feedforward_modules": "down_proj",
|
| 7 |
+
"inference_mode": true,
|
| 8 |
+
"init_ia3_weights": true,
|
| 9 |
+
"modules_to_save": null,
|
| 10 |
+
"peft_type": "IA3",
|
| 11 |
+
"revision": null,
|
| 12 |
+
"target_modules": [
|
| 13 |
+
"v_proj",
|
| 14 |
+
"k_proj",
|
| 15 |
+
"down_proj"
|
| 16 |
+
],
|
| 17 |
+
"task_type": "CAUSAL_LM"
|
| 18 |
+
}
|
adapter_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0041d218e5603293fef44b1247f4d3c2dd3dc3542344df4fd25574d6a937679e
|
| 3 |
+
size 182352
|
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.3118, "lr": 4.999999876629946e-05, "epoch": 0.0006401638819537802, "percentage": 0.01, "elapsed_time": "0:00:04", "remaining_time": "10:43:10", "throughput": 6294.64, "total_tokens": 30368}
|
| 2 |
+
{"current_steps": 10, "total_steps": 40000, "loss": 15.255, "lr": 4.999999375439123e-05, "epoch": 0.0012803277639075604, "percentage": 0.03, "elapsed_time": "0:00:08", "remaining_time": "9:24:01", "throughput": 7222.47, "total_tokens": 61120}
|
| 3 |
+
{"current_steps": 15, "total_steps": 40000, "loss": 15.6717, "lr": 4.9999984887169785e-05, "epoch": 0.0019204916458613404, "percentage": 0.04, "elapsed_time": "0:00:12", "remaining_time": "8:56:02", "throughput": 7513.63, "total_tokens": 90656}
|
| 4 |
+
{"current_steps": 20, "total_steps": 40000, "loss": 14.3913, "lr": 4.9999972164636506e-05, "epoch": 0.002560655527815121, "percentage": 0.05, "elapsed_time": "0:00:15", "remaining_time": "8:41:52", "throughput": 7683.32, "total_tokens": 120352}
|
| 5 |
+
{"current_steps": 25, "total_steps": 40000, "loss": 15.308, "lr": 4.999995558679334e-05, "epoch": 0.003200819409768901, "percentage": 0.06, "elapsed_time": "0:00:19", "remaining_time": "8:33:58", "throughput": 7811.58, "total_tokens": 150656}
|
| 6 |
+
{"current_steps": 30, "total_steps": 40000, "loss": 14.5998, "lr": 4.999993515364287e-05, "epoch": 0.003840983291722681, "percentage": 0.07, "elapsed_time": "0:00:22", "remaining_time": "8:28:24", "throughput": 7892.55, "total_tokens": 180704}
|
| 7 |
+
{"current_steps": 35, "total_steps": 40000, "loss": 15.3025, "lr": 4.999991086518822e-05, "epoch": 0.004481147173676461, "percentage": 0.09, "elapsed_time": "0:00:26", "remaining_time": "8:23:40", "throughput": 7920.79, "total_tokens": 209632}
|
| 8 |
+
{"current_steps": 40, "total_steps": 40000, "loss": 16.1691, "lr": 4.999988272143315e-05, "epoch": 0.005121311055630242, "percentage": 0.1, "elapsed_time": "0:00:30", "remaining_time": "8:19:46", "throughput": 7913.59, "total_tokens": 237536}
|
| 9 |
+
{"current_steps": 45, "total_steps": 40000, "loss": 15.633, "lr": 4.999985072238199e-05, "epoch": 0.005761474937584022, "percentage": 0.11, "elapsed_time": "0:00:33", "remaining_time": "8:17:14", "throughput": 7960.69, "total_tokens": 267488}
|
| 10 |
+
{"current_steps": 50, "total_steps": 40000, "loss": 13.3293, "lr": 4.999981486803969e-05, "epoch": 0.006401638819537802, "percentage": 0.12, "elapsed_time": "0:00:37", "remaining_time": "8:15:34", "throughput": 8008.03, "total_tokens": 298016}
|
| 11 |
+
{"current_steps": 55, "total_steps": 40000, "loss": 11.9658, "lr": 4.999977515841176e-05, "epoch": 0.007041802701491582, "percentage": 0.14, "elapsed_time": "0:00:40", "remaining_time": "8:14:01", "throughput": 8021.59, "total_tokens": 327392}
|
| 12 |
+
{"current_steps": 60, "total_steps": 40000, "loss": 11.4178, "lr": 4.9999731593504344e-05, "epoch": 0.007681966583445362, "percentage": 0.15, "elapsed_time": "0:00:44", "remaining_time": "8:12:18", "throughput": 8032.08, "total_tokens": 356416}
|
| 13 |
+
{"current_steps": 65, "total_steps": 40000, "loss": 10.8348, "lr": 4.999968417332415e-05, "epoch": 0.008322130465399142, "percentage": 0.16, "elapsed_time": "0:00:47", "remaining_time": "8:10:58", "throughput": 8033.27, "total_tokens": 385184}
|
| 14 |
+
{"current_steps": 70, "total_steps": 40000, "loss": 9.9679, "lr": 4.999963289787848e-05, "epoch": 0.008962294347352922, "percentage": 0.18, "elapsed_time": "0:00:51", "remaining_time": "8:09:39", "throughput": 8039.65, "total_tokens": 414080}
|
| 15 |
+
{"current_steps": 75, "total_steps": 40000, "loss": 8.5496, "lr": 4.999957776717526e-05, "epoch": 0.009602458229306703, "percentage": 0.19, "elapsed_time": "0:00:55", "remaining_time": "8:08:27", "throughput": 8035.6, "total_tokens": 442400}
|
| 16 |
+
{"current_steps": 80, "total_steps": 40000, "loss": 8.3165, "lr": 4.9999518781222984e-05, "epoch": 0.010242622111260483, "percentage": 0.2, "elapsed_time": "0:00:58", "remaining_time": "8:07:27", "throughput": 8028.87, "total_tokens": 470592}
|
| 17 |
+
{"current_steps": 85, "total_steps": 40000, "loss": 7.7131, "lr": 4.9999455940030746e-05, "epoch": 0.010882785993214263, "percentage": 0.21, "elapsed_time": "0:01:02", "remaining_time": "8:06:39", "throughput": 8022.96, "total_tokens": 498880}
|
| 18 |
+
{"current_steps": 90, "total_steps": 40000, "loss": 7.6183, "lr": 4.999938924360824e-05, "epoch": 0.011522949875168043, "percentage": 0.22, "elapsed_time": "0:01:05", "remaining_time": "8:06:06", "throughput": 8041.83, "total_tokens": 528928}
|
| 19 |
+
{"current_steps": 95, "total_steps": 40000, "loss": 7.2746, "lr": 4.999931869196575e-05, "epoch": 0.012163113757121823, "percentage": 0.24, "elapsed_time": "0:01:09", "remaining_time": "8:05:26", "throughput": 8042.04, "total_tokens": 557632}
|
| 20 |
+
{"current_steps": 100, "total_steps": 40000, "loss": 7.1282, "lr": 4.999924428511416e-05, "epoch": 0.012803277639075603, "percentage": 0.25, "elapsed_time": "0:01:12", "remaining_time": "8:05:00", "throughput": 8054.66, "total_tokens": 587456}
|
| 21 |
+
{"current_steps": 105, "total_steps": 40000, "loss": 7.1434, "lr": 4.999916602306494e-05, "epoch": 0.013443441521029383, "percentage": 0.26, "elapsed_time": "0:01:16", "remaining_time": "8:04:27", "throughput": 8056.89, "total_tokens": 616384}
|
| 22 |
+
{"current_steps": 110, "total_steps": 40000, "loss": 7.229, "lr": 4.999908390583016e-05, "epoch": 0.014083605402983163, "percentage": 0.27, "elapsed_time": "0:01:20", "remaining_time": "8:03:49", "throughput": 8056.14, "total_tokens": 644896}
|
| 23 |
+
{"current_steps": 115, "total_steps": 40000, "loss": 7.1212, "lr": 4.999899793342247e-05, "epoch": 0.014723769284936943, "percentage": 0.29, "elapsed_time": "0:01:23", "remaining_time": "8:03:28", "throughput": 8063.38, "total_tokens": 674432}
|
| 24 |
+
{"current_steps": 120, "total_steps": 40000, "loss": 6.5919, "lr": 4.999890810585516e-05, "epoch": 0.015363933166890723, "percentage": 0.3, "elapsed_time": "0:01:27", "remaining_time": "8:03:11", "throughput": 8075.87, "total_tokens": 704512}
|
| 25 |
+
{"current_steps": 125, "total_steps": 40000, "loss": 6.1163, "lr": 4.999881442314206e-05, "epoch": 0.016004097048844503, "percentage": 0.31, "elapsed_time": "0:01:30", "remaining_time": "8:02:43", "throughput": 8070.25, "total_tokens": 732736}
|
| 26 |
+
{"current_steps": 130, "total_steps": 40000, "loss": 6.338, "lr": 4.9998716885297617e-05, "epoch": 0.016644260930798283, "percentage": 0.33, "elapsed_time": "0:01:34", "remaining_time": "8:02:41", "throughput": 8090.15, "total_tokens": 763968}
|
| 27 |
+
{"current_steps": 135, "total_steps": 40000, "loss": 6.1344, "lr": 4.999861549233688e-05, "epoch": 0.017284424812752063, "percentage": 0.34, "elapsed_time": "0:01:37", "remaining_time": "8:02:18", "throughput": 8094.53, "total_tokens": 793248}
|
| 28 |
+
{"current_steps": 140, "total_steps": 40000, "loss": 5.7879, "lr": 4.999851024427548e-05, "epoch": 0.017924588694705843, "percentage": 0.35, "elapsed_time": "0:01:41", "remaining_time": "8:02:05", "throughput": 8100.31, "total_tokens": 822944}
|
| 29 |
+
{"current_steps": 145, "total_steps": 40000, "loss": 5.2349, "lr": 4.999840114112965e-05, "epoch": 0.018564752576659623, "percentage": 0.36, "elapsed_time": "0:01:45", "remaining_time": "8:01:57", "throughput": 8103.27, "total_tokens": 852512}
|
| 30 |
+
{"current_steps": 150, "total_steps": 40000, "loss": 5.6155, "lr": 4.999828818291621e-05, "epoch": 0.019204916458613407, "percentage": 0.38, "elapsed_time": "0:01:48", "remaining_time": "8:02:25", "throughput": 8093.57, "total_tokens": 881824}
|
| 31 |
+
{"current_steps": 155, "total_steps": 40000, "loss": 4.8975, "lr": 4.999817136965259e-05, "epoch": 0.019845080340567187, "percentage": 0.39, "elapsed_time": "0:01:52", "remaining_time": "8:02:08", "throughput": 8095.22, "total_tokens": 910976}
|
| 32 |
+
{"current_steps": 160, "total_steps": 40000, "loss": 4.8536, "lr": 4.9998050701356794e-05, "epoch": 0.020485244222520967, "percentage": 0.4, "elapsed_time": "0:01:56", "remaining_time": "8:01:49", "throughput": 8097.02, "total_tokens": 940096}
|
| 33 |
+
{"current_steps": 165, "total_steps": 40000, "loss": 4.5999, "lr": 4.999792617804744e-05, "epoch": 0.021125408104474747, "percentage": 0.41, "elapsed_time": "0:01:59", "remaining_time": "8:01:40", "throughput": 8101.03, "total_tokens": 969760}
|
| 34 |
+
{"current_steps": 170, "total_steps": 40000, "loss": 4.3981, "lr": 4.9997797799743724e-05, "epoch": 0.021765571986428527, "percentage": 0.43, "elapsed_time": "0:02:03", "remaining_time": "8:01:30", "throughput": 8109.56, "total_tokens": 999968}
|
| 35 |
+
{"current_steps": 175, "total_steps": 40000, "loss": 4.1666, "lr": 4.999766556646545e-05, "epoch": 0.022405735868382307, "percentage": 0.44, "elapsed_time": "0:02:06", "remaining_time": "8:01:13", "throughput": 8109.71, "total_tokens": 1028928}
|
| 36 |
+
{"current_steps": 180, "total_steps": 40000, "loss": 3.4299, "lr": 4.9997529478232996e-05, "epoch": 0.023045899750336087, "percentage": 0.45, "elapsed_time": "0:02:10", "remaining_time": "8:00:57", "throughput": 8112.61, "total_tokens": 1058240}
|
| 37 |
+
{"current_steps": 185, "total_steps": 40000, "loss": 3.3484, "lr": 4.9997389535067365e-05, "epoch": 0.023686063632289867, "percentage": 0.46, "elapsed_time": "0:02:14", "remaining_time": "8:00:44", "throughput": 8113.77, "total_tokens": 1087456}
|
| 38 |
+
{"current_steps": 190, "total_steps": 40000, "loss": 3.36, "lr": 4.999724573699012e-05, "epoch": 0.024326227514243647, "percentage": 0.47, "elapsed_time": "0:02:17", "remaining_time": "8:00:28", "throughput": 8113.33, "total_tokens": 1116320}
|
| 39 |
+
{"current_steps": 195, "total_steps": 40000, "loss": 3.0739, "lr": 4.9997098084023457e-05, "epoch": 0.024966391396197427, "percentage": 0.49, "elapsed_time": "0:02:21", "remaining_time": "8:00:11", "throughput": 8110.27, "total_tokens": 1144736}
|
| 40 |
+
{"current_steps": 200, "total_steps": 40000, "loss": 3.1478, "lr": 4.999694657619013e-05, "epoch": 0.025606555278151207, "percentage": 0.5, "elapsed_time": "0:02:24", "remaining_time": "8:00:02", "throughput": 8111.21, "total_tokens": 1173984}
|
| 41 |
+
{"current_steps": 200, "total_steps": 40000, "eval_loss": 2.8913509845733643, "epoch": 0.025606555278151207, "percentage": 0.5, "elapsed_time": "0:05:47", "remaining_time": "19:13:25", "throughput": 3375.77, "total_tokens": 1173984}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9595cca118e713cfabeb5177de0452d1503ed2cdbc5251ae8a9d064b13999d86
|
| 3 |
+
size 5752
|