Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds support for converting from safetensors #740

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

soldni
Copy link
Member

@soldni soldni commented Oct 23, 2024

No description provided.

state_dict = torch.load(old_model_path, map_location="cpu")
elif os.path.exists(os.path.join(checkpoint_dir, "model.safetensors")):
old_model_path = os.path.join(checkpoint_dir, "model.safetensors")
state_dict = load_file(old_model_path, device="cpu")
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Have you tested this? If you are getting the safetensors file using unshard.py then you should probably use safetensors_file_to_state_dict instead. See https://github.com/allenai/OLMo/blob/main/docs/Safetensors.md for context.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants