rm_cache.sh 290 B

12345678910111213141516171819202122232425
  1. #!/bin/bash
  2. rm -rf __pycache__ */__pycache__ */*/__pycache__
  3. # Val
  4. rm -r tmp*
  5. # Train
  6. rm slurm*
  7. rm -r ckpts
  8. rm nohup.out*
  9. rm nohup.log*
  10. # Eval
  11. rm -r evaluation/eval-*
  12. rm -r tmp*
  13. rm -r e_logs/
  14. # System
  15. rm core-*-python-*
  16. # Inference cache
  17. rm -rf images_todo/
  18. rm -rf predictions/
  19. clear