dumbnet 0.1.0

a [no_std] neural network library
Documentation
pub use crate::activation::{ReLu, Sigmoid, SoftMax};
//pub use crate::convolution::ConvolutionalLayer;
pub use crate::{
	layers::{InnerLayer, Layer, OutputLayer},
	softmax::SoftMax as SoftMaxLayer,
};