pnnbao-ump commited on
Commit
de4b6c3
·
verified ·
1 Parent(s): 034a8d2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +13 -5
README.md CHANGED
@@ -59,13 +59,21 @@ Training high-quality TTS models requires significant GPU resources. If you find
59
  ```bash
60
  git clone https://github.com/pnnbao97/VieNeu-TTS.git
61
  cd VieNeu-TTS
 
 
 
62
 
63
- # Install uv (if you haven't)
64
- # Windows: powershell -c "irm https://astral.sh/uv/install.ps1 | iex"
65
- # Linux/macOS: curl -LsSf https://astral.sh/uv/install.sh | sh
 
66
 
67
- # Install dependencies & Run
68
- uv sync --group gpu
 
 
 
 
69
  uv run vieneu-web
70
  ```
71
 
 
59
  ```bash
60
  git clone https://github.com/pnnbao97/VieNeu-TTS.git
61
  cd VieNeu-TTS
62
+ ```
63
+
64
+ - **Option 1: CPU** (minimal, torch-free) — runs **v3 Turbo via ONNX**
65
 
66
+ ```bash
67
+ uv sync
68
+ ```
69
+ - **Option 2: GPU** — **v3 Turbo (PyTorch) + VieNeu-TTS v2 (GPU)**
70
 
71
+ ```bash
72
+ uv sync --group gpu
73
+ ```
74
+ **Start the Web UI:**
75
+
76
+ ```bash
77
  uv run vieneu-web
78
  ```
79