asr-features 0.1.0

ASR feature extraction and cache warming utilities
Documentation
mod arrow_utils;
mod audio;
mod cache;
mod cli;
mod dsp;
mod feature_cache;
#[cfg(feature = "python")]
mod feature_loader;
mod frontend;
mod record_cache;
mod util;

#[cfg(feature = "python")]
mod python;

pub use cli::run_cli;
pub use frontend::{
    extract_audio_features_from_samples, extract_w2v_bert_features_from_samples,
    squeezeformer_frontend_config, w2v_bert_frontend_config, zipformer_frontend_config,
    AudioFrontendConfig, FeatureMatrix, W2vBertFrontendConfig,
};

#[cfg(test)]
mod tests;