Skip to content

Commit 7f7c1c0

Browse files
committed
change utility path hsjeon
1 parent 2674717 commit 7f7c1c0

File tree

1 file changed

+1
-1
lines changed
  • genai/aws-gen-ai-kr/30_fine_tune/01-instruction-tuning-peft-lora/utils

1 file changed

+1
-1
lines changed

genai/aws-gen-ai-kr/30_fine_tune/01-instruction-tuning-peft-lora/utils/inference_lib.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def __init__(self, template_name: str = "", verbose: bool = False):
8686
if not template_name:
8787
# Enforce the default here, so the constructor can be called with '' and will not break.
8888
template_name = "alpaca"
89-
file_name = osp.join("../templates", f"{template_name}.json")
89+
file_name = osp.join("./templates", f"{template_name}.json")
9090
if not osp.exists(file_name):
9191
raise ValueError(f"Can't read {file_name}")
9292
with open(file_name) as fp:

0 commit comments

Comments
 (0)