[data] update vlm args (#6976)

Former-commit-id: c28e710636a0286d4b8a1d494529b25168a8f3ab
This commit is contained in:
hoshi-hiyouga
2025-02-18 02:12:51 +08:00
committed by GitHub
parent c09b648934
commit f5cd17881e
6 changed files with 33 additions and 33 deletions

View File

@@ -58,19 +58,19 @@ class ProcessorArguments:
Arguments pertaining to the image processor.
"""
image_max_resolution: int = field(
image_max_pixels: int = field(
default=768 * 768,
metadata={"help": "The maximum number of pixels of image inputs."},
)
image_min_resolution: int = field(
image_min_pixels: int = field(
default=32 * 32,
metadata={"help": "The minimum number of pixels of image inputs."},
)
video_max_resolution: int = field(
video_max_pixels: int = field(
default=256 * 256,
metadata={"help": "The maximum number of pixels of video inputs."},
)
video_min_resolution: int = field(
video_min_pixels: int = field(
default=16 * 16,
metadata={"help": "The minimum number of pixels of video inputs."},
)