0001AMA's picture
Upload monitor_push.sh with huggingface_hub
9e1ee18 verified
raw
history blame contribute delete
599 Bytes
#!/bin/bash
# Monitor push/upload progress
cd /Users/pd3rvr/Documents/pubs/THESIS/uploads/multimodal_data_annotator_dataset
echo "=== Push/Upload Progress ==="
if [ -f push_progress.txt ]; then
tail -30 push_progress.txt
elif [ -f push_output.log ]; then
tail -30 push_output.log
else
echo "Progress file not found yet..."
fi
echo ""
echo "=== Process Status ==="
ps aux | grep -E "(push_with_progress|upload_one_by_one)" | grep -v grep || echo "No upload process running"
echo ""
echo "=== Git Status ==="
git status --short 2>/dev/null | head -5 || echo "Not a git repo or no changes"