STT-tensorflow/tensorflow/go
Yasuhiro Matsumoto 36ef426427
Check nil returned
2019-10-24 13:06:50 +09:00
..
genop Cleanup usage of the protobuf workspace. See 2019-06-19 10:36:33 -07:00
op minor spelling tweaks 2019-10-10 15:38:58 +09:00
android.go
attrs_test.go
attrs.go use smaller slice length for 32-bit arch 2019-01-10 14:49:47 -08:00
BUILD Enable per-OS libs for libtensorflow_framework.so 2019-03-24 22:23:49 +08:00
context_test.go Add Go wrapper around Eager C API's Context. 2018-12-17 10:49:30 -08:00
context.go Add Go wrapper around Eager C API's Context. 2018-12-17 10:49:30 -08:00
doc.go Update doc.go 2019-05-22 14:46:47 -07:00
example_inception_inference_test.go
graph_test.go Fix gradients test in golang 2018-09-12 11:40:15 +08:00
graph.go Check nil returned 2019-10-24 13:06:50 +09:00
lib.go
operation_test.go
operation.go
README.md Merge pull request from marpaia:go-docs 2019-02-25 17:28:22 -08:00
saved_model_test.go
saved_model.go
session_test.go Automated rollback of commit 0bc46a1602. Revert . 2019-03-18 18:13:21 -07:00
session.go Automated rollback of commit 0bc46a1602. Revert . 2019-03-18 18:13:21 -07:00
shape_test.go
shape.go
status.go
tensor_handle_test.go Add Go wrapper around Eager C API's TensorHandle. 2018-12-17 11:00:00 -08:00
tensor_handle.go [Go]: Allow code in the "master" branch to work against the latest C library 2019-01-11 03:09:13 -08:00
tensor_test.go
tensor.go Go: allow larger C array backed slices on 64 bit machines 2019-08-20 19:58:40 -07:00
test.sh Force overriding a symbolic link for Go testing, 2019-05-22 14:46:39 -07:00
util_test.go
version.go

TensorFlow in Go

Construct and execute TensorFlow graphs in Go.

GoDoc

Warning

: The API defined in this package is not stable and can change without notice. The same goes for the package path: (github.com/tensorflow/tensorflow/tensorflow/go).

Quickstart

Refer to Installing TensorFlow for Go

Building the TensorFlow C library from source

If the "Quickstart" instructions above do not work (perhaps the release archives are not available for your operating system or architecture, or you're using a different version of CUDA/cuDNN), then the TensorFlow C library must be built from source.

Prerequisites

  • bazel

  • Environment to build TensorFlow from source code (Linux or macOS). If you don't need GPU support, then try the following:

    sudo apt-get install python swig python-numpy # Linux
    brew install swig                             # OS X with homebrew
    

Build

  1. Download the source code

    go get -d github.com/tensorflow/tensorflow/tensorflow/go
    
  2. Build the TensorFlow C library:

    cd ${GOPATH}/src/github.com/tensorflow/tensorflow
    ./configure
    bazel build -c opt //tensorflow:libtensorflow.so
    

    This can take a while (tens of minutes, more if also building for GPU).

  3. Make libtensorflow.so and libtensorflow_framework.so available to the linker. This can be done by either:

    a. Copying it to a system location, e.g.,

    sudo cp ${GOPATH}/src/github.com/tensorflow/tensorflow/bazel-bin/tensorflow/libtensorflow.so /usr/local/lib
    sudo cp ${GOPATH}/src/github.com/tensorflow/tensorflow/bazel-bin/tensorflow/libtensorflow_framework.so /usr/local/lib
    

    OR

    b. Setting environment variables:

    export LIBRARY_PATH=${GOPATH}/src/github.com/tensorflow/tensorflow/bazel-bin/tensorflow
    # Linux
    export LD_LIBRARY_PATH=${GOPATH}/src/github.com/tensorflow/tensorflow/bazel-bin/tensorflow
    # OS X
    export DYLD_LIBRARY_PATH=${GOPATH}/src/github.com/tensorflow/tensorflow/bazel-bin/tensorflow
    
  4. Build and test:

    go test github.com/tensorflow/tensorflow/tensorflow/go
    

Generate wrapper functions for ops

Go functions corresponding to TensorFlow operations are generated in op/wrappers.go. To regenerate them:

Prerequisites:

go generate github.com/tensorflow/tensorflow/tensorflow/go/op

Support

Use stackoverflow and/or Github issues.

Contributions

Contributions are welcome. If making any signification changes, probably best to discuss on a Github issue before investing too much time. Github pull requests are used for contributions.