aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/go/util_test.go
Commit message (Collapse)AuthorAge
* differentiate package description and licenseGravatar zhengjiajin2017-03-27
|
* Go: Add PartialRun support.Gravatar Asim Shankar2017-02-16
| | | | Change: 147783087
* go: Introduce Graph.AddOperation to add operations to the Graph.Gravatar Asim Shankar2016-10-07
| | | | | | | | | | | | | | Export an API to add operations to the graph. I also intend to use this API in a code generator that will generate Go sources files containing functions for each OpDef (and all this generated code will be in a separate package). While at it, also changed some tests to use the "sub-tests" feature in Go 1.7 (https://blog.golang.org/subtests) Another step in the journey of #10 Change: 135493412
* go: Add an example.Gravatar Asim Shankar2016-09-28
| | | | | | | | | | | | | Add an example (that will appear in Go doc) for a real use of the Go TensorFlow APIs - using a pre-defined image recognition model for inference. While at it a couple of minor tweaks: - NewSession now accepts 'nil' for options as the documentation says it does - Convenience accessors for the Outputs of an Operation - Ability to extract (possibly partial) shapes from an Output Another step towards #10 Change: 134560938
* go: Ability to import a pre-defined Graph.Gravatar Asim Shankar2016-09-23
With this change, it should be possible to execute a pre-defined Graph created by any means (like a training session in a Python program) in Go. One more step towards #10 Change: 134096795