0001AMA's picture
Upload check_progress.sh with huggingface_hub
2bb44f1 verified
raw
history blame contribute delete
434 Bytes
#!/bin/bash
# Quick script to check upload progress
cd /Users/pd3rvr/Documents/pubs/THESIS/uploads/multimodal_data_annotator_dataset
echo "=== Upload Progress ==="
if [ -f upload_progress.txt ]; then
tail -20 upload_progress.txt
else
echo "Progress file not found yet. Upload may be starting..."
fi
echo ""
echo "=== Process Status ==="
ps aux | grep "upload_one_by_one.py" | grep -v grep || echo "Upload process not running"