You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Suppose that one, for instance, restores a graph from a file. Then one needs to add some elements. But one needs a Scope as an argument for building operations.
Tensorflow-java allows one to build a Scope from a Graph: see the example in the documentation. Why not in tensorflow-rust?
Best regards.
The text was updated successfully, but these errors were encountered:
You can then load the graph from disk into that graph using SavedModelBundle
as an example, I did something similar in the framework I'm trying to create (originally taken from example code in this repository) https://github.com/Corallus-Caninus/Brains/blob/main/src/lib.rs#L444
notice also that I grab the ops out of the deserialized Graph by using the GraphAPI names.
Suppose that one, for instance, restores a graph from a file. Then one needs to add some elements. But one needs a Scope as an argument for building operations.
Tensorflow-java allows one to build a Scope from a Graph: see the example in the documentation. Why not in tensorflow-rust?
Best regards.
The text was updated successfully, but these errors were encountered: