1
0
mirror of https://github.com/ggerganov/whisper.cpp.git synced 2025-03-21 11:36:42 +01:00
whisper.cpp/extra/sha-all.sh
2022-11-02 18:31:55 +02:00

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