STT-tensorflow/tensorflow/java
Mark Daoust 79cf502129 Remove references to github.com/tensorflow/models/blob/master/samples
It's been deleted by [](https://github.com/tensorflow/models/pull/8234)

PiperOrigin-RevId: 300614979
Change-Id: Ie37d9bb8001072a6f7ff3c6f4a7b0bcee5c08b51
2020-03-12 13:49:33 -07:00
..
config
maven Release TF Java 1.15 2019-10-23 14:58:06 -07:00
src Remove references to github.com/tensorflow/models/blob/master/samples 2020-03-12 13:49:33 -07:00
BUILD Avoid hard coding in NativeLibrary.getMajorVersionNumber 2020-01-09 20:05:26 +08:00
build_defs.bzl Remove # -*- Python -*- from Starlark files. 2019-08-30 14:10:07 -07:00
generate_pom.cc
README.md Remove reference to contrib in tensorflow/java/README 2019-09-04 11:42:43 -07:00

TensorFlow for Java

Warning

: The TensorFlow Java API is not currently covered by the TensorFlow API stability guarantees.

For using TensorFlow on Android refer instead to TensorFlow Lite.

Quickstart

Nightly builds

Releases built from release branches are available on Maven Central. Additionally, every day binaries are built from the master branch on GitHub:

Building from source

If the quickstart instructions above do not work out, the TensorFlow Java and native libraries will need to be built from source.

  1. Install bazel

  2. Setup the environment to build TensorFlow from source code (Linux or macOS). If you'd like to skip reading those details and do not care about GPU support, try the following:

    # On Linux
    sudo apt-get install python swig python-numpy
    
    # On Mac OS X with homebrew
    brew install swig
    
  3. Configure (e.g., enable GPU support) and build:

    ./configure
    bazel build --config opt \
      //tensorflow/java:tensorflow \
      //tensorflow/java:libtensorflow_jni
    

The command above will produce two files in the bazel-bin/tensorflow/java directory:

  • An archive of Java classes: libtensorflow.jar
  • A native library: libtensorflow_jni.so on Linux, libtensorflow_jni.dylib on OS X, or tensorflow_jni.dll on Windows.

To compile Java code that uses the TensorFlow Java API, include libtensorflow.jar in the classpath. For example:

javac -cp bazel-bin/tensorflow/java/libtensorflow.jar ...

To execute the compiled program, include libtensorflow.jar in the classpath and the native library in the library path. For example:

java -cp bazel-bin/tensorflow/java/libtensorflow.jar \
  -Djava.library.path=bazel-bin/tensorflow/java \
  ...

Installation on Windows requires the more experimental bazel on Windows. Details are omitted here, but find inspiration in the script used for building the release archive: tensorflow/tools/ci_build/windows/libtensorflow_cpu.sh.

Maven

Details of the release process for Maven Central are in maven/README.md. However, for development, you can push the library built from source to a local Maven repository with:

bazel build -c opt //tensorflow/java:pom
mvn install:install-file \
  -Dfile=../../bazel-bin/tensorflow/java/libtensorflow.jar \
  -DpomFile=../../bazel-bin/tensorflow/java/pom.xml

And then refer to this library in a project's pom.xml with: (replacing VERSION with the appropriate version of TensorFlow):

<dependency>
  <groupId>org.tensorflow</groupId>
  <artifactId>libtensorflow</artifactId>
  <version>VERSION</version>
</dependency>

Bazel

If your project uses bazel for builds, add a dependency on //tensorflow/java:tensorflow to the java_binary or java_library rule. For example:

bazel run -c opt //tensorflow/java/src/main/java/org/tensorflow/examples:label_image