Spaces:
Runtime error
Runtime error
File size: 200 Bytes
f2dbf59 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
#!/bin/bash
rm -rf __pycache__ */__pycache__
# Val
rm -r tmp*
# Train
rm slurm*
rm -r ckpt
rm nohup.out*
# Eval
rm -r evaluation/eval-*
rm -r tmp*
rm -r e_logs/
# System
rm core-*-python-*
clear
|