diff options
| -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 + |
