Tensorflow in Scala reflection
问题 I am trying to get tensorflow for java to work on Scala. I am use the tensorflow java library without any wrapper for Scala. At sbt I have: If I run the HelloWord found here, it WORKS fine, with the Scala adaptations: import org.tensorflow.Graph import org.tensorflow.Session import org.tensorflow.Tensor import org.tensorflow.TensorFlow val g = new Graph() val value = "Hello from " + TensorFlow.version() val t = Tensor.create(value.getBytes("UTF-8")) // The Java API doesn't yet include