8 lines
260 B
Bash
Executable File
8 lines
260 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/demucs_venv/bin/python ah.py > nohup.out 2>&1 &
|
|
echo "demucs-service started, PID: $!, GPU: $DEMUCS_GPU_ID"
|