Skip to content

Commit

Permalink
Use absolute path for NeMo launcher repository
Browse files Browse the repository at this point in the history
  • Loading branch information
TaekyungHeo committed Nov 15, 2024
1 parent 68025cc commit a2e30ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions conf/common/test/nemo_run_llama3_8b.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,6 @@ test_template_name = "NeMoRun"

[extra_cmd_args]
"trainer.max_steps" = "5"
"trainer.val_check_interval" = "1000"
"log.ckpt.save_on_train_epoch_end" = "False"
"log.ckpt.save_last" = "False"
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def gen_exec_command(self, tr: TestRun) -> str:
)
self.final_cmd_args["cluster.gpus_per_node"] = self.system.gpus_per_node or "null"

repo_path = tdef.python_executable.git_repo.installed_path
repo_path = tdef.python_executable.git_repo.installed_path.absolute()
if not repo_path:
logging.warning(
f"Local clone of git repo {tdef.python_executable.git_repo} does not exist. "
Expand Down

0 comments on commit a2e30ee

Please sign in to comment.