You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FileNotFoundError: File not found: ss_model/checkpoint_-0.19632871448993683/.zarray. In many cases, this results from copying a checkpoint without using the `-a` flag.
A workaround is to use flax to restore the checkpoint
from flax.training import checkpoints
checkpoints.restore_checkpoint(ckpt_dir='save_dir', target=init_state)
but in the interest of using the more flexible (and future-proof) Orbax API, it would probably be a good idea to update the checkpointing callback.
What are your thoughts? To be honest, I am not super familiar with the various checkpointing APIs and the current status quo, so I may have made some incorrect assumptions above.
The text was updated successfully, but these errors were encountered:
This means that trying to restore checkpoints using Orbax:
results in an error
A workaround is to use flax to restore the checkpoint
but in the interest of using the more flexible (and future-proof) Orbax API, it would probably be a good idea to update the checkpointing callback.
What are your thoughts? To be honest, I am not super familiar with the various checkpointing APIs and the current status quo, so I may have made some incorrect assumptions above.
The text was updated successfully, but these errors were encountered: