Skip to content

Commit

Permalink
invert condition for checking log_with
Browse files Browse the repository at this point in the history
  • Loading branch information
kohya-ss committed Apr 22, 2023
1 parent ed15f68 commit 66edc5a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions library/train_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -2748,7 +2748,9 @@ def prepare_accelerator(args: argparse.Namespace):
log_prefix = "" if args.log_prefix is None else args.log_prefix
logging_dir = args.logging_dir + "/" + log_prefix + time.strftime("%Y%m%d%H%M%S", time.localtime())

if args.log_with is not None:
if args.log_with is None:
log_with = None
else:
log_with = args.log_with
if log_with in ["tensorboard", "all"]:
if logging_dir is None:
Expand All @@ -2761,8 +2763,6 @@ def prepare_accelerator(args: argparse.Namespace):
if logging_dir is not None:
os.makedirs(logging_dir, exist_ok=True)
os.environ["WANDB_DIR"] = logging_dir
else:
log_with = None

accelerator = Accelerator(
gradient_accumulation_steps=args.gradient_accumulation_steps,
Expand Down

0 comments on commit 66edc5a

Please sign in to comment.