Could anyone provide the checksum for the llama-7b.ggmlv3.q4_1.bin?

#4
by aryantandon01 - opened

Could someone run the following code snippet and let me know what their output is? It'll let me know whether I have downloaded the model correctly by matching the hash code.

Code:

import hashlib
file_path = r"##Path where llama-7b.ggmlv3.q4_1.bin exists##"
with open(file_path, "rb") as f:
file_hash = hashlib.sha256(f.read()).hexdigest()
print(f"SHA-256 Hash: {file_hash}")

Sign up or log in to comment