#神经网络 #tensorflow #onnx

tract-tensorflow

小巧、简洁、独立、可移植的 TensorFlow 和 ONNX 推理

131 个版本

0.21.6 2024 年 7 月 24 日
0.21.4 2024 年 4 月 23 日
0.21.2 2024 年 3 月 29 日
0.20.22 2023 年 11 月 28 日
0.1.1 2018 年 11 月 2 日

#1032机器学习

Download history • Rust 包仓库 21/week @ 2024-05-03 • Rust 包仓库 209/week @ 2024-05-10 • Rust 包仓库 31/week @ 2024-05-17 • Rust 包仓库 40/week @ 2024-05-24 • Rust 包仓库 57/week @ 2024-05-31 • Rust 包仓库 43/week @ 2024-06-07 • Rust 包仓库 42/week @ 2024-06-14 • Rust 包仓库 41/week @ 2024-06-21 • Rust 包仓库 20/week @ 2024-06-28 • Rust 包仓库 63/week @ 2024-07-05 • Rust 包仓库 22/week @ 2024-07-12 • Rust 包仓库 124/week @ 2024-07-19 • Rust 包仓库 77/week @ 2024-07-26 • Rust 包仓库 19/week @ 2024-08-02 • Rust 包仓库 7/week @ 2024-08-09 • Rust 包仓库 7/week @ 2024-08-16 • Rust 包仓库

139 每月下载量
用于 2 crates

MIT/Apache

1.5MB
14K SLoC

Tract TensorFlow 模块

小巧、简洁、独立、可移植的推理。

示例

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]));

依赖项

~16–33MB
~556K SLoC