rust icon indicating copy to clipboard operation
rust copied to clipboard

Rust language bindings for TensorFlow

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

Hello, I am have been trying to setup the example [mobilenetv3](https://github.com/tensorflow/rust/blob/master/examples/mobilenetv3.rs). In my `Cargo.toml` I have dependecy `tensorflow = { version = "0.19.0" }`, up to this point I can...

[…s/349](https://github.com/tensorflow/rust/issues/349)

Adds generic `Sealed` super trait and applies it to `TensorType`. Fixes #284

Hi there, Like tensorflow python has `tf.distribute`, what is the equivalent for the rust version? Thanks

The *Inst ops need documentation generated for the user. This includes checking to ensure docstrings are formatted properly then updating doc gen and pull requesting. I would like to be...

Hi there, we (Rust group @sslab-gatech) are scanning crates on crates.io for potential soundness bugs. We noticed that the [`TensorType`](https://tensorflow.github.io/rust/tensorflow/trait.TensorType.html) trait is commented as: > Currently, all implementors must not...

enhancement
good first issue

This is to mirror support in https://www.tensorflow.org/api_docs/cc/class/tensorflow/scope#withkernellabel. The implementation will be similar to `Scope::with_device`, but setting an attribute rather than a dedicated field. Unfortunately, we can't support `with_assigned_device`, yet, because...

enhancement
good first issue

I am trying to backprop/minimize my network without the input vector since I already have output and label vectors This is the relevant code I'm trying to implement: ``` ......

The Merge operation (https://www.tensorflow.org/api_docs/cc/class/tensorflow/ops/merge) should accept a list of inputs, and output the first received tensor. However, the rust binding (https://tensorflow.github.io/rust/tensorflow/ops/fn.merge.html) currently accepts only a single input (despite the input...

bug

Eager evaluation is much more pleasant to use than computation graph. Is there any way to do so in this binding?

question