Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
natasa365
/
whisper.cpp
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
f0a0087
whisper.cpp
/
extra
/
sha-all.sh
ggerganov
extra : compute SHA of all models files
05261df
unverified
about 3 years ago
raw
Copy download link
history
blame
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