0001AMA commited on
Commit
2bb44f1
·
verified ·
1 Parent(s): 1baa92c

Upload check_progress.sh with huggingface_hub

Browse files
Files changed (1) hide show
  1. check_progress.sh +12 -0
check_progress.sh ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/bash
2
+ # Quick script to check upload progress
3
+ cd /Users/pd3rvr/Documents/pubs/THESIS/uploads/multimodal_data_annotator_dataset
4
+ echo "=== Upload Progress ==="
5
+ if [ -f upload_progress.txt ]; then
6
+ tail -20 upload_progress.txt
7
+ else
8
+ echo "Progress file not found yet. Upload may be starting..."
9
+ fi
10
+ echo ""
11
+ echo "=== Process Status ==="
12
+ ps aux | grep "upload_one_by_one.py" | grep -v grep || echo "Upload process not running"