Hub ships rlx-tts.rlxp only. Pack locally with just export-rlx-tts-rlxp.
Pack layout (.rlxp)
Tensor + frontend pack: FastSpeech2 encoder/decoder and WaveRNN weights in the hot region; G2P / lexicon / neural frontend files as cold sidecars.
Official RLX package format (RLXPFLAT, container v2).
text
1[0..8) magic RLXPFLAT
2[8..12) version u32 LE (= 2)
3[12..16) flags u32 LE (hybrid hot/warm/cold)
4[16..24) toc_len u64 LE
5[24..) TOC JSON table of contents
6 data region 64-byte aligned payloads
The TOC lists tensors (named weight blobs) and/or sidecars (files: ONNX,
tokenizers, manifests, …). Sidecars are usually cold + zstd; model weights in
tensor packs are hot + uncompressed for mmap. Runtime crates open the pack
directly (or materialize sidecars to a temp dir for asset-only packs).
This pack
Field
Value
File
rlx-tts.rlxp (160.0 MiB)
Manifest name
rlx-tts
Producer
rlx-tts
Container
RLXPFLAT v2, flags=0x1
Tensors
281
Sidecars
15
Tensors (hot weight region)
All acoustic weights are f32 row-major, hot (uncompressed).
All tensors are mmap'd from the hot region (schemes: f32×281).
Prefix
Tensors
Stored
Role
encoder.*
198
111.3 MiB
FastSpeech2 encoder + variance adaptor
decoder.*
55
18.5 MiB
FastSpeech2 mel decoder
wavernn.*
28
7.1 MiB
WaveRNN vocoder
Sidecars (file assets)
Text-normalization / G2P assets used before the acoustic model.
Paths below are logical ids inside the pack (__flat__/sidecar/<id>).
Cold sidecars are zstd-compressed; sizes show raw → stored.
just export-rlx-tts-rlxp → rlx-tts --pack-rlxp. Converts local rlx-tts.gguf or packs encoder/decoder/wavernn safetensors + frontend files from the bundle dir.
Note
Hub ships .rlxp only. A local legacy rlx-tts.gguf still loads if present.
Run with RLX
Clone rlx-models, place this repo under weights/tts/rlx-tts (or pass the path explicitly), then:
just fetch-rlx-tts && just tts-demo
License
Apache License 2.0 — see LICENSE. Inherit upstream terms when redistributing.
Maintenance
Cards and LFS attrs are regenerated from the local weights/ tree in rlx-models via python3 scripts/prepare_weights_hf.py.