@@ -82,7 +82,7 @@ systems with no GPU support, you should add the following dependencies:
82
82
```
83
83
Or Gradle:
84
84
``` groovy
85
- def tfVersion = '1.0 .0'
85
+ def tfVersion = '1.1 .0'
86
86
implementation "org.tensorflow:tensorflow-core-api:$tfVersion"
87
87
implementation "org.tensorflow:tensorflow-core-native:$tfVersion:linux-x86_64"
88
88
```
@@ -116,7 +116,7 @@ native dependencies as follows:
116
116
```
117
117
Or Gradle:
118
118
``` groovy
119
- def tfVersion = '1.0 .0'
119
+ def tfVersion = '1.1 .0'
120
120
implementation "org.tensorflow:tensorflow-core-api:$tfVersion"
121
121
implementation "org.tensorflow:tensorflow-core-native:$tfVersion:linux-x86_64-gpu"
122
122
implementation "org.tensorflow:tensorflow-core-native:$tfVersion:macosx-arm64"
@@ -148,7 +148,7 @@ simply add this dependency to your application:
148
148
```
149
149
Or Gradle:
150
150
``` groovy
151
- implementation "org.tensorflow:tensorflow-core-platform:1.0 .0"
151
+ implementation "org.tensorflow:tensorflow-core-platform:1.1 .0"
152
152
```
153
153
154
154
Be 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:
160
160
### Snapshots
161
161
162
162
Snapshots 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
164
164
165
165
``` xml
166
166
<repositories >
@@ -201,21 +201,21 @@ dependencies {
201
201
This table shows the mapping between TensorFlow, TensorFlow Java and minimum supported Java versions.
202
202
203
203
| 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 |
219
219
220
220
## How to Contribute?
221
221
0 commit comments