geolocation-datasets / check_status.sh
sdan's picture
Add files using upload-large-folder tool
4b4ba7b verified
#!/bin/bash
# Geolocation Datasets Download Status
echo "=== Geolocation Datasets Download Status ==="
echo ""
# Check sizes
echo "Dataset Sizes:"
du -sh ~/geolocation_datasets/*/
echo ""
# Check GLDv2 progress (500 tar files expected)
gldv2_count=$(ls ~/geolocation_datasets/gldv2/*.tar 2>/dev/null | wc -l)
echo "GLDv2: $gldv2_count/500 tar files downloaded"
# Check iNat download progress
if [ -f ~/geolocation_datasets/inat21/train.tar.gz ]; then
inat_size=$(du -h ~/geolocation_datasets/inat21/train.tar.gz | cut -f1)
echo "iNat21 train.tar.gz: $inat_size / 224GB"
else
echo "iNat21: Downloading..."
fi
# Check running processes
echo ""
echo "Running download processes:"
ps aux | grep -E "curl|huggingface" | grep -v grep | head -5
echo ""
echo "=== Summary ==="
echo "- OSV-5M: 242GB (Complete - 5.1M street view images)"
echo "- GeoComp: 32GB (Complete - 3.3M locations from Tuxun)"
echo "- CV-Cities: 47GB (Complete - 16 cities cross-view)"
echo "- GLDv2: ~500GB total (500 tar files from AWS S3)"
echo "- iNat21: ~275GB total (train + val + annotations)"
echo "- MG-Geo: Not yet publicly released"