@@ -53,7 +53,7 @@ def main(args):
53
53
54
54
image = load_image (args .image_file )
55
55
# Similar operation in model_worker.py
56
- image_tensor = process_images ([image ], image_processor , args )
56
+ image_tensor = process_images ([image ], image_processor , model . config )
57
57
if type (image_tensor ) is list :
58
58
image_tensor = [image .to (model .device , dtype = torch .float16 ) for image in image_tensor ]
59
59
else :
@@ -94,7 +94,7 @@ def main(args):
94
94
output_ids = model .generate (
95
95
input_ids ,
96
96
images = image_tensor ,
97
- do_sample = True ,
97
+ do_sample = True if args . temperature > 0 else False ,
98
98
temperature = args .temperature ,
99
99
max_new_tokens = args .max_new_tokens ,
100
100
streamer = streamer ,
@@ -120,6 +120,5 @@ def main(args):
120
120
parser .add_argument ("--load-8bit" , action = "store_true" )
121
121
parser .add_argument ("--load-4bit" , action = "store_true" )
122
122
parser .add_argument ("--debug" , action = "store_true" )
123
- parser .add_argument ("--image-aspect-ratio" , type = str , default = 'pad' )
124
123
args = parser .parse_args ()
125
124
main (args )
0 commit comments