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