We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sending operation message to TF_Input returns an ExternalData object instead of an instance of TF_Operation. See following example :
operation
TF_Input
ExternalData
TF_Operation
| graph c1 c2 sum1 sum2 session result | graph := TF_Graph create. c1 := graph const: 'c1' value: 3.0 asTensor. c2 := graph const: 'c2' value: 4.0 asTensor. sum1 := c1 + c2. sum2 := sum1 + sum1. session := TF_Session on: graph. result := session runOutput: (sum2 output: 0). input := (graph operationNamed: 'Add_3') input:0. input operation
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Sending
operation
message toTF_Input
returns anExternalData
object instead of an instance ofTF_Operation
. See following example :The text was updated successfully, but these errors were encountered: