File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -223,7 +223,7 @@ def evaluate_model_arc(
223223
224224 # Convert DataFrame rows to dictionaries for processing
225225 questions_data = df .to_dict ("records" )
226-
226+
227227 with ThreadPoolExecutor (max_workers = concurrent_requests ) as executor :
228228 futures = []
229229 for question_data in questions_data :
@@ -303,7 +303,7 @@ def save_results_arc(
303303 "failed_queries" : analysis ["failed_queries" ],
304304 "avg_response_time" : analysis ["avg_response_time" ],
305305 }
306-
306+
307307 with open (os .path .join (model_dir , "summary.json" ), "w" ) as f :
308308 json .dump (summary , f , indent = 2 )
309309
@@ -339,7 +339,7 @@ def main():
339339
340340 if args .models and len (args .models ) == 1 and "," in args .models [0 ]:
341341 args .models = args .models [0 ].split ("," )
342-
342+
343343 print (f"Models to evaluate: { args .models } " )
344344
345345 # Load dataset
You can’t perform that action at this time.
0 commit comments