Adam Crume
Adam Crume
It's not clear to me that it would provide much benefit. Would you want to do a proof-of-concept and compare the before and after? I'm also a little concerned that...
I've avoided exposing the generated proto code so far because that would lock in a choice of protobuf libraries, and it wasn't clear which protobuf crate was going to "win"....
Inside the proto in `MetaGraphDef::from_serialized_proto`, you can find the `collection_def` with the key `variables`, and `value.bytes_list.value` should contain a serialized `VariableDef` proto. That (plus metadata from the tensor referred to...
It's not released yet, but as of https://github.com/tensorflow/rust/pull/418 the TensorType trait is sealed. I'd like to follow up by marking that function as `unsafe` and hiding it from the docs....
https://github.com/tensorflow/rust/pull/291 hasn't been updated in a couple of years, so I'd say this is available. I mentioned in https://github.com/tensorflow/rust/pull/291#pullrequestreview-564013073 that it's actually a bit difficult: > Whoops, I'm sorry, I...
It's not a pipe dream, but it would be an enormous undertaking. The underlying API is completely different, so it would basically require rewriting this entire library, and to be...
https://github.com/tensorflow/rust/pull/293 hasn't been updated in a couple of years, and [whereistejas](https://github.com/whereistejas) hasn't said anything, so I'd say it's fair game.
This crate uses ISO-8859-1 by default because that's what the Java Properties class uses. If this used UTF-8 by default, it wouldn't be compatible with the Java Properties class. Custom...
This is also an issue for the Rust API, since that depends on the C API. This is especially a problem now that saving a Keras model from Python can...
I maintain github.com/tensorflow/rust, and upgrading to TensorFlow 2.4 is turning into a major headache. Removing TF_StringEncode and friends breaks TensorFlow's compatibility guarantees. https://www.tensorflow.org/guide/versions#what_is_covered states that the C API is covered,...