-
Could you sketch the way how to further process the inference (extract the result) from a model? To explain what I mean: I took the model of tensorflow's hello_world example and got some results, for example
The underlying model is supposed to have learned
I can display the entire output as shown above but in order to further process it, I have to extract it as a |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hey! The array_view methods, like you tried, are a bridge to ndarray ArrayBase. You can access values by indexing (using []) like shown here: https://docs.rs/ndarray/0.15.4/ndarray/struct.ArrayBase.html#indexing-and-dimension. |
Beta Was this translation helpful? Give feedback.
Hey!
The array_view methods, like you tried, are a bridge to ndarray ArrayBase. You can access values by indexing (using []) like shown here: https://docs.rs/ndarray/0.15.4/ndarray/struct.ArrayBase.html#indexing-and-dimension.