Datasets:

ArXiv:
License:
fmow-rgb-baseline / generate-checksums.sh
jbourcier's picture
Do SHA checksums generation and verification
4308048
raw
history blame contribute delete
330 Bytes
#!/bin/bash
# Pull files
git lfs pull --include "*.tar.gz" --include "*.txt"
# Output file for checksums
CHECKSUMS_FILE="checksums.sha"
# Generate SHA-256 checksums for all dataset files
sha256sum splits/*.txt > "$CHECKSUMS_FILE"
sha256sum *.tar.gz >> "$CHECKSUMS_FILE"
echo "Checksums generated and saved to $CHECKSUMS_FILE"