Skriller0208's picture
Upload 814 files
613af8d verified
raw
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