jkim96 commited on
Commit
8b29352
·
verified ·
1 Parent(s): c288fc4

Add DASH-Q remote-code inference (Triton decode kernel)

Browse files
Files changed (3) hide show
  1. README.md +1 -0
  2. preprocessor_config.json +35 -0
  3. processor_config.json +73 -0
README.md CHANGED
@@ -1,5 +1,6 @@
1
  ---
2
  license: other
 
3
  base_model: LGAI-EXAONE/EXAONE-4.5-33B
4
  base_model_relation: quantized
5
  library_name: transformers
 
1
  ---
2
  license: other
3
+ pipeline_tag: image-text-to-text
4
  base_model: LGAI-EXAONE/EXAONE-4.5-33B
5
  base_model_relation: quantized
6
  library_name: transformers
preprocessor_config.json ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "crop_size": null,
3
+ "data_format": "channels_first",
4
+ "default_to_square": true,
5
+ "device": null,
6
+ "do_center_crop": null,
7
+ "do_convert_rgb": true,
8
+ "do_normalize": true,
9
+ "do_rescale": true,
10
+ "do_resize": true,
11
+ "image_mean": [
12
+ 0.48145466,
13
+ 0.4578275,
14
+ 0.40821073
15
+ ],
16
+ "image_processor_type": "Qwen2VLImageProcessor",
17
+ "image_std": [
18
+ 0.26862954,
19
+ 0.26130258,
20
+ 0.27577711
21
+ ],
22
+ "input_data_format": null,
23
+ "max_pixels": 3211264,
24
+ "merge_size": 2,
25
+ "min_pixels": 3136,
26
+ "patch_size": 14,
27
+ "resample": 3,
28
+ "rescale_factor": 0.00392156862745098,
29
+ "return_tensors": null,
30
+ "size": {
31
+ "longest_edge": 3211264,
32
+ "shortest_edge": 3136
33
+ },
34
+ "temporal_patch_size": 2
35
+ }
processor_config.json ADDED
@@ -0,0 +1,73 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "image_processor": {
3
+ "crop_size": null,
4
+ "data_format": "channels_first",
5
+ "default_to_square": true,
6
+ "device": null,
7
+ "do_center_crop": null,
8
+ "do_convert_rgb": true,
9
+ "do_normalize": true,
10
+ "do_rescale": true,
11
+ "do_resize": true,
12
+ "image_mean": [
13
+ 0.48145466,
14
+ 0.4578275,
15
+ 0.40821073
16
+ ],
17
+ "image_processor_type": "Qwen2VLImageProcessor",
18
+ "image_std": [
19
+ 0.26862954,
20
+ 0.26130258,
21
+ 0.27577711
22
+ ],
23
+ "input_data_format": null,
24
+ "max_pixels": 3211264,
25
+ "merge_size": 2,
26
+ "min_pixels": 3136,
27
+ "patch_size": 14,
28
+ "resample": 3,
29
+ "rescale_factor": 0.00392156862745098,
30
+ "return_tensors": null,
31
+ "size": {
32
+ "longest_edge": 3211264,
33
+ "shortest_edge": 3136
34
+ },
35
+ "temporal_patch_size": 2
36
+ },
37
+ "processor_class": "Exaone4_5_Processor",
38
+ "video_processor": {
39
+ "data_format": "channels_first",
40
+ "default_to_square": true,
41
+ "do_convert_rgb": true,
42
+ "do_normalize": true,
43
+ "do_rescale": true,
44
+ "do_resize": true,
45
+ "do_sample_frames": false,
46
+ "image_mean": [
47
+ 0.48145466,
48
+ 0.4578275,
49
+ 0.40821073
50
+ ],
51
+ "image_processor_type": "Qwen2VLImageProcessor",
52
+ "image_std": [
53
+ 0.26862954,
54
+ 0.26130258,
55
+ 0.27577711
56
+ ],
57
+ "max_frames": 768,
58
+ "max_pixels": 3211264,
59
+ "merge_size": 2,
60
+ "min_frames": 4,
61
+ "min_pixels": 3136,
62
+ "patch_size": 14,
63
+ "resample": 3,
64
+ "rescale_factor": 0.00392156862745098,
65
+ "return_metadata": false,
66
+ "size": {
67
+ "longest_edge": 3211264,
68
+ "shortest_edge": 3136
69
+ },
70
+ "temporal_patch_size": 2,
71
+ "video_processor_type": "Qwen2VLVideoProcessor"
72
+ }
73
+ }