Skip to content

Commit

Permalink
fix ckpt path
Browse files Browse the repository at this point in the history
  • Loading branch information
mcw92 committed Mar 12, 2024
1 parent 45caa0a commit 8b95599
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tutorials/torch_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ def ind_loss(params: Dict[str, Union[int, float, str]]) -> float:
# Set up separate logger for Propulate optimization.
set_logger_config(
level=logging.INFO, # Logging level
log_file=f"./{pathlib.Path(__file__).stem}.log", # Logging path
log_file=f"{log_path}/{pathlib.Path(__file__).stem}.log", # Logging path
log_to_stdout=True, # Print log on stdout.
log_rank=False, # Do not prepend MPI rank to logging messages.
colors=True, # Use colors.
Expand Down

0 comments on commit 8b95599

Please sign in to comment.