Skip to content

Commit 35b73ce

Browse files
JimClarke5deansher
andauthored
Metrics phase 2 (#222)
Co-authored-by: deansher <[email protected]>
1 parent 3de6ee8 commit 35b73ce

File tree

73 files changed

+9626
-102
lines changed

Some content is hidden

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

73 files changed

+9626
-102
lines changed

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -364,10 +364,10 @@ public final class Ops {
364364

365365
public final SignalOps signal;
366366

367-
public final TrainOps train;
368-
369367
public final QuantizationOps quantization;
370368

369+
public final TrainOps train;
370+
371371
private final Scope scope;
372372

373373
private Ops(Scope scope) {
@@ -390,8 +390,8 @@ private Ops(Scope scope) {
390390
math = new MathOps(this);
391391
audio = new AudioOps(this);
392392
signal = new SignalOps(this);
393-
train = new TrainOps(this);
394393
quantization = new QuantizationOps(this);
394+
train = new TrainOps(this);
395395
}
396396

397397
/**

tensorflow-framework/src/main/java/org/tensorflow/framework/constraints/Constraint.java

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ public Constraint(Ops tf) {
4242
*
4343
* @param weights the weights
4444
* @return the constrained weights
45+
* @param <T> the data type for weights and results.
4546
*/
4647
public abstract <T extends TNumber> Operand<T> call(Operand<T> weights);
4748

0 commit comments

Comments
 (0)