Skip to content

Commit

Permalink
[trainer] 0.8.41 Minor - fix missing f-string specifier and logging
Browse files Browse the repository at this point in the history
  • Loading branch information
michal-lopuszynski-tcl committed May 20, 2024
1 parent d24cf9e commit 4daaff7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/trainer_vision/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def main(args: argparse.Namespace) -> None:
task = config.get("task")
logger.info(f"Using ptdeco vision trainer {version.__version__}")
logger.info(f"Using ptdeco {ptdeco.__version__}")
logger.info("Using torch {torch.__version__}")
logger.info(f"Using torch {torch.__version__}")

if task == "decompose_lockd":
run_decompose_lockd.main(config=config, output_path=output_path)
Expand Down
2 changes: 1 addition & 1 deletion examples/trainer_vision/version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# This is parsed by setup.py, so we need to stick to str -> int parsing
__version__ = "0.8.40"
__version__ = "0.8.41"

_ver_major = int(__version__.split(".")[0])
_ver_minor = int(__version__.split(".")[1])
Expand Down

0 comments on commit 4daaff7

Please sign in to comment.