STT-tensorflow/tensorflow/go
2017-04-26 20:09:58 -07:00
..
genop Merge changes from github. 2017-04-04 17:24:57 -07:00
op Go: Update generated wrapper functions for TensorFlow ops. 2017-04-26 20:09:58 -07:00
BUILD Go: Run tests during continuous integration 2017-02-17 12:24:50 -08:00
doc.go Merge changes from github. 2017-04-04 17:24:57 -07:00
example_inception_inference_test.go Merge changes from github. 2017-04-04 17:24:57 -07:00
graph_test.go Merge changes from github. 2017-04-04 17:24:57 -07:00
graph.go Merge changes from github. 2017-04-04 17:24:57 -07:00
lib.go Merge changes from github. 2017-04-04 17:24:57 -07:00
operation_test.go Merge changes from github. 2017-04-04 17:24:57 -07:00
operation.go Merge changes from github. 2017-04-04 17:24:57 -07:00
README.md Merge changes from github. 2017-03-10 15:18:15 -08:00
saved_model_test.go Merge changes from github. 2017-04-04 17:24:57 -07:00
saved_model.go Merge changes from github. 2017-04-04 17:24:57 -07:00
session_test.go Merge changes from github. 2017-04-04 17:24:57 -07:00
session.cpp Merge changes from github. 2017-04-04 17:24:57 -07:00
session.go Merge changes from github. 2017-04-04 17:24:57 -07:00
shape_test.go Merge changes from github. 2017-04-04 17:24:57 -07:00
shape.go Merge changes from github. 2017-04-04 17:24:57 -07:00
status.go Merge changes from github. 2017-04-04 17:24:57 -07:00
tensor_test.go Merge changes from github. 2017-04-04 17:24:57 -07:00
tensor.go Merge changes from github. 2017-04-04 17:24:57 -07:00
test.sh Update go binary check in go test. 2017-03-21 13:14:02 -07:00
util_test.go Merge changes from github. 2017-04-04 17:24:57 -07:00
version.go Merge changes from github. 2017-04-04 17:24:57 -07:00

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 awkward package path (github.com/tensorflow/tensorflow/tensorflow/go).

Quickstart

  1. Download and extract the TensorFlow C library, preferably into /usr/local. GPU-enabled versions require CUDA 8.0 and cuDNN 5.1. For other versions, the TensorFlow C library will have to be built from source (see below).

    The following shell snippet downloads and extracts into /usr/local:

    TF_TYPE="cpu" # Set to "gpu" for GPU support
    curl -L \
      "https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-${TF_TYPE}-$(go env GOOS)-x86_64-1.0.0.tar.gz" |
    sudo tar -C /usr/local -xz
    
  2. go get this package (and run tests):

    go get github.com/tensorflow/tensorflow/tensorflow/go
    go test github.com/tensorflow/tensorflow/tensorflow/go
    
  3. Done!

Installing into locations other than /usr/local

The TensorFlow C library (libtensorflow.so) needs to be available at build time (e.g., go build) and run time (go test or executing binaries). If the library has not been extracted into /usr/local, then it needs to be made available through the LIBRARY_PATH environment variable at build time and the LD_LIBRARY_PATH environment variable (DYLD_LIBRARY_PATH on OS X) at run time.

For example, if the TensorFlow C library was extracted into /dir, then:

export LIBRARY_PATH=/dir/lib
export LD_LIBRARY_PATH=/dir/lib   # For Linux
export DYLD_LIBRARY_PATH=/dir/lib # For OS X

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 OS X). If you don't need GPU support, then try the following: sh # Linux sudo apt-get install python swig python-numpy # OS X with homebrew brew install swig

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 --config opt //tensorflow:libtensorflow.so
    

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

  3. Make libtensorflow.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
    

    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.