orbax icon indicating copy to clipboard operation
orbax copied to clipboard

Orbax provides common utility libraries for JAX users.

Results 335 orbax issues
Sort by recently updated
recently updated
newest added

Hello, I've recently created a custom type handler. Using it, and running on a single process I see the following warning ```python WARNING:absl:[process=0][thread=async_save_18] Skipping merge of OCDBT checkpoints: No per-process...

type:bug
checkpoint

Add support to create dummy directories in orbax benchmark.

# Bug Description: When I created a checkpoint manager option like the following, ```py options = ocp.CheckpointManagerOptions(step_prefix="ppo_networks") with ocp.CheckpointManager( ".../model_checkpoints/7358284e-a603-453f-9024-f69a27a293c4", options=options, ) as mngr: mngr.restore(0) ``` with my directory looks...

type:bug
checkpoint

Hi, I spotted ocp.tree.serialize_tree but it seems the serialization logic won't work if you have empty leaves within a sequence. This happens quite frequently with optax where you'll end up...

type:bug
checkpoint

Hi, @niketkumar @cpgaffney1, cc @dionhaefner The following attempts to serialize a zero-sized array, but it fails validation in `_validate_params`. I believe the problem is that `_validate_params` expects to find for...

type:bug
checkpoint

Hi Orbax team, I was looking at Orbax code at the latest version==0.7.0 and found that pieces of code with quite heavy logic around tensorstore_spec creation seem to contain duplicates....

type:feature
checkpoint

Support single-slice checkpointing in `emergency.CheckpointManager`. Associated changes to adjust docstrings and `AbstractCheckpointManager` signatures.