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

End support for legacy Pax formats with directory structure: ``` checkpoints/ checkpoint_0 # msgpack file corresponding to step ``` Users can manually restructure to the following: ``` checkpoints/ checkpoint_0/ checkpoint...

Fix slice selection logic in emergency checkpointing, so that a slice with a complete local checkpoint (if it exists) is always chosen as the secondary slice.

Hi, I am trying to save checkpoints using the following code: ``` options = ocp.CheckpointManagerOptions( max_to_keep=self.max_checkpoints, create=True, best_fn=best_loss, best_mode="min", ) self.checkpoint_manager = ocp.CheckpointManager( os.path.join(self._out_dir, "checkpoints"), options=options, item_names=("state", "metadata"), item_handlers={ "state":...

Now that JAX supports donate on device_put, use that instead of the ugly device_put -> block -> delete routine