Created
November 10, 2022 09:44
-
-
Save Narsil/156b3da253e36a0fe2c4643c1a8fbdd1 to your computer and use it in GitHub Desktop.
Compare Pytorch speed vs Safetensors
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import datetime | |
from huggingface_hub import hf_hub_download | |
from safetensors.torch import load_file | |
import torch | |
device = "cpu" | |
sf_filename = hf_hub_download("gpt2", filename="model.safetensors") | |
pt_filename = hf_hub_download("gpt2", filename="pytorch_model.bin") | |
start = datetime.datetime.now() | |
weights = load_file(sf_filename, device=device) | |
print(f"Loaded safetensors {datetime.datetime.now() - start}") | |
start = datetime.datetime.now() | |
weights = torch.load(pt_filename, map_location=device) | |
print(f"Loaded pytorch {datetime.datetime.now() - start}") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment