orbax icon indicating copy to clipboard operation
orbax copied to clipboard

NotImplementedError: CopyRange not supported

Open cool-RR opened this issue 6 months ago • 0 comments

See this code sample:

import pathlib

import orbax.checkpoint

orbax_checkpointer = orbax.checkpoint.PyTreeCheckpointer()
tree = {'key': 7}
path = pathlib.Path(__file__).parent / 'foo'
orbax_checkpointer.save(path, tree)

When I run it on Linux, it works fine. When I run it on Windows 10, I get this traceback with the exception: builtins.NotImplementedError: CopyRange not supported.

The versions I use:

orbax-checkpoint==0.5.23
tensorstore==0.1.64

cool-RR avatar Aug 10 '24 15:08 cool-RR