scirs2-neural 0.3.3

Neural network building blocks module for SciRS2 (scirs2-neural) - Minimal Version
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Batch matrix operations optimized for neural networks
//!
//! This module provides specialized batch matrix operations that are commonly
//! used in neural network computations, such as batch matrix multiplication,
//! batch normalization operations, convolution operations, attention mechanisms,
//! and RNN/LSTM operations.

// mod attention; // Disabled - has syntax errors (unclosed delimiters)
mod convolution;
mod matmul;
mod normalization;
mod rnn;
// Re-export all public functions from submodules
// pub use attention::*;
pub use convolution::*;
pub use matmul::*;
pub use normalization::*;
pub use rnn::*;