Skip to content

Commit

Permalink
When resuming from a checkpoint we were printing the wrong variable o…
Browse files Browse the repository at this point in the history
…n the maskgit training and so it was not properly displayed on the console. This was only a visual bug and the right variable was used for resuming.
  • Loading branch information
ZeroCool940711 committed Sep 16, 2023
1 parent 9e9a86c commit 32d1acb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion train_muse_maskgit.py
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,7 @@ def main():
else:
ema_vae = None

print(f"Resuming VAE from latest checkpoint: {args.resume_path}")
print(f"Resuming VAE from latest checkpoint: {args.vae_path}")
else:
accelerator.print("Resuming VAE from: ", args.vae_path)
ema_vae = None
Expand Down

0 comments on commit 32d1acb

Please sign in to comment.