Skip to content

Instantly share code, notes, and snippets.

@fauxneticien
Created April 9, 2023 15:36
Show Gist options
  • Save fauxneticien/db4e9bda0e906b3796ec7fa25095964c to your computer and use it in GitHub Desktop.
Save fauxneticien/db4e9bda0e906b3796ec7fa25095964c to your computer and use it in GitHub Desktop.
Backup model checkpoints without cronjob
#!/usr/bin/bash
# Basic range in for loop
for value in {1..8}
do
echo "Starting backup $value"
rclone copy -P --exclude checkpoint_last.pt /home/nay/w2v2-fairseq-pretrain/outputs/2023-04-09/08-12-57/checkpoints/ gdrive_slasr:asr/checkpoints/xls-r_cpt_malay-140h/checkpoints/35-ga16/
echo "Sleeping for 1 hour"
sleep 1h
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment