concision_core/nn/mod.rs
1/*
2 Appellation: nn <module>
3 Created At: 2025.11.28:14:59:44
4 Contrib: @FL03
5*/
6//! This module provides network specific implementations and traits supporting the development
7//! of neural network models.
8//!
9#[doc(inline)]
10pub use self::{layer::*, traits::*};
11
12pub mod layer;
13
14mod traits {
15 #[doc(inline)]
16 pub use self::{context::*, layer::*, model::*, neural_network::*};
17
18 mod context;
19 mod layer;
20 mod model;
21 mod neural_network;
22}
23
24pub(crate) mod prelude {
25 pub use super::layer::*;
26 pub use super::traits::*;
27}
28
29#[cfg(test)]
30mod tests {}