Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Dyen
/
Rovin
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
Rovin
/
whisper.cpp
/
scripts
/
sha-all.sh
Dyen
Fix binaries and nested git
bfdf803
about 1 month ago
raw
Copy download link
history
blame
contribute
delete
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