rustyml 0.13.0

A high-performance machine learning & deep learning library in pure Rust, offering ML algorithms and neural network support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Internal hooks for the `benches/` targets
//!
//! Not part of the public API. This module is hidden from the documentation and carries no
//! stability guarantee; it exists only so the bench (`benches/parallel_gates.rs`) can drive
//! crate-internal kernels with the parallel/serial gate forced to either side
//! Production call paths never go through here

#[cfg(feature = "machine_learning")]
pub use crate::machine_learning::spatial::KdTree;
#[cfg(feature = "neural_network")]
pub use crate::neural_network::layers::convolution::convolution_engine::conv_forward_impl as conv_forward_forced;
#[cfg(feature = "neural_network")]
pub use crate::neural_network::layers::pooling::pooling_engine::{
    PoolKind, windowed_pool_forward_impl,
};