dep
Go Get
Installation
Usage
package main
import (
tf "github.com/tensorflow/tensorflow/tensorflow/go" //access with tf.
"github.com/tensorflow/tensorflow/tensorflow/go/op" //access with op.
"fmt"
)
func main() {
// Construct a graph with an operation that produces a string constant.
s := op.NewScope()
c := op.Const(s, "Hello from TensorFlow version " + tf.Version())
}Last updated