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
//! Neural network building blocks module for SciRS2 - Advanced minimal working version
//!
//! This is an advanced minimal version that includes only the error module
//! to establish basic compilation.

#![warn(missing_docs)]
// Advanced minimal - just error handling
pub mod error;
// Re-export the error type
pub use error::{Error, NeuralError, Result};