mirror of
https://git.ecker.tech/mrq/ai-voice-cloning
synced 2025-06-07 11:05:42 -04:00
5 lines
119 B
Bash
Executable file
5 lines
119 B
Bash
Executable file
#!/bin/bash
|
|
ulimit -Sn `ulimit -Hn` # ROCm is a bitch
|
|
source ./venv/bin/activate
|
|
python3 ./src/main.py "$@"
|
|
deactivate
|