eugenehp commited on
Commit
474b11a
·
verified ·
1 Parent(s): 557d0af

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +32 -10
README.md CHANGED
@@ -11,26 +11,48 @@ tags:
11
 
12
  # Soprano 1.1 (RLX GGUF)
13
 
14
- Packed RLX Soprano 1.1 runnable GGUF (`soprano.gguf`, format `rlx-soprano-gguf-v1`). Not community LM-only Q4 GGUF.
15
 
16
- **Kind:** RLX-native weight bundle (not a plain upstream mirror).
 
 
 
 
 
17
 
18
- **Suggested Hub repo:** `eugenehp/soprano`
19
 
20
- **Upstream:** https://huggingface.co/KevinAHM/soprano-1.1-onnx
 
 
 
 
 
21
 
22
- **RLX crate:** [`rlx-soprano`](https://github.com/MIT-RLX/rlx-models/tree/main/crates/rlx-soprano)
23
 
24
  ## Contents
25
 
26
- `soprano.gguf` pack with `just export-soprano-gguf`.
 
 
 
 
 
 
 
 
 
 
 
 
27
 
28
  ## Run with RLX
29
 
30
- From [rlx-models](https://github.com/MIT-RLX/rlx-models) with this directory as the model path:
31
 
32
  ```bash
33
- cargo run -p rlx-soprano --release -- --model-dir . --text "Hi." --output /tmp/soprano.wav
34
  ```
35
 
36
  ## License
@@ -39,6 +61,6 @@ Apache License 2.0 — see `LICENSE`. Inherit upstream terms when redistributing
39
 
40
  Original weights and authorship: https://huggingface.co/KevinAHM/soprano-1.1-onnx
41
 
42
- ## Staging note
43
 
44
- 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.
 
11
 
12
  # Soprano 1.1 (RLX GGUF)
13
 
14
+ Single runnable `soprano.gguf` (`rlx-soprano-gguf-v1`): tokenizer + backbone + Vocos decoder.
15
 
16
+ | Field | Value |
17
+ |---|---|
18
+ | **Hub id** | [`eugenehp/soprano`](https://huggingface.co/eugenehp/soprano) |
19
+ | **Kind** | RLX-native weight bundle (graphs + sidecars ready for `rlx-*` crates). |
20
+ | **RLX crate** | [`rlx-soprano`](https://github.com/MIT-RLX/rlx-models/tree/main/crates/rlx-soprano) |
21
+ | **Upstream** | https://huggingface.co/KevinAHM/soprano-1.1-onnx |
22
 
23
+ ## Quick start
24
 
25
+ ```bash
26
+ hf download eugenehp/soprano soprano.gguf --local-dir weights/tts/soprano
27
+ just fetch-soprano && just soprano-demo
28
+ ```
29
+
30
+ ## Primary files (use these)
31
 
32
+ - `soprano.gguf` — 422.4 MiB
33
 
34
  ## Contents
35
 
36
+ `soprano.gguf` only. Pack locally with `just export-soprano-gguf`.
37
+
38
+ ## Do not use as the main runtime pack
39
+
40
+ These files may be present for historical / staging reasons but are **not** the supported RLX load path:
41
+
42
+ - `Soprano-1.1-80M.Q4_K_M.gguf`
43
+
44
+ Community `*.f16.gguf` / LM-only Q4 packs are format wraps — they are not drop-in replacements for the RLX primary file above.
45
+
46
+ ## Note
47
+
48
+ `Soprano-1.1-80M.Q4_K_M.gguf` is a community LM-only pack and is **not** loadable by `rlx-soprano`.
49
 
50
  ## Run with RLX
51
 
52
+ Clone [rlx-models](https://github.com/MIT-RLX/rlx-models), place this repo under `weights/tts/soprano` (or pass the path explicitly), then:
53
 
54
  ```bash
55
+ just fetch-soprano && just soprano-demo
56
  ```
57
 
58
  ## License
 
61
 
62
  Original weights and authorship: https://huggingface.co/KevinAHM/soprano-1.1-onnx
63
 
64
+ ## Maintenance
65
 
66
+ 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`.