1
1
# TensorFlow for Java
2
2
3
- *** !!! IMPORTANT NOTICE !!! This repository is UNDER CONSTRUCTION and does not yet host the code of the
4
- offical TensorFlow Java artifacts!***
5
-
6
- *** Please refer to the [ TensorFlow Java module] ( https://github.com/tensorflow/tensorflow/tree/master/tensorflow/java )
7
- of the main repository for the actual code.***
8
-
9
3
## Welcome to the Java world of TensorFlow!
10
4
11
5
TensorFlow can run on any JVM for building, training and running machine learning models. It comes with
@@ -30,19 +24,10 @@ The following describes the layout of the repository and its different artifacts
30
24
TensorFlow and just want a thin layer to access the TensorFlow runtime from the JVM
31
25
32
26
* ` tensorflow-framework `
33
- * Complete but fairly primitive API for building and training neural networks with TensorFlow
34
- * Intended audience: expert neural network developers who prefer to make explicit, detailed decisions
35
- about their models and training algorithms
36
-
37
- * ` tensorflow-keras ` (early WIP; only defined in ` dev ` profile)
38
- * Partially covers the framework API to allow simpler definition of models and training algorithms
39
- * Intended to be familiar if you know the Python Keras API, but prioritizes clean, idiomatic Java
40
- over fidelity to Python
41
- * Provides defaults based on common best practices
42
- * Allows developers to selectively be more explicit by overriding defaults or dipping into the framework API
43
- * Intended audience: neural network developers across the spectrum from beginner to expert who prefer to
44
- rely mostly on best-practice defaults and then selectively fine-tune
45
-
27
+ * Primary API for building and training neural networks with TensorFlow
28
+ * Intended audience: neural network developers
29
+ * For more information: [ tensorflow-framework/README.md] ( tensorflow-framework/README.md )
30
+
46
31
* ` ndarray `
47
32
* Generic utility library for n-dimensional data I/O operations
48
33
* Used by TensorFlow but does not depend on TensorFlow
@@ -172,8 +157,6 @@ This table shows the mapping between different version of TensorFlow for Java an
172
157
173
158
| TensorFlow Java Version | TensorFlow Version |
174
159
| ------------- | ------------- |
175
- | 0.1.0-SNAPSHOT | 2.2.0 |
176
- | 0.2.0-SNAPSHOT | 2.3.1 |
177
160
| 0.2.0 | 2.3.1 |
178
161
| 0.3.0-SNAPSHOT | 2.3.1 |
179
162
0 commit comments