Add X-Voice GGUF model card
Browse files
README.md
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- text-to-speech
|
| 4 |
+
- gguf
|
| 5 |
+
- ggml
|
| 6 |
+
- x-voice
|
| 7 |
+
library_name: ggml
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
+
# X-Voice GGUF
|
| 11 |
+
|
| 12 |
+
Self-contained GGUF bundles for the X-Voice GGML C++ runtime.
|
| 13 |
+
|
| 14 |
+
Runtime repository:
|
| 15 |
+
|
| 16 |
+
```text
|
| 17 |
+
https://github.com/bluryar/X-Voice.cpp
|
| 18 |
+
```
|
| 19 |
+
|
| 20 |
+
Upstream model source:
|
| 21 |
+
|
| 22 |
+
```text
|
| 23 |
+
https://huggingface.co/XRXRX/X-Voice
|
| 24 |
+
https://github.com/sunnyxrxrx/X-Voice
|
| 25 |
+
```
|
| 26 |
+
|
| 27 |
+
## Files
|
| 28 |
+
|
| 29 |
+
| file | approximate size | sha256 |
|
| 30 |
+
|---|---:|---|
|
| 31 |
+
| `x-voice-f32.gguf` | 1.6 GB | `077d8dec4d94ab4562ae31cab4c0e000a9bb63a831f9ee3a5da7c8e7587df347` |
|
| 32 |
+
| `x-voice-f16.gguf` | 1.1 GB | `82b8bf7604da1f64c4d98e8e6afc11b3afda57058627a01054e8fc50b44505b3` |
|
| 33 |
+
| `x-voice-q8_0.gguf` | 848 MB | `8cb3452ad7aa1730047572bd38f22a92f87256a7dc803124b93a955b1f8ae5a5` |
|
| 34 |
+
| `x-voice-q6_k.gguf` | 790 MB | `5c4eb825d890f69fc706c4e06b5dd5ddec8b4ff3311cde0fc12bfa43fbcc4cf9` |
|
| 35 |
+
| `x-voice-q4_k.gguf` | 729 MB | `776f05d88d7bc252298272159ab91176029f4238b7eb7902d982e83bce8746a5` |
|
| 36 |
+
|
| 37 |
+
The quantized files use a conservative X-Voice policy: large GGML `mul_mat`
|
| 38 |
+
matrix weights are converted, while conv, norm, bias, embedding, positional, and
|
| 39 |
+
small tensors remain in their source type.
|
| 40 |
+
|
| 41 |
+
## Quick Start
|
| 42 |
+
|
| 43 |
+
```bash
|
| 44 |
+
git clone --recursive https://github.com/bluryar/X-Voice.cpp
|
| 45 |
+
cd X-Voice.cpp
|
| 46 |
+
bash scripts/dev/build_xvoice_cuda.sh
|
| 47 |
+
|
| 48 |
+
NVIDIA_TF32_OVERRIDE=0 build-cuda/x-voice-cli \
|
| 49 |
+
--model /path/to/x-voice-f32.gguf \
|
| 50 |
+
--load-tensors \
|
| 51 |
+
--synthesize \
|
| 52 |
+
--text '发帖人(弟弟)在详细描述其五口之家的现状后,寻求处理家庭问题的建议,并提出了自己的初步计划。' \
|
| 53 |
+
--text-kind plain \
|
| 54 |
+
--language zh \
|
| 55 |
+
--ref-wav /path/to/reference.wav \
|
| 56 |
+
--preset product \
|
| 57 |
+
--output-wav /tmp/xvoice.wav \
|
| 58 |
+
--metadata-json /tmp/xvoice.json \
|
| 59 |
+
--progress \
|
| 60 |
+
-b cuda -t 8
|
| 61 |
+
```
|
| 62 |
+
|
| 63 |
+
## License
|
| 64 |
+
|
| 65 |
+
The C++ runtime is Apache-2.0. These model artifacts are converted from upstream
|
| 66 |
+
X-Voice weights; please follow the upstream model license and terms for any
|
| 67 |
+
redistribution or commercial use.
|