concision_neural/config/
mod.rs

1/*
2    appellation: config <module>
3    authors: @FL03
4*/
5#[doc(inline)]
6pub use self::{model_config::StandardModelConfig, traits::*, types::*};
7
8pub mod model_config;
9
10mod traits {
11    #[doc(inline)]
12    pub use self::prelude::*;
13
14    mod config;
15
16    mod prelude {
17        #[doc(inline)]
18        pub use super::config::*;
19    }
20}
21
22mod types {
23    //! this module defines various types in-support of the configuration model for the neural
24    //! library of the concision framework.
25    #[doc(inline)]
26    pub use self::prelude::*;
27
28    mod hyper_params;
29
30    mod prelude {
31        #[doc(inline)]
32        pub use super::hyper_params::*;
33    }
34}
35
36pub(crate) mod prelude {
37    #[doc(inline)]
38    pub use super::model_config::*;
39    #[doc(inline)]
40    pub use super::traits::*;
41    #[doc(inline)]
42    pub use super::types::*;
43}