#tensorflow #onnx #neural-network #networking

tract-tensorflow

Tiny, no-nonsense, self contained, TensorFlow and ONNX inference

131 releases

new 0.21.6 Jul 24, 2024
0.21.4 Apr 23, 2024
0.21.2 Mar 29, 2024
0.20.22 Nov 28, 2023
0.1.1 Nov 2, 2018

#959 in Machine learning

Download history 200/week @ 2024-04-01 594/week @ 2024-04-08 9/week @ 2024-04-15 196/week @ 2024-04-22 35/week @ 2024-04-29 192/week @ 2024-05-06 37/week @ 2024-05-13 25/week @ 2024-05-20 44/week @ 2024-05-27 58/week @ 2024-06-03 52/week @ 2024-06-10 33/week @ 2024-06-17 44/week @ 2024-06-24 66/week @ 2024-07-01 8/week @ 2024-07-08 26/week @ 2024-07-15

147 downloads per month
Used in 2 crates

MIT/Apache

1.5MB
14K SLoC

Tract TensorFlow module

Tiny, no-nonsense, self contained, portable inference.

Example

use tract_tensorflow::prelude::*;

// build a simple model that just add 3 to each input component
let tf = tensorflow();
let mut model = tf.model_for_path("tests/models/plus3.pb").unwrap();

// set input input type and shape, then optimize the network.
model.set_input_fact(0, f32::fact(&[3]).into()).unwrap();
let model = model.into_optimized().unwrap();

// we build an execution plan. default input and output are inferred from
// the model graph
let plan = SimplePlan::new(&model).unwrap();

// run the computation.
let input = tensor1(&[1.0f32, 2.5, 5.0]);
let mut outputs = plan.run(tvec![input]).unwrap();

// take the first and only output tensor
let mut tensor = outputs.pop().unwrap();

assert_eq!(tensor, rctensor1(&[4.0f32, 5.5, 8.0]));

Dependencies

~17–32MB
~551K SLoC