Torch API
safetensors.torch.load_file
< source >(
filename: typing.Union[str, os.PathLike]
device = 'cpu'
)
→
Dict[str, torch.Tensor]
Parameters
-
filename (
str
, oros.PathLike
)) — The name of the file which contains the tensors -
device (
Dict[str, any]
, optional, defaults tocpu
) — The device where the tensors need to be located after load. available options are all regular torch device locations
Returns
Dict[str, torch.Tensor]
dictionary that contains name as key, value as torch.Tensor
Loads a safetensors file into torch format.
safetensors.torch.load
< source >(
data: bytes
)
→
Dict[str, torch.Tensor]
Loads a safetensors file into torch format from pure bytes.
safetensors.torch.save_file
< source >(
tensors: typing.Dict[str, torch.Tensor]
filename: typing.Union[str, os.PathLike]
metadata: typing.Union[typing.Dict[str, str], NoneType] = None
)
→
None
Parameters
-
tensors (
Dict[str, torch.Tensor]
) — 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.torch.save
< source >(
tensors: typing.Dict[str, torch.Tensor]
metadata: typing.Union[typing.Dict[str, str], NoneType] = None
)
→
bytes
Parameters
-
tensors (
Dict[str, torch.Tensor]
) — 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.
safetensors.torch.load_model
< source >( model: Module filename: str strict = True ) → `(missing, unexpected)
Parameters
-
model (
torch.nn.Module
) — The model to load onto. -
filename (
str
) — The filename location to load the file from. -
strict (
bool
, optional, defaults to True) — Wether to fail if you’re missing keys or having unexpected ones When false, the function simply returns missing and unexpected names.
Returns
`(missing, unexpected)
(List[str], List[str])
missingare names in the model which were not modified during loading
unexpected` are names that are on the file, but weren’t used during
the load.
Loads a given filename onto a torch model.
This method exists specifically to avoid tensor sharing issues which are
not allowed in safetensors
. More information on tensor sharing
safetensors.torch.save_model
< source >( model: Module filename: str metadata: typing.Union[typing.Dict[str, str], NoneType] = None force_contiguous: bool = True )
Parameters
-
model (
torch.nn.Module
) — The model to save on disk. -
filename (
str
) — The filename location to save the file -
metadata (
Dict[str, str]
, optional) — Extra information to save along with the file. Some metadata will be added for each dropped tensors. This information will not be enough to recover the entire shared structure but might help understanding things -
force_contiguous (
boolean
, optional, defaults to True) — Forcing the state_dict to be saved as contiguous tensors. This has no effect on the correctness of the model, but it could potentially change performance if the layout of the tensor was chosen specifically for that reason.
Saves a given torch model to specified filename.
This method exists specifically to avoid tensor sharing issues which are
not allowed in safetensors
. More information on tensor sharing