[][src]Crate tract_tensorflow

SharedTensor Deploy, SharedTensor module

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

Example

use tract_core::*;

// build a simple model that just add 3 to each input component
let model = tract_tensorflow::for_path("tests/models/plus3.pb").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 = ndarray::arr1(&[1.0f32, 2.5, 5.0]);
let mut outputs = plan.run(tvec![input.into()]).unwrap();

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

// unwrap it as array of f32
let tensor = tensor.to_array_view::<f32>().unwrap();
assert_eq!(tensor, ndarray::arr1(&[4.0, 5.5, 8.0]).into_dyn());

Re-exports

pub use self::model::for_path;
pub use self::model::for_reader;

Modules

model
ops
tensor
tfpb

Generated protobuf codec for SharedTensor models, plus a handful of helper for writting tests.

Traits

ToSharedTensor