Datasets:
ArXiv:
License:
# 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" | |