mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2024-11-07 08:34:37 +01:00
8 lines
134 B
Bash
8 lines
134 B
Bash
|
#!/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
|