Trouter-Library commited on
Commit
43866f9
·
verified ·
1 Parent(s): d7f83cb

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +66 -0
config.json ADDED
@@ -0,0 +1,66 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "LlavaForCausalLM"
4
+ ],
5
+ "model_type": "llava",
6
+ "torch_dtype": "bfloat16",
7
+ "transformers_version": "4.36.0",
8
+ "_name_or_path": "DeepXR/Helion-V2.0-Thinking",
9
+ "vision_config": {
10
+ "hidden_size": 1152,
11
+ "image_size": 384,
12
+ "intermediate_size": 4304,
13
+ "model_type": "siglip_vision_model",
14
+ "num_attention_heads": 16,
15
+ "num_hidden_layers": 27,
16
+ "patch_size": 14,
17
+ "projection_dim": 768,
18
+ "vocab_size": 32000
19
+ },
20
+ "text_config": {
21
+ "architectures": [
22
+ "LlamaForCausalLM"
23
+ ],
24
+ "attention_bias": false,
25
+ "attention_dropout": 0.0,
26
+ "bos_token_id": 1,
27
+ "eos_token_id": 2,
28
+ "hidden_act": "silu",
29
+ "hidden_size": 4096,
30
+ "initializer_range": 0.02,
31
+ "intermediate_size": 14336,
32
+ "max_position_embeddings": 200000,
33
+ "model_type": "llama",
34
+ "num_attention_heads": 32,
35
+ "num_hidden_layers": 48,
36
+ "num_key_value_heads": 8,
37
+ "pretraining_tp": 1,
38
+ "rms_norm_eps": 1e-05,
39
+ "rope_scaling": {
40
+ "type": "linear",
41
+ "factor": 8.0
42
+ },
43
+ "rope_theta": 500000.0,
44
+ "tie_word_embeddings": false,
45
+ "torch_dtype": "bfloat16",
46
+ "use_cache": true,
47
+ "vocab_size": 32000,
48
+ "pad_token_id": 0
49
+ },
50
+ "image_token_index": 32000,
51
+ "vision_feature_select_strategy": "default",
52
+ "vision_feature_layer": -2,
53
+ "use_flash_attention_2": true,
54
+ "ignore_index": -100,
55
+ "image_seq_length": 729,
56
+ "vocab_size": 32001,
57
+ "projector_hidden_act": "gelu",
58
+ "vision_aspect_ratio": "anyres",
59
+ "image_grid_pinpoints": [
60
+ [336, 672],
61
+ [672, 336],
62
+ [672, 672],
63
+ [1008, 336],
64
+ [336, 1008]
65
+ ]
66
+ }