stt-whisper.cpp-cpu-api-py/whisper.cpp-1.5.2/extra/sha-all.sh

8 lines
134 B
Bash
Executable File

#!/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