diff options
| author | jules@lens <julescarbon@gmail.com> | 2018-10-29 13:52:15 +0100 |
|---|---|---|
| committer | jules@lens <julescarbon@gmail.com> | 2018-10-29 13:52:15 +0100 |
| commit | 45a87839eac17c975b9cab895bf97299069988e5 (patch) | |
| tree | b81a927a9e932e59993c16487f76ca6768757b07 | |
| parent | 6e5ae5c8a9dbea2b5d19e08880feb4c04d1f9089 (diff) | |
cleanup script
| -rwxr-xr-x | cleanup.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/cleanup.sh b/cleanup.sh new file mode 100755 index 0000000..8b48e0f --- /dev/null +++ b/cleanup.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +# Clean up stuff that we don't need that takes up lots of disk space. + +rm checkpoints/*/1_*.pth +rm checkpoints/*/2_*.pth +rm checkpoints/*/3_*.pth +rm checkpoints/*/4_*.pth +rm checkpoints/*/5_*.pth + +rm -rf recursive/*/*_0149 + |
