cogent/
lib.rs

1//! Cogent is a library to construct and train neural networks.
2//!
3//! The goal of Cogent is to provide a simple library for usage of nueral networks.
4//! ## Crate Status
5//! While Cogent has come quite a way it is still very early in its development, as such things will be changing all the time.
6//!
7//! Things may change massively from version to version.
8
9pub use crate::activations::*;
10mod activations;
11pub use crate::costs::*;
12mod costs;
13
14mod layer;
15
16pub use crate::neural_network::{Layer, NeuralNetwork, Trainer};
17mod neural_network;
18
19pub use crate::setter_enums::*;
20mod setter_enums;