runn 0.1.1

Runn is a feature-rich, easy-to-use library for building, training, and evaluating feed-forward neural networks in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::error::NetworkError;

pub mod csv;

pub trait Exporter {
    fn export(&self, headers: Vec<String>, values: Vec<Vec<String>>) -> Result<(), NetworkError>;
}

pub(crate) trait Exportable {
    fn header(&self) -> Vec<String>;
    fn values(&self) -> Vec<String>;
}