whisper.cpp / extra /sha-all.sh
ggerganov's picture
extra : compute SHA of all models files
05261df unverified
raw
history blame
134 Bytes
#!/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