#tangram #deployment #machine-learning #model #programmers #train #monitor

tangram_finite

Tangram makes it easy for programmers to train, deploy, and monitor machine learning models

4 releases (breaking)

0.7.0 Aug 17, 2021
0.6.0 Jul 19, 2021
0.5.0 Jul 2, 2021
0.4.0 Jun 25, 2021

#805 in Machine learning

Download history 5/week @ 2024-01-08 9/week @ 2024-02-12 21/week @ 2024-02-19 27/week @ 2024-02-26 20/week @ 2024-03-04 20/week @ 2024-03-11 29/week @ 2024-03-18 14/week @ 2024-03-25 40/week @ 2024-04-01 18/week @ 2024-04-08 16/week @ 2024-04-15

92 downloads per month
Used in 5 crates (3 directly)

MIT license

5KB
117 lines

Tangram

Tangram is a programmable build system and package manager.

Quickstart.

curl https://tangram.dev/install.sh | sh

lib.rs:

This crate provides the Finite type, which is used to indicate that a floating point number is not infinite and not NaN. It is similar to the standard library's NonZero{U8, I8, etc.} types.

Example

use tangram_finite::Finite;

let n = <Finite<f32>>::new(1.0).unwrap();
assert!(Finite::new(n.get() / 0.0).is_err());

Dependencies

~0.8–1.5MB
~33K SLoC