Views
No views yet
seed_1, seed_2, seed_42).1import orbax.checkpoint as ocp
2
3# Example: Loading seed 42
4checkpoint_path = "seed_42"
5mngr = ocp.CheckpointManager(os.path.abspath(checkpoint_path))
6
7# Load the parameters
8restored = mngr.restore(mngr.latest_step())
9print(restored.keys())