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
trafficstars

This will require adding a new enum which looks like the generated `protos::AttrValue_oneof_value` (in protos/attr_value.rs), and `default_value` will need to be optional.

enhancement
good first issue

Hi, This is my first ever contribution to a rust project. Please, let me know if the code is lacking in any way. While setting the boolean list attribute, I...

In the `operation_attributes` test in graph.rs, `set_bool_list` and `get_bool_list` should be tested.

cleanup

Hi. I am a beginner in Rust and was looking for issues that I can start working on. Unfortunately there was only 1 atm which seems to have been worked...

enhancement

Hi, is there a way to save the SavedModel after training having loaded the graph from a SavedModel (as opposed to initialising the layers & vars like in `examples/xor.rs`)? It...

Hello! After 0.16 version has been released we decided to switch to TF2. The issue is that it can't find the op by name even if this OP is present...

question

As mentioned in #272 I believe this will simplify the current release/build process for these bindings and using an external crate for this means some of the fields currently serialized...

So as briefly mentioned in https://groups.google.com/a/tensorflow.org/g/rust/c/Ctov9Caw1YU would be nice to come up with some general release schedule or a prioritisation for features for next releases. I'm personally a fan of...

Since protos are now being compiled into the bindings it might be nice to do some breaking changes and remove a lot of the `&[u8]` encoded protobuf stuff being passed...

enhancement

Currently in order to pass tensorflow session options you need to pass in a encoded protobuf of `ConfigProto` to the [`SessionOptions::set_config`](https://tensorflow.github.io/rust/tensorflow/struct.SessionOptions.html#method.set_config) API. While matching the API of e.g. Java bindings,...

enhancement