Created
January 7, 2022 14:55
-
-
Save zaccharieramzi/3e1abc67aefac106ede2883c56ac8e1a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
offline_runs="$1/offline-run*" | |
while : | |
do | |
for ofrun in $offline_runs | |
do | |
wandb sync $ofrun; | |
done | |
sleep 5m | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
A script to synchronize all offline wandb runs with a sleep.
This doesn't use
--sync-all
atm because of wandb/wandb#3111