rail 0.3.1

A GPU-Accelerated ML Library akin to Keras
Documentation
1
2
3
4
5
6
7
8
9
10
#[macro_use]
pub extern crate arrayfire;

mod utils;
pub mod functions;
pub mod layers;
pub mod model;

pub type Weight = f64;
pub type Matrix = arrayfire::Array<Weight>;