@@ -13,12 +13,14 @@ Caution: The TensorFlow Java API is *not* covered by the TensorFlow
13
13
14
14
## Requirements
15
15
16
- TensorFlow Java runs on Java 8 and above, and supports out-of-the-box the
16
+ TensorFlow Java runs on Java 11 and above, and supports out-of-the-box the
17
17
following platforms:
18
18
19
- * Ubuntu 16.04 or higher; 64-bit, x86
20
- * macOS 10.12.6 (Sierra) or higher; 64-bit, x86
21
- * Windows 7 or higher; 64-bit, x86
19
+ * Ubuntu 20.04 or higher; 64-bit, x86
20
+ * Ubuntu 22.04 or higher; 64-bit, arm
21
+ * macOS 12 or higher; 64-bit, x86
22
+ * macOS 14 or higher; 64-bit, arm
23
+ * Windows 10 or higher; 64-bit, x86
22
24
23
25
* Note: To use TensorFlow on Android, see
24
26
[ TensorFlow Lite] ( https://tensorflow.org/lite ) *
@@ -41,8 +43,7 @@ TensorFlow Java to your project. The easiest one is to add a dependency on the
41
43
Core API and the native dependencies it requires to run on all supported
42
44
platforms.
43
45
44
- You can also select the ` tensorflow-core-platform-gpu ` extension instead, which
45
- supports CUDA® on Linux and Windows platforms.
46
+ To include CUDA® support for Linux x86, select the ` tensorflow-core-native:linux-x86_64-gpu ` artifact.
46
47
47
48
In addition, a separate dependency on the ` tensorflow-framework ` library can be
48
49
added to benefit from a rich set of utilities for TensorFlow-based machine
@@ -118,7 +119,7 @@ repositories {
118
119
}
119
120
120
121
dependencies {
121
- compile group: 'org.tensorflow', name: 'tensorflow-core-platform', version: '1.0.0-rc.1 '
122
+ compile group: 'org.tensorflow', name: 'tensorflow-core-platform', version: '1.0.0-rc.2 '
122
123
}
123
124
```
124
125
0 commit comments