7 lines
149 B
Bash
7 lines
149 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
# 停止所有相关Python进程
|
||
|
|
pkill -f "AI_auto_train.py"
|
||
|
|
pkill -f "ai_auto_train_yolov5.py"
|
||
|
|
|
||
|
|
echo "All AI training services stopped"
|