@@ -82,7 +82,7 @@ systems with no GPU support, you should add the following dependencies:
8282```
8383Or Gradle:
8484``` groovy
85- def tfVersion = '1.0 .0'
85+ def tfVersion = '1.1 .0'
8686implementation "org.tensorflow:tensorflow-core-api:$tfVersion"
8787implementation "org.tensorflow:tensorflow-core-native:$tfVersion:linux-x86_64"
8888```
@@ -116,7 +116,7 @@ native dependencies as follows:
116116```
117117Or Gradle:
118118``` groovy
119- def tfVersion = '1.0 .0'
119+ def tfVersion = '1.1 .0'
120120implementation "org.tensorflow:tensorflow-core-api:$tfVersion"
121121implementation "org.tensorflow:tensorflow-core-native:$tfVersion:linux-x86_64-gpu"
122122implementation "org.tensorflow:tensorflow-core-native:$tfVersion:macosx-arm64"
@@ -148,7 +148,7 @@ simply add this dependency to your application:
148148```
149149Or Gradle:
150150``` groovy
151- implementation "org.tensorflow:tensorflow-core-platform:1.0 .0"
151+ implementation "org.tensorflow:tensorflow-core-platform:1.1 .0"
152152```
153153
154154Be aware though that the builds of TensorFlow are quite voluminous and including too many native dependencies may
@@ -160,7 +160,7 @@ the conventions established on this page:
160160### Snapshots
161161
162162Snapshots of TensorFlow Java artifacts are automatically distributed after each update in the code. To use them, you need
163- to add Sonatype OSS repository in your pom.xml, like the following
163+ to add Sonatype OSS repository in your ` pom.xml ` , like the following
164164
165165``` xml
166166<repositories >
@@ -201,21 +201,21 @@ dependencies {
201201This table shows the mapping between TensorFlow, TensorFlow Java and minimum supported Java versions.
202202
203203| TensorFlow Java Version | TensorFlow Version | Minimum Java Version |
204- | -------------------------| --------------------| --------------- |
205- | 0.2.0 | 2.3.1 | 8 |
206- | 0.3.0 | 2.4.1 | 8 |
207- | 0.3.1 | 2.4.1 | 8 |
208- | 0.3.2 | 2.4.1 | 8 |
209- | 0.3.3 | 2.4.1 | 8 |
210- | 0.4.0 | 2.7.0 | 8 |
211- | 0.4.1 | 2.7.1 | 8 |
212- | 0.4.2 | 2.7.4 | 8 |
213- | 0.5.0 | 2.10.1 | 11 |
214- | 1.0.0-rc.1 | 2.16.1 | 11 |
215- | 1.0.0-rc.2 | 2.16.2 | 11 |
216- | 1.0.0 | 2.16.2 | 11 |
217- | 1.1.0 | 2.18.0 | 11 |
218- | 1.2.0-SNAPSHOT | 2.18.0 | 11 |
204+ | -------------------------| --------------------| ---------------------- |
205+ | 0.2.0 | 2.3.1 | 8 |
206+ | 0.3.0 | 2.4.1 | 8 |
207+ | 0.3.1 | 2.4.1 | 8 |
208+ | 0.3.2 | 2.4.1 | 8 |
209+ | 0.3.3 | 2.4.1 | 8 |
210+ | 0.4.0 | 2.7.0 | 8 |
211+ | 0.4.1 | 2.7.1 | 8 |
212+ | 0.4.2 | 2.7.4 | 8 |
213+ | 0.5.0 | 2.10.1 | 11 |
214+ | 1.0.0-rc.1 | 2.16.1 | 11 |
215+ | 1.0.0-rc.2 | 2.16.2 | 11 |
216+ | 1.0.0 | 2.16.2 | 11 |
217+ | 1.1.0 | 2.18.0 | 11 |
218+ | 1.2.0-SNAPSHOT | 2.18.0 | 11 |
219219
220220## How to Contribute?
221221
0 commit comments