Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
natasa365
/
whisper.cpp
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
65d366a
whisper.cpp
/
extra
/
sha-all.sh
ggerganov
HF Staff
extra : compute SHA of all models files
05261df
unverified
over 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