Voice conversion pipeline (Soprano TTS → RVC) with Docker support. Previously tracked as bare gitlink; removed .git/ directories and absorbed into main repo for unified tracking. Includes: Soprano TTS, RVC WebUI integration, Docker configs, WebSocket API, and benchmark scripts. Updated .gitignore to exclude large model weights (*.pth, *.pt, *.onnx, *.index). 287 files (3.1GB of ML weights properly excluded via gitignore).
14 lines
312 B
Bash
Executable File
14 lines
312 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# 1. Activate the virtual environment
|
|
source .venv/bin/activate
|
|
|
|
# 2. Set AMD / ROCm Environment Variables
|
|
export HSA_OVERRIDE_GFX_VERSION=11.0.0
|
|
export HIP_VISIBLE_DEVICES=0
|
|
export LD_LIBRARY_PATH=/opt/rocm/lib:$LD_LIBRARY_PATH
|
|
export ROCM_PATH=/opt/rocm
|
|
|
|
# 3. Launch the WebUI
|
|
python infer-web.py
|