Skip to content

Commit 9a62e68

Browse files
Fix javadoc
Co-authored-by: Adam Pocock <[email protected]>
1 parent 1e86980 commit 9a62e68

File tree

265 files changed

+870
-862
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

265 files changed

+870
-862
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
<scm>
2828
<url>https://github.com/tensorflow/java.git</url>
29-
<connection>[email protected]:tensorflow/java.git</connection>
29+
<connection>scm:[email protected]:tensorflow/java.git</connection>
3030
<developerConnection>scm:git:https://github.com/tensorflow/java.git</developerConnection>
3131
</scm>
3232

tensorflow-core/tensorflow-core-api/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,12 @@
230230
<goal>jar</goal>
231231
</goals>
232232
<configuration>
233+
<additionalJOptions>
234+
<additionalJOption>-Xmaxerrs</additionalJOption>
235+
<additionalJOption>65536</additionalJOption>
236+
<additionalJOption>-Xmaxwarns</additionalJOption>
237+
<additionalJOption>65536</additionalJOption>
238+
</additionalJOptions>
233239
<failOnError>false</failOnError>
234240
<minmemory>256m</minmemory>
235241
<maxmemory>2048m</maxmemory>

tensorflow-core/tensorflow-core-api/src/api/api_def_SegmentSumV2.pbtxt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,18 @@ op {
44
endpoint {
55
name: "math.SegmentSum"
66
}
7+
description: <<END
8+
Read
9+
[the section on segmentation](https://tensorflow.org/api_docs/python/tf/math#Segmentation)
10+
for an explanation of segments.
11+
12+
Computes a tensor such that
13+
\\(output_i = \sum_j data_j\\) where sum is over `j` such
14+
that `segment_ids[j] == i`.
15+
16+
If the sum is empty for a given segment ID `i`, `output[i] = 0`.
17+
18+
Note that this op is currently only supported with jit_compile=True.
19+
20+
END
721
}

tensorflow-core/tensorflow-core-api/src/gen/annotations/org/tensorflow/op/AudioOps.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
/**
3030
* An API for building {@code audio} operations as {@link Op Op}s
3131
*
32-
* @see {@link Ops}
32+
* @see Ops
3333
*/
3434
public final class AudioOps {
3535
private final Scope scope;

tensorflow-core/tensorflow-core-api/src/gen/annotations/org/tensorflow/op/BitwiseOps.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
/**
3030
* An API for building {@code bitwise} operations as {@link Op Op}s
3131
*
32-
* @see {@link Ops}
32+
* @see Ops
3333
*/
3434
public final class BitwiseOps {
3535
private final Scope scope;

tensorflow-core/tensorflow-core-api/src/gen/annotations/org/tensorflow/op/ClusterOps.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
/**
2727
* An API for building {@code cluster} operations as {@link Op Op}s
2828
*
29-
* @see {@link Ops}
29+
* @see Ops
3030
*/
3131
public final class ClusterOps {
3232
private final Scope scope;

tensorflow-core/tensorflow-core-api/src/gen/annotations/org/tensorflow/op/CollectiveOps.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
/**
3535
* An API for building {@code collective} operations as {@link Op Op}s
3636
*
37-
* @see {@link Ops}
37+
* @see Ops
3838
*/
3939
public final class CollectiveOps {
4040
private final Scope scope;

tensorflow-core/tensorflow-core-api/src/gen/annotations/org/tensorflow/op/DataExperimentalOps.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
/**
6767
* An API for building {@code data.experimental} operations as {@link Op Op}s
6868
*
69-
* @see {@link Ops}
69+
* @see Ops
7070
*/
7171
public final class DataExperimentalOps {
7272
private final Scope scope;

tensorflow-core/tensorflow-core-api/src/gen/annotations/org/tensorflow/op/DataOps.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@
155155
/**
156156
* An API for building {@code data} operations as {@link Op Op}s
157157
*
158-
* @see {@link Ops}
158+
* @see Ops
159159
*/
160160
public final class DataOps {
161161
public final DataExperimentalOps experimental;

tensorflow-core/tensorflow-core-api/src/gen/annotations/org/tensorflow/op/DebuggingOps.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
/**
2525
* An API for building {@code debugging} operations as {@link Op Op}s
2626
*
27-
* @see {@link Ops}
27+
* @see Ops
2828
*/
2929
public final class DebuggingOps {
3030
private final Scope scope;

0 commit comments

Comments
 (0)