[bug] fix duplicate variable MAX_PIXELS in qwen_vl.py (#4419)

This commit is contained in:
Baoyuan Qi
2025-03-14 16:28:25 +08:00
committed by GitHub
parent 1ce4878d31
commit 642ab418f3

View File

@@ -25,7 +25,6 @@ class Qwen2_5VLImageProcessor(BaseImageProcessor):
self.IMAGE_FACTOR = 28
self.MIN_PIXELS = 4 * 28 * 28
self.MAX_PIXELS = 16384 * 28 * 28
self.MAX_PIXELS = 16384 * 28 * 28
self.MAX_RATIO = 200
@staticmethod