stratum-dsp 1.0.0

Professional-grade audio analysis engine for DJ applications: BPM detection, key detection, and beat tracking
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! ML refinement modules (Phase 2)
//!
//! Optional ONNX model inference for edge case correction and confidence refinement.
//!
//! Note: This module is feature-gated behind `--features ml` and remains a Phase 2 integration
//! point. Phase 1 ships as a pure DSP pipeline.

#[cfg(feature = "ml")]
pub mod onnx_model;

#[cfg(feature = "ml")]
pub mod refinement;

#[cfg(feature = "ml")]
pub mod edge_cases;