We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14e2f12 commit db6f28dCopy full SHA for db6f28d
vllm/model_executor/models/interns1.py
@@ -182,7 +182,10 @@ class InternS1ProcessingInfo(BaseProcessingInfo):
182
def get_hf_processor(self, **kwargs: object) -> InternVLProcessor:
183
hf_processor = self.ctx.get_hf_processor(InternVLProcessor, **kwargs)
184
hf_processor.video_processor = cached_video_processor_from_config(
185
- self.ctx.model_config, processor_cls=InternVLVideoProcessor, **kwargs
+ self.ctx.model_config,
186
+ processor_cls=InternVLVideoProcessor,
187
+ size=hf_processor.image_processor.size,
188
+ **kwargs,
189
)
190
return hf_processor
191
0 commit comments