Llama-2 SHA256 sums
(2023-07-19)
Method: Double checked MD5 sums before and after SHA256 sums were calculated, then generated SHA256 again to check for consistency, they all match. Command used: find . -type f -exec sha256sum {} \; | tee sha256sums.txt
Confidence level: Dead certain these are the correct SHA256 sums for the official model files. They are validated via MD5 sums in the checklist.chk files. These MD5 sums are the same as in Meta's Hugging Face repository for the various model sizes (all double checked).
Meta: If you put the SHA256 sums from the code block below in a file (hint: a small copy button on the right appears when you hover over the code block) and then calculate the SHA256 sum for this file, this is what you should get:
6bfa6b0b0b58789ccab1650121e473544db31c80e908785b65fc5e6361aa2afb sha256sums.txt
How to check: Generate a file with the SHA256 sums for yourself with the find
command from above. The entries might be in a different order, use sort -k2 sha256sums.txt > sha256sums-sorted.txt
to get a file with the correct order, then use diff
or cmp
to compare these sorted files containing the SHA256 sums.