khoatd94 commited on
Commit
14417ab
·
verified ·
1 Parent(s): 656c764

Training in progress, step 20

Browse files
Files changed (29) hide show
  1. adapter_config.json +40 -0
  2. adapter_model.safetensors +3 -0
  3. added_tokens.json +4 -0
  4. chat_template.json +3 -0
  5. huggingface/video_llava_demo/lightning_logs/version_0/hparams.yaml +1 -0
  6. huggingface/video_llava_demo/lightning_logs/version_1/hparams.yaml +1 -0
  7. huggingface/video_llava_demo/lightning_logs/version_10/hparams.yaml +1 -0
  8. huggingface/video_llava_demo/lightning_logs/version_11/hparams.yaml +1 -0
  9. huggingface/video_llava_demo/lightning_logs/version_11/metrics.csv +9 -0
  10. huggingface/video_llava_demo/lightning_logs/version_12/hparams.yaml +1 -0
  11. huggingface/video_llava_demo/lightning_logs/version_13/hparams.yaml +1 -0
  12. huggingface/video_llava_demo/lightning_logs/version_13/metrics.csv +2 -0
  13. huggingface/video_llava_demo/lightning_logs/version_14/checkpoints/epoch=0-step=2.ckpt +3 -0
  14. huggingface/video_llava_demo/lightning_logs/version_14/hparams.yaml +1 -0
  15. huggingface/video_llava_demo/lightning_logs/version_14/metrics.csv +2 -0
  16. huggingface/video_llava_demo/lightning_logs/version_2/hparams.yaml +1 -0
  17. huggingface/video_llava_demo/lightning_logs/version_3/hparams.yaml +1 -0
  18. huggingface/video_llava_demo/lightning_logs/version_4/hparams.yaml +1 -0
  19. huggingface/video_llava_demo/lightning_logs/version_5/hparams.yaml +1 -0
  20. huggingface/video_llava_demo/lightning_logs/version_6/hparams.yaml +1 -0
  21. huggingface/video_llava_demo/lightning_logs/version_7/hparams.yaml +1 -0
  22. huggingface/video_llava_demo/lightning_logs/version_8/hparams.yaml +1 -0
  23. huggingface/video_llava_demo/lightning_logs/version_9/hparams.yaml +1 -0
  24. preprocessor_config.json +51 -0
  25. processor_config.json +8 -0
  26. special_tokens_map.json +32 -0
  27. tokenizer.model +3 -0
  28. tokenizer_config.json +67 -0
  29. training_args.bin +3 -0
