Skip to content

Commit 4a24304

Browse files
author
Orbax Authors
committed
Do not raise an error when a temp checkpoint path doesn't exist
PiperOrigin-RevId: 731754800
1 parent acec3f3 commit 4a24304

File tree

1 file changed

+6
-0
lines changed
  • checkpoint/orbax/checkpoint/_src/path

1 file changed

+6
-0
lines changed

checkpoint/orbax/checkpoint/_src/path/step.py

+6
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
import dataclasses
2020
import datetime
2121
import functools
22+
import os
2223
import re
2324
import time
2425
from typing import Callable, Generic, Iterator, List, Optional, Protocol, Sequence, Set, TypeVar
@@ -522,6 +523,11 @@ def get_save_directory(
522523
def is_tmp_checkpoint(path: epath.PathLike) -> bool:
523524
"""Determines whether a directory is a tmp checkpoint path."""
524525
path = epath.Path(path)
526+
if os.path.islink(path):
527+
logging.warning(
528+
'Path %s is a symbolic link, not treating it as a tmp checkpoint.', path
529+
)
530+
return False
525531
if not path.exists():
526532
raise ValueError(f'Path {path} does not exist.')
527533
if not path.is_dir():

0 commit comments

Comments
 (0)