We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc20d8f commit 7ee591eCopy full SHA for 7ee591e
1 file changed
src/art/local/backend.py
@@ -1439,7 +1439,9 @@ async def _experimental_fork_checkpoint(
1439
step0_dir = get_step_checkpoint_dir(dest_model_dir, 0)
1440
if os.path.exists(step0_dir) and step0_dir != dest_checkpoint_dir:
1441
if verbose:
1442
- print(f"Overwriting initial checkpoint at {step0_dir} with forked weights")
+ print(
1443
+ f"Overwriting initial checkpoint at {step0_dir} with forked weights"
1444
+ )
1445
shutil.rmtree(step0_dir)
1446
shutil.copytree(dest_checkpoint_dir, step0_dir)
1447
0 commit comments