moshi/lib.rs
// Copyright (c) Kyutai, all rights reserved.
// This source code is licensed under the license found in the
// LICENSE file in the root directory of this source tree.
pub use candle;
pub use candle_nn;
pub mod asr;
pub mod conditioner;
pub mod conv;
pub mod lm;
pub mod lm_generate;
pub mod lm_generate_multistream;
pub mod mimi;
pub mod nn;
pub mod quantization;
pub mod seanet;
pub mod streaming;
pub mod transformer;
pub mod tts;
pub mod tts_streaming;
pub mod wav;
#[derive(Debug, Copy, Clone, PartialEq, Eq, serde::Deserialize, serde::Serialize)]
pub enum NormType {
RmsNorm,
LayerNorm,
}