files : rename ./extra to ./scripts

This commit is contained in:
Georgi Gerganov
2024-04-09 20:12:17 +03:00
parent 5275074d37
commit 52ccd4a3a8
12 changed files with 7 additions and 7 deletions

7
scripts/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