You are viewing main version, which requires installation from source. If you'd like
regular pip install, checkout the latest stable version (v0.3.2).
Flax API
safetensors.flax.load_file
< source >( filename: Union ) β Dict[str, Array]
Loads a safetensors file into flax format.
safetensors.flax.load
< source >( data: bytes ) β Dict[str, Array]
Loads a safetensors file into flax format from pure bytes.
safetensors.flax.save_file
< source >( tensors: Dict filename: Union metadata: Optional = None ) β None
Parameters
- tensors (
Dict[str, Array]
) — The incoming tensors. Tensors need to be contiguous and dense. - filename (
str
, oros.PathLike
)) — The filename we’re saving into. - metadata (
Dict[str, str]
, optional, defaults toNone
) — Optional text only metadata you might want to save in your header. For instance it can be useful to specify more about the underlying tensors. This is purely informative and does not affect tensor loading.
Returns
None
Saves a dictionary of tensors into raw bytes in safetensors format.
safetensors.flax.save
< source >( tensors: Dict metadata: Optional = None ) β bytes
Parameters
- tensors (
Dict[str, Array]
) — The incoming tensors. Tensors need to be contiguous and dense. - metadata (
Dict[str, str]
, optional, defaults toNone
) — Optional text only metadata you might want to save in your header. For instance it can be useful to specify more about the underlying tensors. This is purely informative and does not affect tensor loading.
Returns
bytes
The raw bytes representing the format
Saves a dictionary of tensors into raw bytes in safetensors format.