Skip to content

Commit e517a9e

Browse files
committed
fix(evaluate): update backup pass_k result path
1 parent d40eceb commit e517a9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bigcodebench/evaluate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ def stucking_checker():
370370
print(f"Save pass@k to {pass_at_k_path}? [Y/N]")
371371
decision = input()
372372
if decision.lower() == "y":
373-
new_path = result_path + ".bak"
373+
new_path = pass_at_k_path + ".bak"
374374
while os.path.isfile(new_path):
375375
new_path += ".bak"
376376
os.rename(pass_at_k_path, new_path)

0 commit comments

Comments
 (0)