voxcpm-rs 0.5.0

Pure-Rust inference for VoxCPM2 on top of the Burn framework (Vulkan + CPU).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! AudioVAE v2 decoder port (inference-only, non-streaming).
//!
//! Faithful translation of `vendor/VoxCPM/src/voxcpm/modules/audiovae/audio_vae_v2.py`.
//! Weight normalization is expected to be materialized at load time:
//! `weight = weight_g * weight_v / ||weight_v||` per output channel.

pub mod layers;
pub mod encoder;
pub mod decoder;
pub mod vae;

pub use vae::AudioVae;