whisper.cpp / scripts /sha-all.sh
ggerganov's picture
files : rename ./extra to ./scripts
7ee678e unverified
#!/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