T - data type for output() output@Operator public final class QuantizedConcat<T> extends PrimitiveOp
operation| Modifier and Type | Method and Description |
|---|---|
static <T> QuantizedConcat<T> |
create(Scope scope,
Operand<Integer> concatDim,
Operand<T> values,
Iterable<Operand<Float>> inputMins,
Iterable<Operand<Float>> inputMaxes)
Factory method to create a class to wrap a new QuantizedConcat operation to the graph.
|
Output<T> |
output()
A `Tensor` with the concatenation of values stacked along the
`concat_dim` dimension.
|
Output<Float> |
outputMax()
The float value that the maximum quantized output value represents.
|
Output<Float> |
outputMin()
The float value that the minimum quantized output value represents.
|
equals, hashCode, toStringpublic static <T> QuantizedConcat<T> create(Scope scope, Operand<Integer> concatDim, Operand<T> values, Iterable<Operand<Float>> inputMins, Iterable<Operand<Float>> inputMaxes)
scope - current graph scopeconcatDim - 0-D. The dimension along which to concatenate. Must be in the
range [0, rank(values)).values - The `N` Tensors to concatenate. Their ranks and types must match,
and their sizes must match in all dimensions except `concat_dim`.inputMins - The minimum scalar values for each of the input tensors.inputMaxes - The maximum scalar values for each of the input tensors.public Output<T> output()
public Output<Float> outputMin()
Copyright © 2015–2019. All rights reserved.