[data] update vlm args (#6976)
Former-commit-id: c28e710636a0286d4b8a1d494529b25168a8f3ab
This commit is contained in:
@@ -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."},
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user