Saves a state_dict to disk in a .safetensor file with optional metadata.
t = Tensor([1, 2, 3])
nn.state.safe_save({'t':t}, "test.safetensor")
const
safe_save = (tensors:
Record<string,
Tensor>, fn: string, metadata?:
Record<string, any>) => unknown