V - data type for output() outputpublic final class QuantizedConv2DPerChannel<V> extends PrimitiveOp
| Modifier and Type | Class and Description |
|---|---|
static class |
QuantizedConv2DPerChannel.Options
Optional attributes for
QuantizedConv2DPerChannel |
operation| Modifier and Type | Method and Description |
|---|---|
static <V,T,U> QuantizedConv2DPerChannel<V> |
create(Scope scope,
Operand<T> input,
Operand<U> filter,
Operand<Float> minInput,
Operand<Float> maxInput,
Operand<Float> minFilter,
Operand<Float> maxFilter,
Class<V> outType,
List<Long> strides,
String padding,
QuantizedConv2DPerChannel.Options... options)
Factory method to create a class wrapping a new QuantizedConv2DPerChannel operation.
|
static QuantizedConv2DPerChannel.Options |
dilations(List<Long> dilations) |
Output<Float> |
maxOutput()
The maximum value of the final output tensor.
|
Output<Float> |
minOutput()
The minimum value of the final output tensor.
|
Output<V> |
output()
The output tensor.
|
equals, hashCode, op, toStringpublic static <V,T,U> QuantizedConv2DPerChannel<V> create(Scope scope, Operand<T> input, Operand<U> filter, Operand<Float> minInput, Operand<Float> maxInput, Operand<Float> minFilter, Operand<Float> maxFilter, Class<V> outType, List<Long> strides, String padding, QuantizedConv2DPerChannel.Options... options)
scope - current scopeinput - The original input tensor.filter - The original filter tensor.minInput - The minimum value of the input tensormaxInput - 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.padding - options - carries optional attributes valuespublic static QuantizedConv2DPerChannel.Options dilations(List<Long> dilations)
dilations - list of dilation values.Copyright © 2015–2019. All rights reserved.