1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/*
Appellation: concision <library>
Contrib: FL03 <jo3mccain@icloud.com>
*/
//! # concision (cnc)
//!
//! [](https://crates.io/crates/concision)
//! [](https://docs.rs/concision)
//! [](https://github.com/FL03/concision/blob/main/LICENSE)
//!
//! ***
//!
//! `concision` aims to be a complete machine-learning toolkit written in Rust. The framework
//! is designed to be performant, extensible, and easy to use while offering a wide range of
//! features for building and training machine learning models.
//!
//! The framework relies heavily on the [`ndarray`](https://docs.rs/ndarray) crate for its
//! n-dimensional arrays, which are essential for efficient data manipulation and mathematical
//! operations.
//!
//! ## Features
//!
//! - `data`: Provides utilities for data loading, preprocessing, and augmentation.
//! - `derive`: Custom derive macros for automatic implementation of traits
//! - `init`: Enables various initialization strategies for model parameters.
//! - `macros`: Procedural macros for simplifying common tasks in machine learning.
//! - `neural`: A neural network module that includes layers, optimizers, and training
//! utilities.
//!
//! ### _Extensions_
//!
//! The crate is integrated with several optional externcal crates that are commonly used in
//! Rust development; listed below are some of the most relevant of these _extensions_ as they
//! add additional functionality to the framework.
//!
//! - [`approx`](https://docs.rs/approx): Enables approximate equality checks for
//! floating-point arithmetic, useful for testing and validation of model outputs.
//! - `json`: Enables JSON serialization and deserialization for models and data.
//! - [`rayon`](https://docs.rs/rayon): Enables parallel processing for data loading and
//! training.
//! - [`serde`](https://serde.rs): Enables the `serde` crate for the serialization and
//! deserialization of models and data.
//! - [`tracing`](https://docs.rs/tracing): Enables the `tracing` crate for structured logging
//! and diagnostics.
//!
//! ## Roadmap
//!
//! - **DSL**: Create a pseudo-DSL for defining machine learning models and training processes.
//! - **GPU**: Support for GPU acceleration to speed up training and inference.
//! - **Interoperability**: Integrate with other libraries and frameworks (TensorFlow, PyTorch)
//! - **Visualization**: Utilities for visualizing model architectures and training progress
//! - **WASM**: Native support for WebAssembly enabling models to be run in web browsers.
//!
pub use *;
pub use *;
pub use *;
/// this module contains various data loaders, preprocessors, and augmenters
pub use concision_data as data;