NeuralAmpModeler-rs 3.0.0

An opinionated, high-performance Neural Amp Modeler (NAM) client and core implementation in Rust for Linux/PipeWire and CLAP plugins.
1
2
3
4
5
6
7
8
9
// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2026 Fábio Henrique de Lima Silva (fhl.bsb@gmail.com) All rights reserved.

use crate::loader::nam_json::{NamModelData, NamWavenetTopology};
use crate::models::wavenet::WaveNetModel;

pub(crate) fn build_wavenet_lite(data: &NamModelData) -> anyhow::Result<WaveNetModel<12, 3, 6>> {
    super::standard::build_wavenet_typed::<12, 3, 6>(data, NamWavenetTopology::Lite)
}