tease 0.1.1

Rapidly prototype interfaces for your machine learning models
Documentation
1
2
3
4
5
6
7
8
9
10
use tease::{Input, Teaser};

fn main() {
    Teaser::default()
        .with_title("Addition".to_string())
        .with_description("This is for adding things together.".to_string())
        .with_inputs(vec![Input::default(); 2])
        .with_function(move |x| x.iter().sum())
        .run();
}