File tree Expand file tree Collapse file tree 4 files changed +11
-0
lines changed
tensorflow-core-api/src/main/java
tensorflow-core-generator/src/main/java
tensorflow-core-native/src/main/java
tensorflow-framework/src/main/java Expand file tree Collapse file tree 4 files changed +11
-0
lines changed Original file line number Diff line number Diff line change 1414limitations under the License.
1515=======================================================================
1616*/
17+
18+ /** Core module implementing the TensorFlow Java API and operator definitions. */
1719module tensorflow {
1820 requires transitive org .tensorflow .ndarray ;
1921 requires transitive tensorflow .nativelib ;
Original file line number Diff line number Diff line change 1414limitations under the License.
1515=======================================================================
1616*/
17+
18+ /**
19+ * Code to generate the Java side implementations of TensorFlow's ops based on the TensorFlow op
20+ * definition files.
21+ */
1722module tensorflow .generator {
1823 requires tensorflow .nativelib ;
1924 requires java .compiler ;
Original file line number Diff line number Diff line change 1414limitations under the License.
1515=======================================================================
1616*/
17+
18+ /** Native interop with the TensorFlow C API. */
1719module tensorflow .nativelib {
1820 requires transitive org .bytedeco .javacpp ;
1921 requires transitive com .google .protobuf ;
Original file line number Diff line number Diff line change 1414limitations under the License.
1515=======================================================================
1616*/
17+
18+ /** Higher level TensorFlow framework containing model definition and training operations. */
1719module tensorflow .framework {
1820 requires tensorflow ;
1921 requires org .tensorflow .ndarray ;
You can’t perform that action at this time.
0 commit comments