Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion examples/offline_inference/vision_language_multi_image.py
Original file line number Diff line number Diff line change
Expand Up @@ -791,7 +791,9 @@ def parse_args():
parser.add_argument(
"--num-images",
"-n",
choices=list(range(1, 13)), # 12 is the max number of images
type=int,
choices=list(range(1,
len(IMAGE_URLS) + 1)), # the max number of images
default=2,
help="Number of images to use for the demo.")
return parser.parse_args()
Expand Down