adapter_config.json ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": {
4
+ "base_model_class": "LlavaNextVideoForConditionalGeneration",
5
+ "parent_library": "transformers.models.llava_next_video.modeling_llava_next_video"
6
+ },
7
+ "base_model_name_or_path": "llava-hf/LLaVa-NeXT-Video-7b-hf",
8
+ "bias": "none",
9
+ "eva_config": null,
10
+ "exclude_modules": null,
11
+ "fan_in_fan_out": false,
12
+ "inference_mode": true,
13
+ "init_lora_weights": "gaussian",
14
+ "layer_replication": null,
15
+ "layers_pattern": null,
16
+ "layers_to_transform": null,
17
+ "loftq_config": {},
18
+ "lora_alpha": 8,
19
+ "lora_bias": false,
20
+ "lora_dropout": 0.1,
21
+ "megatron_config": null,
22
+ "megatron_core": "megatron.core",
23
+ "modules_to_save": null,
24
+ "peft_type": "LORA",
25
+ "r": 8,
26
+ "rank_pattern": {},
27
+ "revision": null,
28
+ "target_modules": [
29
+ "down_proj",
30
+ "v_proj",
31
+ "gate_proj",
32
+ "k_proj",
33
+ "up_proj",
34
+ "q_proj",
35
+ "o_proj"
36
+ ],
37
+ "task_type": null,
38
+ "use_dora": false,
39
+ "use_rslora": false
40
+ }
adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:908613c797d07da1fb282a6ad8972ef9185d53a68a0d908d76dcfc29d1cf5bd5
3
+ size 84761704
added_tokens.json ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ {
2
+ "<image>": 32001,
3
+ "<video>": 32000
4
+ }
chat_template.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "chat_template": "{% for message in messages %}{% if message['role'] != 'system' %}{{ message['role'].upper() + ': '}}{% endif %}{# Render all images first #}{% for content in message['content'] | selectattr('type', 'equalto', 'image') %}{{ '<image>\n' }}{% endfor %}{# Render all images first #}{% for content in message['content'] | selectattr('type', 'equalto', 'video') %}{{ '<video>\n' }}{% endfor %}{# Render all text next #}{% if message['role'] != 'assistant' %}{% for content in message['content'] | selectattr('type', 'equalto', 'text') %}{{ content['text'] + ' '}}{% endfor %}{% else %}{% for content in message['content'] | selectattr('type', 'equalto', 'text') %}{% generation %}{{ content['text'] + ' '}}{% endgeneration %}{% endfor %}{% endif %}{% endfor %}{% if add_generation_prompt %}{{ 'ASSISTANT:' }}{% endif %}"
3
+ }
huggingface/video_llava_demo/lightning_logs/version_0/hparams.yaml ADDED
@@ -0,0 +1 @@
 
 
1
+ {}
huggingface/video_llava_demo/lightning_logs/version_1/hparams.yaml ADDED
@@ -0,0 +1 @@
 
 
1
+ {}
huggingface/video_llava_demo/lightning_logs/version_10/hparams.yaml ADDED
@@ -0,0 +1 @@
 
 
1
+ {}
huggingface/video_llava_demo/lightning_logs/version_11/hparams.yaml ADDED
@@ -0,0 +1 @@
 
 
1
+ {}
huggingface/video_llava_demo/lightning_logs/version_11/metrics.csv ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ epoch,step,train_loss,val_accuracy
2
+ 0,49,3.80435848236084,
3
+ 0,99,3.7000603675842285,
4
+ 0,149,3.7685372829437256,
5
+ 0,199,3.7591216564178467,
6
+ 0,249,3.6957693099975586,
7
+ 0,299,3.69533109664917,
8
+ 0,349,3.75651216506958,
9
+ 0,359,,0.0
huggingface/video_llava_demo/lightning_logs/version_12/hparams.yaml ADDED
@@ -0,0 +1 @@
 
 
1
+ {}
huggingface/video_llava_demo/lightning_logs/version_13/hparams.yaml ADDED
@@ -0,0 +1 @@
 
 
1
+ {}
huggingface/video_llava_demo/lightning_logs/version_13/metrics.csv ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ epoch,step,val_accuracy
2
+ 0,23,0.0
huggingface/video_llava_demo/lightning_logs/version_14/checkpoints/epoch=0-step=2.ckpt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7c9334766203b37308344719867b0ccb6037cc0b55023c2d01522afbe19abe4f
3
+ size 5316278235
huggingface/video_llava_demo/lightning_logs/version_14/hparams.yaml ADDED
@@ -0,0 +1 @@
 
 
1
+ {}
huggingface/video_llava_demo/lightning_logs/version_14/metrics.csv ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ epoch,step,val_accuracy
2
+ 0,1,0.0
huggingface/video_llava_demo/lightning_logs/version_2/hparams.yaml ADDED
@@ -0,0 +1 @@
 
 
1
+ {}
huggingface/video_llava_demo/lightning_logs/version_3/hparams.yaml ADDED
@@ -0,0 +1 @@
 
 
1
+ {}
huggingface/video_llava_demo/lightning_logs/version_4/hparams.yaml ADDED
@@ -0,0 +1 @@
 
 
1
+ {}
huggingface/video_llava_demo/lightning_logs/version_5/hparams.yaml ADDED
@@ -0,0 +1 @@
 
 
1
+ {}
huggingface/video_llava_demo/lightning_logs/version_6/hparams.yaml ADDED
@@ -0,0 +1 @@
 
 
1
+ {}
huggingface/video_llava_demo/lightning_logs/version_7/hparams.yaml ADDED
@@ -0,0 +1 @@
 
 
1
+ {}
huggingface/video_llava_demo/lightning_logs/version_8/hparams.yaml ADDED
@@ -0,0 +1 @@
 
 
1
+ {}
huggingface/video_llava_demo/lightning_logs/version_9/hparams.yaml ADDED
@@ -0,0 +1 @@
 
 
1
+ {}
preprocessor_config.json ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "crop_size": {
3
+ "height": 336,
4
+ "width": 336
5
+ },
6
+ "do_center_crop": true,
7
+ "do_convert_rgb": true,
8
+ "do_normalize": true,
9
+ "do_pad": true,
10
+ "do_rescale": true,
11
+ "do_resize": true,
12
+ "image_grid_pinpoints": [
13
+ [
14
+ 336,
15
+ 672
16
+ ],
17
+ [
18
+ 672,
19
+ 336
20
+ ],
21
+ [
22
+ 672,
23
+ 672
24
+ ],
25
+ [
26
+ 1008,
27
+ 336
28
+ ],
29
+ [
30
+ 336,
31
+ 1008
32
+ ]
33
+ ],
34
+ "image_mean": [
35
+ 0.48145466,
36
+ 0.4578275,
37
+ 0.40821073
38
+ ],
39
+ "image_processor_type": "LlavaNextImageProcessor",
40
+ "image_std": [
41
+ 0.26862954,
42
+ 0.26130258,
43
+ 0.27577711
44
+ ],
45
+ "processor_class": "LlavaNextVideoProcessor",
46
+ "resample": 3,
47
+ "rescale_factor": 0.00392156862745098,
48
+ "size": {
49
+ "shortest_edge": 336
50
+ }
51
+ }
processor_config.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "image_token": "<image>",
3
+ "num_additional_image_tokens": 1,
4
+ "patch_size": 14,
5
+ "processor_class": "LlavaNextVideoProcessor",
6
+ "video_token": "<video>",
7
+ "vision_feature_select_strategy": "default"
8
+ }
special_tokens_map.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<s>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "</s>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "image_token": "<image>",
17
+ "pad_token": {
18
+ "content": "<unk>",
19
+ "lstrip": false,
20
+ "normalized": false,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ },
24
+ "unk_token": {
25
+ "content": "<unk>",
26
+ "lstrip": false,
27
+ "normalized": false,
28
+ "rstrip": false,
29
+ "single_word": false
30
+ },
31
+ "video_token": "<video>"
32
+ }
tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e556afd44213b6bd1be2b850ebbbd98f5481437a8021afaf58ee7fb1818d347
3
+ size 499723
tokenizer_config.json ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": true,
3
+ "add_eos_token": false,
4
+ "add_prefix_space": true,
5
+ "added_tokens_decoder": {
6
+ "0": {
7
+ "content": "<unk>",
8
+ "lstrip": false,
9
+ "normalized": false,
10
+ "rstrip": false,
11
+ "single_word": false,
12
+ "special": true
13
+ },
14
+ "1": {
15
+ "content": "<s>",
16
+ "lstrip": false,
17
+ "normalized": false,
18
+ "rstrip": false,
19
+ "single_word": false,
20
+ "special": true
21
+ },
22
+ "2": {
23
+ "content": "</s>",
24
+ "lstrip": false,
25
+ "normalized": false,
26
+ "rstrip": false,
27
+ "single_word": false,
28
+ "special": true
29
+ },
30
+ "32000": {
31
+ "content": "<video>",
32
+ "lstrip": false,
33
+ "normalized": false,
34
+ "rstrip": false,
35
+ "single_word": false,
36
+ "special": true
37
+ },
38
+ "32001": {
39
+ "content": "<image>",
40
+ "lstrip": false,
41
+ "normalized": false,
42
+ "rstrip": false,
43
+ "single_word": false,
44
+ "special": true
45
+ }
46
+ },
47
+ "bos_token": "<s>",
48
+ "clean_up_tokenization_spaces": false,
49
+ "eos_token": "</s>",
50
+ "extra_special_tokens": {
51
+ "image_token": "<image>",
52
+ "video_token": "<video>"
53
+ },
54
+ "image_token": "<image>",
55
+ "legacy": false,
56
+ "model_max_length": 4096,
57
+ "pad_token": "<unk>",
58
+ "padding_side": "right",
59
+ "processor_class": "LlavaNextVideoProcessor",
60
+ "sp_model_kwargs": {},
61
+ "spaces_between_special_tokens": false,
62
+ "tokenizer_class": "LlamaTokenizer",
63
+ "unk_token": "<unk>",
64
+ "use_default_system_prompt": false,
65
+ "use_fast": false,
66
+ "video_token": "<video>"
67
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:759992907ff319884cad476736c33b366106cd38315e3a0543aee4e734d8349d
3
+ size 5304