Views
No views yet
owensong/Inflect-Nano-v2,
a small English text-to-speech model. Upstream ships the canonical PyTorch model and a
verified ONNX package, but its docs/EXPORTS.md lists TFLite as "Not released" — this
repository fills that gap with a working, target-validated LiteRT conversion for on-device use
(Raspberry Pi 5 and similar).duration + decode graphs):| File | Stage | Precision | Size |
|---|---|---|---|
inflect_text_encoder.tflite | text → acoustic distribution | fp32 | 3.5 MB |
inflect_decoder.tflite | distribution + noise → waveform | fp32 | 12.6 MB |
inflect_text_encoder_fp16.tflite | text → acoustic distribution | fp16 | 1.8 MB |
inflect_decoder_fp16.tflite | distribution + noise → waveform | fp16 | 6.4 MB |
say.py + frontend) ships with the
LiteRT reachy voice-robot sample,
which downloads these weights automatically.1from ai_edge_litert.interpreter import Interpreter
2enc = Interpreter(model_path="inflect_text_encoder.tflite", num_threads=4)
3dec = Interpreter(model_path="inflect_decoder.tflite", num_threads=4)
4# see say.py in the sample for the full encoder -> duration expansion -> decoder pipelineowensong/Inflect-Nano-v2.LICENSE). No model weights were retrained or altered beyond format
conversion and fixed-shape graph export.