kobiakor15 commited on
Commit
7483603
·
verified ·
1 Parent(s): 8eb7430

Upload config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. config.json +43 -6
config.json CHANGED
@@ -39,16 +39,53 @@
39
  "projector_config": {
40
  "fused_vision_dim": 2176,
41
  "hidden_dim": 4352,
42
- "output_dim": 1536
 
43
  },
44
 
45
  "task_heads": {
46
  "segmentation_classes": 150,
47
- "detection_classes": 80
 
48
  },
49
 
50
- "reasoning_enabled": true,
51
- "thinking_token": "<think>",
52
- "thinking_end_token": "</think>",
53
- "max_thinking_tokens": 256
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
54
  }
 
39
  "projector_config": {
40
  "fused_vision_dim": 2176,
41
  "hidden_dim": 4352,
42
+ "output_dim": 1536,
43
+ "num_tokens": 64
44
  },
45
 
46
  "task_heads": {
47
  "segmentation_classes": 150,
48
+ "detection_classes": 80,
49
+ "ui_element_classes": 50
50
  },
51
 
52
+ "reasoning": {
53
+ "enabled": true,
54
+ "thinking_token": "<think>",
55
+ "thinking_end_token": "</think>",
56
+ "max_thinking_tokens": 256,
57
+ "style": "structured"
58
+ },
59
+
60
+ "focus_system": {
61
+ "enabled": true,
62
+ "focus_token": "<focus>",
63
+ "focus_end_token": "</focus>",
64
+ "max_regions": 4,
65
+ "min_crop_size": 64,
66
+ "auto_threshold": 0.7
67
+ },
68
+
69
+ "structured_output": {
70
+ "enabled": true,
71
+ "json_token": "<json>",
72
+ "json_end_token": "</json>"
73
+ },
74
+
75
+ "ocr": {
76
+ "enabled": true,
77
+ "languages": ["en"],
78
+ "confidence_threshold": 0.5
79
+ },
80
+
81
+ "ui_understanding": {
82
+ "enabled": true,
83
+ "element_classes": 50
84
+ },
85
+
86
+ "generation": {
87
+ "max_new_tokens": 512,
88
+ "temperature": 0.7,
89
+ "top_p": 0.95
90
+ }
91
  }