craigwu commited on
Commit
02a05c3
1 Parent(s): b3a234b

Training in progress, step 1000

Browse files
config.json ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "lmsys/vicuna-7b-v1.5",
3
+ "add_faster_video": false,
4
+ "add_time_instruction": false,
5
+ "architectures": [
6
+ "LlavaLlamaForCausalLM"
7
+ ],
8
+ "attention_bias": false,
9
+ "attention_dropout": 0.0,
10
+ "bos_token_id": 1,
11
+ "concise_reduce_factor": 4,
12
+ "eos_token_id": 2,
13
+ "fast_vision": false,
14
+ "fast_vision_start_layer": 0,
15
+ "faster_token_stride": 10,
16
+ "force_sample": false,
17
+ "hidden_act": "silu",
18
+ "hidden_size": 4096,
19
+ "image_aspect_ratio": "square",
20
+ "image_crop_resolution": null,
21
+ "image_grid_pinpoints": null,
22
+ "image_split_resolution": null,
23
+ "image_token_len_per_side": 24,
24
+ "initializer_range": 0.02,
25
+ "intermediate_size": 11008,
26
+ "max_num_image_crops": 1,
27
+ "max_position_embeddings": 4096,
28
+ "mm_hidden_size": 1024,
29
+ "mm_newline_position": "one_token",
30
+ "mm_patch_merge_type": "flat",
31
+ "mm_projector_lr": null,
32
+ "mm_projector_type": "mlp2x_gelu",
33
+ "mm_resampler_type": null,
34
+ "mm_spatial_pool_mode": "bilinear",
35
+ "mm_spatial_pool_stride": null,
36
+ "mm_tunable_parts": "mm_mlp_adapter",
37
+ "mm_use_im_patch_token": false,
38
+ "mm_use_im_start_end": false,
39
+ "mm_vision_mlp_lr": null,
40
+ "mm_vision_select_feature": "patch",
41
+ "mm_vision_select_layer": -2,
42
+ "mm_vision_tower": "openai/clip-vit-large-patch14-336",
43
+ "mm_vision_tower_lr": null,
44
+ "model_type": "llama",
45
+ "num_attention_heads": 32,
46
+ "num_hidden_layers": 32,
47
+ "num_key_value_heads": 32,
48
+ "pad_token_id": 0,
49
+ "per_crop_token_len": 576,
50
+ "pos_skipping_range": 4096,
51
+ "pretraining_tp": 1,
52
+ "rms_norm_eps": 1e-05,
53
+ "rope_scaling": null,
54
+ "rope_theta": 10000.0,
55
+ "tie_word_embeddings": false,
56
+ "tokenizer_model_max_length": 2048,
57
+ "tokenizer_padding_side": "right",
58
+ "torch_dtype": "bfloat16",
59
+ "transformers_version": "4.40.0.dev0",
60
+ "use_cache": false,
61
+ "use_mm_proj": true,
62
+ "use_pos_skipping": false,
63
+ "vision_tower_pretrained": null,
64
+ "vocab_size": 32000
65
+ }
special_tokens_map.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "pad_token": "<unk>",
17
+ "unk_token": {
18
+ "content": "<unk>",
19
+ "lstrip": false,
20
+ "normalized": false,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ }
24
+ }
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,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ },
31
+ "bos_token": "<s>",
32
+ "clean_up_tokenization_spaces": false,
33
+ "eos_token": "</s>",
34
+ "legacy": false,
35
+ "model_max_length": 2048,
36
+ "pad_token": "<unk>",
37
+ "padding_side": "right",
38
+ "sp_model_kwargs": {},
39
+ "spaces_between_special_tokens": false,
40
+ "tokenizer_class": "LlamaTokenizer",
41
+ "unk_token": "<unk>",
42
+ "use_default_system_prompt": false
43
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f9d5bf4f4f16e08d14f08804c1ea17e6a4115b109729fd124c8178c2f4d8a4b9
3
+ size 7928