eugenehp commited on
Commit
8edca3b
·
verified ·
1 Parent(s): e10c04f

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +22 -10
README.md CHANGED
@@ -12,21 +12,33 @@ tags:
12
 
13
  Parler-TTS Mini safetensors + ONNX exports for RLX (probe ONNX removed).
14
 
15
- **Kind:** Converted / re-laid-out for RLX from an upstream checkpoint.
 
 
 
 
 
16
 
17
- **Suggested Hub repo:** `eugenehp/parlertts`
18
 
19
- **Upstream:** https://huggingface.co/parler-tts/parler-tts-mini-v1
20
-
21
- **RLX crate:** [`rlx-parlertts`](https://github.com/MIT-RLX/rlx-models/tree/main/crates/rlx-parlertts)
 
22
 
23
- ## Contents
24
 
25
- Weight tensors and configs in this directory (see file listing on the Hub).
 
 
 
 
 
 
26
 
27
  ## Run with RLX
28
 
29
- From [rlx-models](https://github.com/MIT-RLX/rlx-models) with this directory as the model path:
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
- ## Staging note
42
 
43
- Prepared from the local `weights/` tree in [rlx-models](https://github.com/MIT-RLX/rlx-models) for a future standalone Hub upload. Prefer fetching upstream when this is only a redistrib.
 
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`.