qwen_tts 0.1.1

Qwen3-TTS text-to-speech model implementation for Candle
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Audio processing components.
//!
//! This module contains:
//! - `decoder`: Audio decoder (codes → waveform)
//! - `encoder`: Audio encoder (waveform → codes)
//! - `tokenizer`: High-level tokenizer combining encoder/decoder
//! - `mel`: Mel spectrogram computation
//! - `utils`: Audio I/O utilities

pub mod decoder;
pub mod encoder;
pub mod mel;
pub mod quantizer;
pub mod tokenizer;
pub mod utils;