23fc134a17
PiperOrigin-RevId: 317755766 Change-Id: I105b220b0760792d9f4fa7c1390c1477cdb1c627 |
||
---|---|---|
.. | ||
genop | ||
op | ||
BUILD | ||
README.md | ||
android.go | ||
attrs.go | ||
attrs_test.go | ||
context.go | ||
context_test.go | ||
doc.go | ||
example_inception_inference_test.go | ||
graph.go | ||
graph_test.go | ||
lib.go | ||
operation.go | ||
operation_test.go | ||
saved_model.go | ||
saved_model_test.go | ||
session.go | ||
session_test.go | ||
shape.go | ||
shape_test.go | ||
signature.go | ||
signature_test.go | ||
status.go | ||
tensor.go | ||
tensor_handle.go | ||
tensor_handle_test.go | ||
tensor_test.go | ||
test.sh | ||
util_test.go | ||
version.go |
README.md
TensorFlow in Go
Construct and execute TensorFlow graphs in Go.
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
-
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
-
Download the source code
go get -d github.com/tensorflow/tensorflow/tensorflow/go
-
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).
-
Make
libtensorflow.so
andlibtensorflow_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
-
Build and test:
go generate github.com/tensorflow/tensorflow/tensorflow/go/op 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:
- Protocol buffer compiler (protoc) 3.x
- The TensorFlow repository under GOPATH
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.