Spaces:
Running
Running
File size: 134 Bytes
05261df |
1 2 3 4 5 6 7 8 |
#!/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
|