@@ -13,12 +13,14 @@ Caution: The TensorFlow Java API is *not* covered by the TensorFlow
1313
1414## Requirements
1515
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
1717following platforms:
1818
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
2224
2325* Note: To use TensorFlow on Android, see
2426[ 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
4143Core API and the native dependencies it requires to run on all supported
4244platforms.
4345
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.
4647
4748In addition, a separate dependency on the ` tensorflow-framework ` library can be
4849added to benefit from a rich set of utilities for TensorFlow-based machine
@@ -118,7 +119,7 @@ repositories {
118119}
119120
120121dependencies {
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 '
122123}
123124```
124125
0 commit comments