T - data type for output() output@Operator public final class SegmentMin<T extends Number> extends PrimitiveOp implements Operand<T>
Read [the section on segmentation](https://tensorflow.org/api_guides/python/math_ops#Segmentation) for an explanation of segments.
Computes a tensor such that \\(output_i = \min_j(data_j)\\) where `min` is over `j` such that `segment_ids[j] == i`.
If the min is empty for a given segment ID `i`, `output[i] = 0`.
operation| Modifier and Type | Method and Description |
|---|---|
Output<T> |
asOutput()
Returns the symbolic handle of a tensor.
|
static <T extends Number,U extends Number> |
create(Scope scope,
Operand<T> data,
Operand<U> segmentIds)
Factory method to create a class to wrap a new SegmentMin operation to the graph.
|
Output<T> |
output()
Has same shape as data, except for dimension 0 which
has size `k`, the number of segments.
|
equals, hashCode, toStringpublic static <T extends Number,U extends Number> SegmentMin<T> create(Scope scope, Operand<T> data, Operand<U> segmentIds)
scope - current graph scopedata - segmentIds - A 1-D tensor whose size is equal to the size of `data`'s
first dimension. Values should be sorted and can be repeated.public Output<T> output()
public Output<T> 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<T extends Number>OperationBuilder.addInput(Output)Copyright © 2015–2019. All rights reserved.