Appearance
后台运行并记录日志
nohup python train.py > log.txt 2>&1 &
实时查看日志
tail -f log.txt
查看GPU状态
nvidia-smi
实时刷新显存占用
watch nvidia-smi
强制终止训练
kill -9 <进程ID>