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 +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,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:67565f3a84a8cde195c565fe6b44c9c25ae38644e66b22c8a59543a4fb5d8531
|
| 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,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{"current_steps": 5, "total_steps": 40000, "loss": 7.3595, "lr": 4.999999876629946e-05, "epoch": 0.05555555555555555, "percentage": 0.01, "elapsed_time": "0:00:04", "remaining_time": "9:21:05", "throughput": 326.93, "total_tokens": 1376}
|
| 2 |
+
{"current_steps": 10, "total_steps": 40000, "loss": 7.6691, "lr": 4.999999375439123e-05, "epoch": 0.1111111111111111, "percentage": 0.03, "elapsed_time": "0:00:06", "remaining_time": "6:53:44", "throughput": 451.05, "total_tokens": 2800}
|
| 3 |
+
{"current_steps": 15, "total_steps": 40000, "loss": 7.9391, "lr": 4.9999984887169785e-05, "epoch": 0.16666666666666666, "percentage": 0.04, "elapsed_time": "0:00:07", "remaining_time": "5:52:09", "throughput": 534.9, "total_tokens": 4240}
|
| 4 |
+
{"current_steps": 20, "total_steps": 40000, "loss": 7.7538, "lr": 4.9999972164636506e-05, "epoch": 0.2222222222222222, "percentage": 0.05, "elapsed_time": "0:00:09", "remaining_time": "5:21:04", "throughput": 587.73, "total_tokens": 5664}
|
| 5 |
+
{"current_steps": 25, "total_steps": 40000, "loss": 7.1566, "lr": 4.999995558679334e-05, "epoch": 0.2777777777777778, "percentage": 0.06, "elapsed_time": "0:00:11", "remaining_time": "5:02:00", "throughput": 624.06, "total_tokens": 7072}
|
| 6 |
+
{"current_steps": 30, "total_steps": 40000, "loss": 6.8696, "lr": 4.999993515364287e-05, "epoch": 0.3333333333333333, "percentage": 0.07, "elapsed_time": "0:00:13", "remaining_time": "4:49:13", "throughput": 651.07, "total_tokens": 8480}
|
| 7 |
+
{"current_steps": 35, "total_steps": 40000, "loss": 7.8009, "lr": 4.999991086518822e-05, "epoch": 0.3888888888888889, "percentage": 0.09, "elapsed_time": "0:00:14", "remaining_time": "4:40:26", "throughput": 667.74, "total_tokens": 9840}
|
| 8 |
+
{"current_steps": 40, "total_steps": 40000, "loss": 8.2798, "lr": 4.999988272143315e-05, "epoch": 0.4444444444444444, "percentage": 0.1, "elapsed_time": "0:00:16", "remaining_time": "4:33:39", "throughput": 681.42, "total_tokens": 11200}
|
| 9 |
+
{"current_steps": 45, "total_steps": 40000, "loss": 7.4146, "lr": 4.999985072238199e-05, "epoch": 0.5, "percentage": 0.11, "elapsed_time": "0:00:18", "remaining_time": "4:28:18", "throughput": 697.15, "total_tokens": 12640}
|
| 10 |
+
{"current_steps": 50, "total_steps": 40000, "loss": 6.8518, "lr": 4.999981486803969e-05, "epoch": 0.5555555555555556, "percentage": 0.12, "elapsed_time": "0:00:19", "remaining_time": "4:24:01", "throughput": 707.75, "total_tokens": 14032}
|
| 11 |
+
{"current_steps": 55, "total_steps": 40000, "loss": 5.7519, "lr": 4.999977515841176e-05, "epoch": 0.6111111111111112, "percentage": 0.14, "elapsed_time": "0:00:21", "remaining_time": "4:20:29", "throughput": 718.93, "total_tokens": 15472}
|
| 12 |
+
{"current_steps": 60, "total_steps": 40000, "loss": 5.3544, "lr": 4.9999731593504344e-05, "epoch": 0.6666666666666666, "percentage": 0.15, "elapsed_time": "0:00:23", "remaining_time": "4:17:34", "throughput": 727.74, "total_tokens": 16896}
|
| 13 |
+
{"current_steps": 65, "total_steps": 40000, "loss": 4.1454, "lr": 4.999968417332415e-05, "epoch": 0.7222222222222222, "percentage": 0.16, "elapsed_time": "0:00:24", "remaining_time": "4:15:07", "throughput": 735.91, "total_tokens": 18336}
|
| 14 |
+
{"current_steps": 70, "total_steps": 40000, "loss": 3.0636, "lr": 4.999963289787848e-05, "epoch": 0.7777777777777778, "percentage": 0.18, "elapsed_time": "0:00:26", "remaining_time": "4:12:59", "throughput": 742.57, "total_tokens": 19760}
|
| 15 |
+
{"current_steps": 75, "total_steps": 40000, "loss": 3.6125, "lr": 4.999957776717526e-05, "epoch": 0.8333333333333334, "percentage": 0.19, "elapsed_time": "0:00:28", "remaining_time": "4:11:05", "throughput": 746.85, "total_tokens": 21136}
|
| 16 |
+
{"current_steps": 80, "total_steps": 40000, "loss": 3.0044, "lr": 4.9999518781222984e-05, "epoch": 0.8888888888888888, "percentage": 0.2, "elapsed_time": "0:00:30", "remaining_time": "4:09:33", "throughput": 751.31, "total_tokens": 22544}
|
| 17 |
+
{"current_steps": 85, "total_steps": 40000, "loss": 2.0468, "lr": 4.9999455940030746e-05, "epoch": 0.9444444444444444, "percentage": 0.21, "elapsed_time": "0:00:31", "remaining_time": "4:08:11", "throughput": 754.31, "total_tokens": 23920}
|
| 18 |
+
{"current_steps": 90, "total_steps": 40000, "loss": 2.4001, "lr": 4.999938924360824e-05, "epoch": 1.0, "percentage": 0.22, "elapsed_time": "0:00:33", "remaining_time": "4:07:40", "throughput": 755.3, "total_tokens": 25312}
|
| 19 |
+
{"current_steps": 95, "total_steps": 40000, "loss": 1.9364, "lr": 4.999931869196575e-05, "epoch": 1.0555555555555556, "percentage": 0.24, "elapsed_time": "0:00:35", "remaining_time": "4:08:12", "throughput": 753.65, "total_tokens": 26720}
|
| 20 |
+
{"current_steps": 100, "total_steps": 40000, "loss": 1.6966, "lr": 4.999924428511416e-05, "epoch": 1.1111111111111112, "percentage": 0.25, "elapsed_time": "0:00:37", "remaining_time": "4:07:01", "throughput": 756.34, "total_tokens": 28096}
|
| 21 |
+
{"current_steps": 105, "total_steps": 40000, "loss": 1.1831, "lr": 4.999916602306494e-05, "epoch": 1.1666666666666667, "percentage": 0.26, "elapsed_time": "0:00:38", "remaining_time": "4:05:59", "throughput": 759.12, "total_tokens": 29488}
|
| 22 |
+
{"current_steps": 110, "total_steps": 40000, "loss": 1.8339, "lr": 4.999908390583016e-05, "epoch": 1.2222222222222223, "percentage": 0.27, "elapsed_time": "0:00:40", "remaining_time": "4:05:01", "throughput": 761.71, "total_tokens": 30880}
|
| 23 |
+
{"current_steps": 115, "total_steps": 40000, "loss": 1.6853, "lr": 4.999899793342247e-05, "epoch": 1.2777777777777777, "percentage": 0.29, "elapsed_time": "0:00:42", "remaining_time": "4:04:10", "throughput": 763.62, "total_tokens": 32256}
|
| 24 |
+
{"current_steps": 120, "total_steps": 40000, "loss": 1.1354, "lr": 4.999890810585516e-05, "epoch": 1.3333333333333333, "percentage": 0.3, "elapsed_time": "0:00:43", "remaining_time": "4:03:20", "throughput": 765.16, "total_tokens": 33616}
|
| 25 |
+
{"current_steps": 125, "total_steps": 40000, "loss": 0.8846, "lr": 4.999881442314206e-05, "epoch": 1.3888888888888888, "percentage": 0.31, "elapsed_time": "0:00:45", "remaining_time": "4:02:39", "throughput": 767.74, "total_tokens": 35040}
|
| 26 |
+
{"current_steps": 130, "total_steps": 40000, "loss": 0.8034, "lr": 4.9998716885297617e-05, "epoch": 1.4444444444444444, "percentage": 0.33, "elapsed_time": "0:00:47", "remaining_time": "4:01:57", "throughput": 770.69, "total_tokens": 36480}
|
| 27 |
+
{"current_steps": 135, "total_steps": 40000, "loss": 1.0813, "lr": 4.999861549233688e-05, "epoch": 1.5, "percentage": 0.34, "elapsed_time": "0:00:49", "remaining_time": "4:01:17", "throughput": 772.79, "total_tokens": 37888}
|
| 28 |
+
{"current_steps": 140, "total_steps": 40000, "loss": 0.8779, "lr": 4.999851024427548e-05, "epoch": 1.5555555555555556, "percentage": 0.35, "elapsed_time": "0:00:50", "remaining_time": "4:00:41", "throughput": 774.73, "total_tokens": 39296}
|
| 29 |
+
{"current_steps": 145, "total_steps": 40000, "loss": 0.7859, "lr": 4.999840114112965e-05, "epoch": 1.6111111111111112, "percentage": 0.36, "elapsed_time": "0:00:52", "remaining_time": "4:00:07", "throughput": 776.55, "total_tokens": 40704}
|
| 30 |
+
{"current_steps": 150, "total_steps": 40000, "loss": 0.6751, "lr": 4.999828818291621e-05, "epoch": 1.6666666666666665, "percentage": 0.38, "elapsed_time": "0:00:54", "remaining_time": "3:59:36", "throughput": 778.2, "total_tokens": 42112}
|
| 31 |
+
{"current_steps": 155, "total_steps": 40000, "loss": 0.6771, "lr": 4.999817136965259e-05, "epoch": 1.7222222222222223, "percentage": 0.39, "elapsed_time": "0:00:55", "remaining_time": "3:59:07", "throughput": 779.76, "total_tokens": 43520}
|
| 32 |
+
{"current_steps": 160, "total_steps": 40000, "loss": 0.8089, "lr": 4.9998050701356794e-05, "epoch": 1.7777777777777777, "percentage": 0.4, "elapsed_time": "0:00:57", "remaining_time": "3:58:39", "throughput": 780.96, "total_tokens": 44912}
|
| 33 |
+
{"current_steps": 165, "total_steps": 40000, "loss": 0.4834, "lr": 4.999792617804744e-05, "epoch": 1.8333333333333335, "percentage": 0.41, "elapsed_time": "0:00:59", "remaining_time": "3:58:12", "throughput": 781.62, "total_tokens": 46272}
|
| 34 |
+
{"current_steps": 170, "total_steps": 40000, "loss": 0.524, "lr": 4.9997797799743724e-05, "epoch": 1.8888888888888888, "percentage": 0.43, "elapsed_time": "0:01:00", "remaining_time": "3:57:49", "throughput": 782.59, "total_tokens": 47664}
|
| 35 |
+
{"current_steps": 175, "total_steps": 40000, "loss": 0.6669, "lr": 4.999766556646545e-05, "epoch": 1.9444444444444444, "percentage": 0.44, "elapsed_time": "0:01:02", "remaining_time": "3:57:27", "throughput": 783.84, "total_tokens": 49072}
|
| 36 |
+
{"current_steps": 180, "total_steps": 40000, "loss": 0.5133, "lr": 4.9997529478232996e-05, "epoch": 2.0, "percentage": 0.45, "elapsed_time": "0:01:04", "remaining_time": "3:57:32", "throughput": 783.27, "total_tokens": 50464}
|
| 37 |
+
{"current_steps": 185, "total_steps": 40000, "loss": 0.7405, "lr": 4.9997389535067365e-05, "epoch": 2.0555555555555554, "percentage": 0.46, "elapsed_time": "0:01:06", "remaining_time": "3:58:01", "throughput": 782.15, "total_tokens": 51904}
|
| 38 |
+
{"current_steps": 190, "total_steps": 40000, "loss": 0.5696, "lr": 4.999724573699012e-05, "epoch": 2.111111111111111, "percentage": 0.47, "elapsed_time": "0:01:08", "remaining_time": "3:57:38", "throughput": 782.92, "total_tokens": 53280}
|
| 39 |
+
{"current_steps": 195, "total_steps": 40000, "loss": 0.5297, "lr": 4.9997098084023457e-05, "epoch": 2.1666666666666665, "percentage": 0.49, "elapsed_time": "0:01:09", "remaining_time": "3:57:17", "throughput": 784.57, "total_tokens": 54720}
|
| 40 |
+
{"current_steps": 200, "total_steps": 40000, "loss": 0.5214, "lr": 4.999694657619013e-05, "epoch": 2.2222222222222223, "percentage": 0.5, "elapsed_time": "0:01:11", "remaining_time": "3:56:56", "throughput": 786.34, "total_tokens": 56176}
|
| 41 |
+
{"current_steps": 200, "total_steps": 40000, "eval_loss": 0.5373854041099548, "epoch": 2.2222222222222223, "percentage": 0.5, "elapsed_time": "0:01:12", "remaining_time": "4:01:01", "throughput": 773.0, "total_tokens": 56176}
|
| 42 |
+
{"current_steps": 205, "total_steps": 40000, "loss": 0.5265, "lr": 4.999679121351352e-05, "epoch": 2.2777777777777777, "percentage": 0.51, "elapsed_time": "0:01:15", "remaining_time": "4:05:02", "throughput": 760.29, "total_tokens": 57584}
|
| 43 |
+
{"current_steps": 210, "total_steps": 40000, "loss": 0.4839, "lr": 4.9996631996017565e-05, "epoch": 2.3333333333333335, "percentage": 0.53, "elapsed_time": "0:01:17", "remaining_time": "4:04:36", "throughput": 760.98, "total_tokens": 58944}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7e4282cb81ba4dbeb5bd7786319c5e5075652ee40d5f720552137f2288b1f118
|
| 3 |
+
size 5752
|