Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoyu-work committed Sep 3, 2024
1 parent 043bac9 commit 9fcefc1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion olive/cli/capture_onnx.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def run(self):
output_path = Path(self.args.output_path)
logger.info("ONNX Model is saved to %s", output_path.resolve())
else:
logger.error("Failed to capture ONNX graph. Please set the log_level to 1 for more detailed logs.")
logger.error("Failed to run capture-onnx-graph. Please set the log_level to 1 for more detailed logs.")

def get_run_config(self, tempdir: str) -> Dict:
config = deepcopy(TEMPLATE)
Expand Down
2 changes: 1 addition & 1 deletion olive/cli/finetune.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def run(self):
hardlink_copy_dir(Path(tempdir) / "-".join(run_config["passes"].keys()) / "gpu-cuda_model", output_path)
logger.info("Model and adapters saved to %s", output_path.resolve())
else:
logger.error("Failed to run fintune. Please set the log_level to 1 for more detailed logs.")
logger.error("Failed to run finetune. Please set the log_level to 1 for more detailed logs.")

def parse_training_args(self) -> Dict:
if not self.unknown_args:
Expand Down

0 comments on commit 9fcefc1

Please sign in to comment.