September 2017
Beginner to intermediate
304 pages
7h 2m
English
The TensorFlow team has provided some good docs to install TensorFlow and get it ready for usage with Go. These docs can be found at https://www.tensorflow.org/install/install_go. There are a couple of preliminary steps, but once you have the TensorFlow C libraries installed, you can get the following Go package:
$ go get github.com/tensorflow/tensorflow/tensorflow/go
Everything should be good to go if you were able to get github.com/tensorflow/tensorflow/tensorflow/go without error, but you can make sure that you are ready to use TensorFlow by executing the following tests:
$ go test github.com/tensorflow/tensorflow/tensorflow/gook github.com/tensorflow/tensorflow/tensorflow/go 0.045s
Read now
Unlock full access