[data] update vlm args (#6976)

This commit is contained in:
hoshi-hiyouga
2025-02-18 02:12:51 +08:00
committed by GitHub
parent 7faecc0301
commit 3da2cc2710
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."},
)