Skip to content

Commit 5931965

Browse files
committed
Module info help text.
1 parent ab6fff2 commit 5931965

File tree

4 files changed

+11
-0
lines changed

4 files changed

+11
-0
lines changed

tensorflow-core/tensorflow-core-api/src/main/java/module-info.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
limitations under the License.
1515
=======================================================================
1616
*/
17+
18+
/** Core module implementing the TensorFlow Java API and operator definitions. */
1719
module tensorflow {
1820
requires transitive org.tensorflow.ndarray;
1921
requires transitive tensorflow.nativelib;

tensorflow-core/tensorflow-core-generator/src/main/java/module-info.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@
1414
limitations 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+
*/
1722
module tensorflow.generator {
1823
requires tensorflow.nativelib;
1924
requires java.compiler;

tensorflow-core/tensorflow-core-native/src/main/java/module-info.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
limitations under the License.
1515
=======================================================================
1616
*/
17+
18+
/** Native interop with the TensorFlow C API. */
1719
module tensorflow.nativelib {
1820
requires transitive org.bytedeco.javacpp;
1921
requires transitive com.google.protobuf;

tensorflow-framework/src/main/java/module-info.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
limitations under the License.
1515
=======================================================================
1616
*/
17+
18+
/** Higher level TensorFlow framework containing model definition and training operations. */
1719
module tensorflow.framework {
1820
requires tensorflow;
1921
requires org.tensorflow.ndarray;

0 commit comments

Comments
 (0)