public final class
QuantizedConv2DPerChannel
Computes QuantizedConv2D per channel.
Nested Classes
class | QuantizedConv2DPerChannel.Options | Optional attributes for QuantizedConv2DPerChannel
|
Constants
String | OP_NAME | The name of this op, as known by TensorFlow core engine |
Public Methods
static <V extends TType> QuantizedConv2DPerChannel<V> |
create(Scope scope, Operand<? extends TType> input, Operand<? extends TType> filter, Operand<TFloat32> minInput, Operand<TFloat32> maxInput, Operand<TFloat32> minFilter, Operand<TFloat32> maxFilter, Class<V> outType, List<Long> strides, String padding, Options... options)
Factory method to create a class wrapping a new QuantizedConv2DPerChannel operation.
|
static QuantizedConv2DPerChannel.Options |
dilations(List<Long> dilations)
|
Output<TFloat32> |
maxOutput()
The maximum value of the final output tensor.
|
Output<TFloat32> |
minOutput()
The minimum value of the final output tensor.
|
Output<V> |
output()
The output tensor.
|
Inherited Methods
Constants
public static final String OP_NAME
The name of this op, as known by TensorFlow core engine
Constant Value:
"QuantizedConv2DPerChannel"
Public Methods
public static QuantizedConv2DPerChannel<V> create (Scope scope, Operand<? extends TType> input, Operand<? extends TType> filter, Operand<TFloat32> minInput, Operand<TFloat32> maxInput, Operand<TFloat32> minFilter, Operand<TFloat32> maxFilter, Class<V> outType, List<Long> strides, String padding, Options... options)
Factory method to create a class wrapping a new QuantizedConv2DPerChannel operation.
Parameters
scope | current scope |
---|---|
input | The original input tensor. |
filter | The original filter tensor. |
minInput | The minimum value of the input tensor |
maxInput | The maximum value of the input tensor. |
minFilter | The minimum value of the filter tensor. |
maxFilter | The maximum value of the filter tensor. |
outType | The quantized type of output tensor that needs to be converted. |
strides | list of stride values. |
options | carries optional attributes values |
Returns
- a new instance of QuantizedConv2DPerChannel
public static QuantizedConv2DPerChannel.Options dilations (List<Long> dilations)
Parameters
dilations | list of dilation values. |
---|