What is safetensors?
a file format that safely stores tensors
Speed of safetensors vs .ckpt?
some people say safetensors is faster
what is (/was) pre july 2023 the standard way to save PyTorch models when using the Hugging Face Transformers library?
pytorch_model.bin
how much faster is safetensors.torch.load_file than torch.load_file
76x on CPU and 2x on GPU
how does pytorch transform its models to/from disk?
well it writes the raw bytes of the tensors to disk and then uses pickle to serialize/deserialize other metadata/Python Object data
difference between GGUF and safetensors
safetensors can only be run on GPU