mirror of
https://github.com/ggml-org/whisper.cpp.git
synced 2025-09-15 13:28:35 +08:00
8 lines
134 B
Bash
Executable File
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
|