0001AMA/multimodal_data_annotator_dataset
Materials dataset consisting of spatial and time resolved versions of the same object. Specially curated for the annotator such that for each object, time resolved signal may be viewed alongside the RGB and for different graphs/forms
010k
1#!/bin/bash2# Real-time upload progress monitor3cd /Users/pd3rvr/Documents/pubs/THESIS/uploads/multimodal_data_annotator_dataset4 5echo "=== HuggingFace Upload Progress Monitor ==="6echo ""7echo "Press Ctrl+C to stop monitoring"8echo ""9 10while true; do11 clear12 echo "=========================================="13 echo " Upload Progress - $(date '+%H:%M:%S')"14 echo "=========================================="15 echo ""16 17 # Check if process is running18 if ps aux | grep "upload_skip_existing.py" | grep -v grep > /dev/null; then19 echo "✅ Upload is RUNNING"20 else21 echo "⏸️ Upload process not found"22 fi23 echo ""24 25 # Show latest progress26 if [ -f upload_skip_progress.txt ]; then27 echo "=== Latest Progress ==="28 tail -30 upload_skip_progress.txt29 elif [ -f upload_run.log ]; then30 echo "=== Latest Progress ==="31 tail -30 upload_run.log32 else33 echo "Waiting for progress updates..."34 fi35 36 sleep 537done38 