@Operator public final class All extends PrimitiveOp implements Operand<Boolean>
Reduces `input` along the dimensions given in `axis`. Unless `keep_dims` is true, the rank of the tensor is reduced by 1 for each entry in `axis`. If `keep_dims` is true, the reduced dimensions are retained with length 1.
| Modifier and Type | Class and Description |
|---|---|
static class |
All.Options
Optional attributes for
All |
operation| Modifier and Type | Method and Description |
|---|---|
Output<Boolean> |
asOutput()
Returns the symbolic handle of a tensor.
|
static <T extends Number> |
create(Scope scope,
Operand<Boolean> input,
Operand<T> axis,
All.Options... options)
Factory method to create a class to wrap a new All operation to the graph.
|
static All.Options |
keepDims(Boolean keepDims) |
Output<Boolean> |
output()
The reduced tensor.
|
equals, hashCode, toStringpublic static <T extends Number> All create(Scope scope, Operand<Boolean> input, Operand<T> axis, All.Options... options)
scope - current graph scopeinput - The tensor to reduce.axis - The dimensions to reduce. Must be in the range
`[-rank(input), rank(input))`.options - carries optional attributes valuespublic static All.Options keepDims(Boolean keepDims)
keepDims - If true, retain reduced dimensions with length 1.public Output<Boolean> asOutput()
OperandInputs to TensorFlow operations are outputs of another TensorFlow operation. This method is used to obtain a symbolic handle that represents the computation of the input.
asOutput in interface Operand<Boolean>OperationBuilder.addInput(Output)Copyright © 2015–2019. All rights reserved.