extra : compute SHA of all models files

This commit is contained in:
Georgi Gerganov
2022-11-02 18:31:55 +02:00
parent 02dfd5b8c3
commit b5dde365e9
3 changed files with 45 additions and 17 deletions

7
extra/sha-all.sh Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/bash
# Compute the SHA1 of all model files in ./models/ggml-*.bin
for f in ./models/ggml-*.bin; do
shasum "$f" -a 1
done