Spaces:
Sleeping
Sleeping
File size: 134 Bytes
613af8d |
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
|