File tree Expand file tree Collapse file tree 3 files changed +15
-15
lines changed
vllm/model_executor/models Expand file tree Collapse file tree 3 files changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -146,11 +146,11 @@ def get_hf_processor(
146
146
kwargs ["fps" ] = fps
147
147
processor = self .ctx .get_hf_processor (
148
148
Qwen2_5OmniProcessor ,
149
- image_processor = self .get_image_processor (
150
- min_pixels = min_pixels ,
151
- max_pixels = max_pixels ,
152
- size = size ,
153
- use_fast = kwargs . get ( "use_fast" , True )),
149
+ image_processor = self .get_image_processor (min_pixels = min_pixels ,
150
+ max_pixels = max_pixels ,
151
+ size = size ,
152
+ use_fast = kwargs . get (
153
+ "use_fast" , True )),
154
154
** kwargs ,
155
155
)
156
156
if not hasattr (processor , "audio_token" ):
Original file line number Diff line number Diff line change @@ -794,11 +794,11 @@ def get_hf_processor(
794
794
795
795
return self .ctx .get_hf_processor (
796
796
Qwen2_5_VLProcessor ,
797
- image_processor = self .get_image_processor (
798
- min_pixels = min_pixels ,
799
- max_pixels = max_pixels ,
800
- size = size ,
801
- use_fast = kwargs . get ( "use_fast" , True )),
797
+ image_processor = self .get_image_processor (min_pixels = min_pixels ,
798
+ max_pixels = max_pixels ,
799
+ size = size ,
800
+ use_fast = kwargs . get (
801
+ "use_fast" , True )),
802
802
** kwargs ,
803
803
)
804
804
Original file line number Diff line number Diff line change @@ -759,11 +759,11 @@ def get_hf_processor(
759
759
) -> Qwen2VLProcessor :
760
760
return self .ctx .get_hf_processor (
761
761
Qwen2VLProcessor ,
762
- image_processor = self .get_image_processor (
763
- min_pixels = min_pixels ,
764
- max_pixels = max_pixels ,
765
- size = size ,
766
- use_fast = kwargs . get ( "use_fast" , True )),
762
+ image_processor = self .get_image_processor (min_pixels = min_pixels ,
763
+ max_pixels = max_pixels ,
764
+ size = size ,
765
+ use_fast = kwargs . get (
766
+ "use_fast" , True )),
767
767
** kwargs ,
768
768
)
769
769
You can’t perform that action at this time.
0 commit comments