rust icon indicating copy to clipboard operation
rust copied to clipboard

Rust language bindings for TensorFlow

Results 84 rust issues
Sort by recently updated
recently updated
newest added

Are bindings to TensorFlow Lite on the roadmap for this project?

enhancement

OS: `Darwin Kernel Version 19.0.0: Wed Sep 25 20:18:50 PDT 2019; root:xnu-6153.11.26~2/RELEASE_X86_64`. If add latest version (`0.14.0`) with `features = ["tensorflow_gpu"]` to `Cargo.toml`, most of times I get errors like...

bug

In a version 0.17.0 release, the back end of this crate became TF 2.5, while following example Python codes stay for TF 1.x series. * [x] addition - resolved by...

cleanup

Whilst "running" a model can be done via TensorFlow APIs, there are a series of steps involved in the post-processing phase. For example the outputs from YOLOv4 are just byte...

enhancement

I imported tensorflow modules for a detection demo. In `Cargo.toml` ```bash [dependencies] tensorflow = "0.15.0" tensorflow-sys = "0.18.0" ``` After `cargo build --target=wasm32-wasi` ```bash error: linking with `rust-lld` failed: exit...

enhancement

It seems like tensorflow does not build without internet access. I am using version `0.16.0`. ``` error: failed to run custom build command for `tensorflow-sys v0.19.1` Caused by: process didn't...

ERROR: /root/tensorflow/third_party/llvm/BUILD:1:10: //third_party/llvm:expand_cmake_vars: This target is being built for Python 2 but (transitively) includes Python 3-only sources. You can get diagnostic information about which dependencies introduce this version requirement by...

bug

Is there any interest to add a way to do runtime linking (e.g., using `libloading`) to installed TensorFlow shared libraries?

enhancement

Hi @adamcrume, I have opened this PR. I thought we could move our discussion from the issue page to here. TODO: Struct definitions for AttrValue::list and AttrValue::func are still pending...

These examples are explaining how to use saved models created using Keras. 1st example explains how to use the model when there is precisely one input operation. 2nd example shows...