millwright 0.2.1

A unified ML framework for Rust — proven Rust crates, assembled into one machine.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Backend adapters — proven engines behind the four traits.
//!
//! Each adapter converts a [`Frame`](crate::frame::Frame) to its engine's
//! native array type *inside the adapter only*, so the version war between
//! array crates never reaches user code. Phase 0 ships the first backend,
//! [`smartcore`]; later phases add linfa, chronos-ts, and a
//! tract-based ONNX runner behind their own feature gates.

#[cfg(feature = "smartcore-backend")]
pub mod smartcore;

#[cfg(feature = "linfa-backend")]
pub mod linfa;

#[cfg(feature = "timeseries")]
pub mod chronos;
#[cfg(feature = "incremental")]
pub mod incremental;