aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/go/session_test.go
Commit message (Collapse)AuthorAge
* golang: added Session.ListDevices method (#14385)Gravatar Andrei Nigmatulin2017-12-21
| | | | | * golang: added Session.ListDevices method
* differentiate package description and licenseGravatar zhengjiajin2017-03-27
|
* Go: Provide a mechanism to configure the Session.Gravatar Asim Shankar2017-02-28
| | | | | | | | A Session is configured using the ConfigProto protocol buffer. For now, continuing with attempts to keep the 'tensorflow' go package free of any protocol buffer dependencies, SessionOptions uses a serialized representation of this message. This choice might make sense to revisit. Change: 148750535
* Go: Add PartialRun support.Gravatar Asim Shankar2017-02-16
| | | | Change: 147783087
* Go: Add a SavedModel typeGravatar Jonathan Hseu2017-02-14
| | | | Change: 147543652
* SavedModel support in Go.Gravatar Jonathan Hseu2017-02-08
| | | | Change: 146938337
* Go: Support for String tensors.Gravatar Asim Shankar2016-11-21
| | | | | | | | | | | And use this support to simplify the Inception example as it can use the DecodeJpeg op. Also fixed a bug in generated op functions - A TensorFlow "int" is a Go "int64". Another step in #10 Change: 139809489
* 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: 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
* Rename Port to Output in the Go API.Gravatar Jonathan Hseu2016-08-23
| | | | Change: 131089292
* Initial version of the Go API. The API is subject to change.Gravatar Jonathan Hseu2016-08-23
Remaining work to do: - Generated ops. - Generated protocol buffers. - A few calls requiring protocol buffers aren't in this change. Change: 131066649