We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Some open source models like Mistral-7b have 2 pytorch_model.bin files, BUT the order of the layers is changed i.e
https://huggingface.co/mistralai/Mistral-7B-Instruct-v0.1/
The order of the layers is given in
pytorch_model.bin.index.json
Weightwatcher needs some way to fix the ordering of the layers
say after running analyze() by reading the final map file and fixing the ordering
This approach could be used for safetensors also
Note that if the order is not sequential, we can not run intra=True, but thats ok for now
The text was updated successfully, but these errors were encountered:
Im not entirely sure if this is relevant...WW always reads the safetensors files first and should ignore the pytorch_model.bin files
Sorry, something went wrong.
No branches or pull requests
Some open source models like Mistral-7b have 2 pytorch_model.bin files, BUT the order of the layers is changed
i.e
https://huggingface.co/mistralai/Mistral-7B-Instruct-v0.1/
The order of the layers is given in
pytorch_model.bin.index.json
Weightwatcher needs some way to fix the ordering of the layers
say after running analyze() by reading the final map file and fixing the ordering
This approach could be used for safetensors also
Note that if the order is not sequential, we can not run intra=True, but thats ok for now
The text was updated successfully, but these errors were encountered: