File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
multimodal/vl2l/src/mlperf_inference_multimodal_vl2l Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -144,7 +144,8 @@ def to_lgtype(self) -> lg.TestSettings:
144144 settings .scenario = self .scenario .to_lgtype ()
145145 settings .mode = self .mode .to_lgtype ()
146146 settings .offline_expected_qps = self .offline_expected_qps
147- settings .min_duration_ms = round (self .min_duration .total_seconds () * 1000 )
147+ settings .min_duration_ms = round (
148+ self .min_duration .total_seconds () * 1000 )
148149 settings .use_token_latencies = self .use_token_latencies
149150 return settings
150151
@@ -229,7 +230,9 @@ def main(
229230 logger .info ("Running VL2L benchmark with settings: {}" , settings )
230231 logger .info ("Running VL2L benchmark with model: {}" , model )
231232 logger .info ("Running VL2L benchmark with dataset: {}" , dataset )
232- logger .info ("Running VL2L benchmark with OpenAI API endpoint: {}" , endpoint )
233+ logger .info (
234+ "Running VL2L benchmark with OpenAI API endpoint: {}" ,
235+ endpoint )
233236 logger .info ("Running VL2L benchmark with random seed: {}" , random_seed )
234237 lg_settings = settings .to_lgtype ()
235238 task = ShopifyGlobalCatalogue (
You can’t perform that action at this time.
0 commit comments