#neural-network #tensorflow #onnx

tract-tensorflow

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

133 releases

new 0.21.8 Dec 5, 2024
0.21.7 Sep 23, 2024
0.21.6 Jul 24, 2024
0.21.2 Mar 29, 2024
0.1.1 Nov 2, 2018

#1134 in Machine learning

Download history 7/week @ 2024-08-15 7/week @ 2024-08-22 11/week @ 2024-08-29 5/week @ 2024-09-05 19/week @ 2024-09-12 291/week @ 2024-09-19 90/week @ 2024-09-26 57/week @ 2024-10-03 18/week @ 2024-10-10 15/week @ 2024-10-17 15/week @ 2024-10-24 14/week @ 2024-10-31 8/week @ 2024-11-07 14/week @ 2024-11-14 20/week @ 2024-11-21 12/week @ 2024-11-28

56 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

~18–33MB
~582K SLoC