File size: 289 Bytes
c614b0f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
#!/bin/bash
rm -rf __pycache__ */__pycache__ */*/__pycache__
# Val
rm -r tmp*
# Train
rm slurm*
rm -r ckpt
rm nohup.out*
rm nohup.log*
# Eval
rm -r evaluation/eval-*
rm -r tmp*
rm -r e_logs/
# System
rm core-*-python-*
# Inference cache
rm -rf images_todo/
rm -rf predictions/
clear
|