Crates.io | tissue |
lib.rs | tissue |
version | 0.0.0 |
source | src |
created_at | 2024-03-03 17:55:02.255524 |
updated_at | 2024-03-03 17:55:02.255524 |
description | Quickly showcase your machine learning magic! On the tissue, with Rust. |
homepage | |
repository | https://github.com/psiace/tissue |
max_upload_size | |
id | 1160801 |
size | 103,154 |
Tissue is still in its early stages of development, so it may have bugs or APIs that are constantly changing.
Tissue is a Rust framework that enables effortless and efficient conversion of machine learning models into interactive, user-friendly demos. With Tissue, a few lines of code are all it takes to bring your machine learning algorithms to life with engaging visual applications.
To begin using Tissue, add it to your project's Cargo.toml
file:
[dependencies]
tissue = "0.1.0"
Create an interactive demo with Tissue:
use tissue::{run, Input};
fn main() {
run(
|x: Vec<f32>| x.iter().sum(),
&[Input::Number(234.289), Input::Number(235.6)],
)
.expect("Could not run");
}
This library is licensed under either of:
at your option.
Tissue owes much to the foundational work of Chris McComb's tease; its initial codebase was critical to Tissue's early development, despite tease no longer being actively maintained.
Inspired by the user-friendly interfaces of Gradio and Streamlit, Tissue aspires to streamline the sharing and demonstration of machine learning models within the Rust ecosystem, emulating the simplicity these tools offer.
Embrace the power of Rust and bring the magic of your machine learning models to life with Tissue!