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 @@ -115,7 +115,8 @@ def to_lgtype(self) -> lg.TestSettings:
115115 settings .scenario = self .senario .to_lgtype ()
116116 settings .mode = self .mode .to_lgtype ()
117117 settings .offline_expected_qps = self .offline_expected_qps
118- settings .min_duration_ms = round (self .min_duration .total_seconds () * 1000 )
118+ settings .min_duration_ms = round (
119+ self .min_duration .total_seconds () * 1000 )
119120 settings .use_token_latencies = True
120121 return settings
121122
@@ -200,7 +201,9 @@ def main(
200201 logger .info ("Running VL2L benchmark with settings: {}" , settings )
201202 logger .info ("Running VL2L benchmark with model: {}" , model )
202203 logger .info ("Running VL2L benchmark with dataset: {}" , dataset )
203- logger .info ("Running VL2L benchmark with OpenAI API endpoint: {}" , endpoint )
204+ logger .info (
205+ "Running VL2L benchmark with OpenAI API endpoint: {}" ,
206+ endpoint )
204207 logger .info ("Running VL2L benchmark with random seed: {}" , random_seed )
205208 lg_settings = settings .to_lgtype ()
206209 task = ShopifyGlobalCatalogue (
You can’t perform that action at this time.
0 commit comments