8 lines
266 B
Bash
Executable File
8 lines
266 B
Bash
Executable File
#!/bin/bash
|
|
cd /data/ymq/demucs-service
|
|
export DEMUCS_GPU_ID=5
|
|
export CUDA_VISIBLE_DEVICES=5
|
|
export PYTHONPATH=/data/ymq/demucs-service
|
|
nohup /data/ymq/wan22-service/py3/bin/python ah.py > nohup.out 2>&1 &
|
|
echo "demucs-service started, PID: $!, GPU: $DEMUCS_GPU_ID"
|