Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -12,21 +12,33 @@ tags:
|
|
| 12 |
|
| 13 |
Parler-TTS Mini safetensors + ONNX exports for RLX (probe ONNX removed).
|
| 14 |
|
| 15 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
|
| 17 |
-
|
| 18 |
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
|
|
|
| 22 |
|
| 23 |
-
##
|
| 24 |
|
| 25 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 26 |
|
| 27 |
## Run with RLX
|
| 28 |
|
| 29 |
-
|
| 30 |
|
| 31 |
```bash
|
| 32 |
cargo run -p rlx-parlertts --release -- --model-dir .
|
|
@@ -38,6 +50,6 @@ Apache License 2.0 — see `LICENSE`. Inherit upstream terms when redistributing
|
|
| 38 |
|
| 39 |
Original weights and authorship: https://huggingface.co/parler-tts/parler-tts-mini-v1
|
| 40 |
|
| 41 |
-
##
|
| 42 |
|
| 43 |
-
|
|
|
|
| 12 |
|
| 13 |
Parler-TTS Mini safetensors + ONNX exports for RLX (probe ONNX removed).
|
| 14 |
|
| 15 |
+
| Field | Value |
|
| 16 |
+
|---|---|
|
| 17 |
+
| **Hub id** | [`eugenehp/parlertts`](https://huggingface.co/eugenehp/parlertts) |
|
| 18 |
+
| **Kind** | Converted / re-laid-out for RLX from an upstream checkpoint. |
|
| 19 |
+
| **RLX crate** | [`rlx-parlertts`](https://github.com/MIT-RLX/rlx-models/tree/main/crates/rlx-parlertts) |
|
| 20 |
+
| **Upstream** | https://huggingface.co/parler-tts/parler-tts-mini-v1 |
|
| 21 |
|
| 22 |
+
## Quick start
|
| 23 |
|
| 24 |
+
```bash
|
| 25 |
+
hf download eugenehp/parlertts --local-dir .
|
| 26 |
+
cargo run -p rlx-parlertts --release -- --model-dir .
|
| 27 |
+
```
|
| 28 |
|
| 29 |
+
## File highlights
|
| 30 |
|
| 31 |
+
- `model.safetensors` (3.3 GiB)
|
| 32 |
+
- `onnx/decoder.onnx` (1.7 GiB)
|
| 33 |
+
- `onnx/text_encoder.onnx` (1.3 GiB)
|
| 34 |
+
- `parler-tts-mini-v1-Q4_0.gguf` (776.8 MiB)
|
| 35 |
+
- `tokenizer.json` (2.3 MiB)
|
| 36 |
+
- `config.json` (6.8 KiB)
|
| 37 |
+
- `generation_config.json` (265 B)
|
| 38 |
|
| 39 |
## Run with RLX
|
| 40 |
|
| 41 |
+
Clone [rlx-models](https://github.com/MIT-RLX/rlx-models), place this repo under `weights/tts/parlertts` (or pass the path explicitly), then:
|
| 42 |
|
| 43 |
```bash
|
| 44 |
cargo run -p rlx-parlertts --release -- --model-dir .
|
|
|
|
| 50 |
|
| 51 |
Original weights and authorship: https://huggingface.co/parler-tts/parler-tts-mini-v1
|
| 52 |
|
| 53 |
+
## Maintenance
|
| 54 |
|
| 55 |
+
Cards and LFS attrs are regenerated from the local `weights/` tree in [rlx-models](https://github.com/MIT-RLX/rlx-models) via `python3 scripts/prepare_weights_hf.py`.
|