@@ -36,7 +36,7 @@ following to the project's `pom.xml` to use the TensorFlow Java APIs:
3636<dependency >
3737 <groupId >org.tensorflow</groupId >
3838 <artifactId >tensorflow</artifactId >
39- <version >1.7.0-rc1 </version >
39+ <version >1.7.0</version >
4040</dependency >
4141```
4242
@@ -65,7 +65,7 @@ As an example, these steps will create a Maven project that uses TensorFlow:
6565 <dependency>
6666 <groupId>org.tensorflow</groupId>
6767 <artifactId>tensorflow</artifactId>
68- <version>1.7.0-rc1 </version>
68+ <version>1.7.0</version>
6969 </dependency>
7070 </dependencies>
7171 </project>
@@ -123,12 +123,12 @@ instead:
123123<dependency >
124124 <groupId >org.tensorflow</groupId >
125125 <artifactId >libtensorflow</artifactId >
126- <version >1.7.0-rc1 </version >
126+ <version >1.7.0</version >
127127</dependency >
128128<dependency >
129129 <groupId >org.tensorflow</groupId >
130130 <artifactId >libtensorflow_jni_gpu</artifactId >
131- <version >1.7.0-rc1 </version >
131+ <version >1.7.0</version >
132132</dependency >
133133```
134134
@@ -147,7 +147,7 @@ refer to the simpler instructions above instead.
147147Take the following steps to install TensorFlow for Java on Linux or macOS:
148148
149149 1 . Download
150- [ libtensorflow.jar] ( https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-1.7.0-rc1 .jar ) ,
150+ [ libtensorflow.jar] ( https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-1.7.0.jar ) ,
151151 which is the TensorFlow Java Archive (JAR).
152152
153153 2 . Decide whether you will run TensorFlow for Java on CPU(s) only or with
@@ -166,18 +166,18 @@ Take the following steps to install TensorFlow for Java on Linux or macOS:
166166 OS=$(uname -s | tr '[:upper:]' '[:lower:]')
167167 mkdir -p ./jni
168168 curl -L \
169- "https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow_jni-${TF_TYPE}-${OS}-x86_64-1.7.0-rc1 .tar.gz" |
169+ "https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow_jni-${TF_TYPE}-${OS}-x86_64-1.7.0.tar.gz" |
170170 tar -xz -C ./jni
171171
172172### Install on Windows
173173
174174Take the following steps to install TensorFlow for Java on Windows:
175175
176176 1 . Download
177- [ libtensorflow.jar] ( https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-1.7.0-rc1 .jar ) ,
177+ [ libtensorflow.jar] ( https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-1.7.0.jar ) ,
178178 which is the TensorFlow Java Archive (JAR).
179179 2 . Download the following Java Native Interface (JNI) file appropriate for
180- [ TensorFlow for Java on Windows] ( https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow_jni-cpu-windows-x86_64-1.7.0-rc1 .zip ) .
180+ [ TensorFlow for Java on Windows] ( https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow_jni-cpu-windows-x86_64-1.7.0.zip ) .
181181 3 . Extract this .zip file.
182182
183183
@@ -225,7 +225,7 @@ must be part of your `classpath`. For example, you can include the
225225downloaded ` .jar ` in your ` classpath ` by using the ` -cp ` compilation flag
226226as follows:
227227
228- <pre ><b >javac -cp libtensorflow-1.7.0-rc1 .jar HelloTF.java</b ></pre >
228+ <pre ><b >javac -cp libtensorflow-1.7.0.jar HelloTF.java</b ></pre >
229229
230230
231231### Running
@@ -239,11 +239,11 @@ two files are available to the JVM:
239239For example, the following command line executes the ` HelloTF ` program on Linux
240240and macOS X:
241241
242- <pre ><b >java -cp libtensorflow-1.7.0-rc1 .jar:. -Djava.library.path=./jni HelloTF</b ></pre >
242+ <pre ><b >java -cp libtensorflow-1.7.0.jar:. -Djava.library.path=./jni HelloTF</b ></pre >
243243
244244And the following command line executes the ` HelloTF ` program on Windows:
245245
246- <pre ><b >java -cp libtensorflow-1.7.0-rc1 .jar;. -Djava.library.path=jni HelloTF</b ></pre >
246+ <pre ><b >java -cp libtensorflow-1.7.0.jar;. -Djava.library.path=jni HelloTF</b ></pre >
247247
248248If the program prints <tt >Hello from <i >version</i ></tt >, you've successfully
249249installed TensorFlow for Java and are ready to use the API. If the program
0 commit comments