Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: other
|
| 3 |
+
tags:
|
| 4 |
+
- audio-cpp
|
| 5 |
+
- model-archives
|
| 6 |
+
- tts
|
| 7 |
+
- omnivoice
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
+
# audio.cpp model archives
|
| 11 |
+
|
| 12 |
+
Public archive cache for selected `audio.cpp` model folders.
|
| 13 |
+
|
| 14 |
+
Files are `.tar.zst` archives intended to be downloaded and extracted into `/models` on GPU instances.
|
| 15 |
+
|
| 16 |
+
```bash
|
| 17 |
+
mkdir -p /models
|
| 18 |
+
wget -O /workspace/OmniVoice.tar.zst https://huggingface.co/datasets/laixuanthoi/audio-cpp-model-archives/resolve/main/OmniVoice.tar.zst
|
| 19 |
+
tar --use-compress-program='zstd -d' -xf /workspace/OmniVoice.tar.zst -C /models
|
| 20 |
+
```
|
| 21 |
+
|
| 22 |
+
See `sha256sums-omnivoice.txt` for integrity checks.
|