Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
natasa365
/
whisper.cpp
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
d7d82b9
whisper.cpp
/
scripts
/
sha-all.sh
ggerganov
files : rename ./extra to ./scripts
7ee678e
unverified
over 1 year 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