-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsync_files.sh
More file actions
13 lines (13 loc) · 858 Bytes
/
sync_files.sh
File metadata and controls
13 lines (13 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
set -e;
echo "Sync code..."
rsync -rL scripts/ sreenivasv@gypsum.cs.umass.edu:/home/sreenivasv/CS701/VideoInterpolation-PyTorch/scripts/
# rsync -rL data/ sreenivasv@gypsum.cs.umass.edu:/home/sreenivasv/CS701/VideoInterpolation-PyTorch/data/
rsync -rL weights/ sreenivasv@gypsum.cs.umass.edu:/home/sreenivasv/CS701/VideoInterpolation-PyTorch/weights/
rsync -rL README.MD sreenivasv@gypsum.cs.umass.edu:/home/sreenivasv/CS701/VideoInterpolation-PyTorch/README.MD
rsync -rL sync_files.sh sreenivasv@gypsum.cs.umass.edu:/home/sreenivasv/CS701/VideoInterpolation-PyTorch/sync_files.sh
echo "Sync configs..."
rsync -rL configs/ sreenivasv@gypsum.cs.umass.edu:/home/sreenivasv/CS701/VideoInterpolation-PyTorch/configs/
echo "Sync git..."
# rsync -rL .git/ sreenivasv@gypsum.cs.umass.edu:/home/sreenivasv/CS701/VideoInterpolation-PyTorch/.git/
echo "Done!"
exit 0;