Click or drag to resize

GraphUniformQuantizedConvolutionHybrid Method

https://www.emgu.com/wiki/index.php/Emgu_TF
UniformQuantizedConvolutionHybrid

Namespace:  Emgu.TF
Assembly:  Emgu.TF (in Emgu.TF.dll) Version: 2.16.1.1620+d2904aaafaa66327b642f4fbd5e3c7133dd331e0
Syntax
public Operation UniformQuantizedConvolutionHybrid(
	Output lhs,
	Output rhs,
	Output rhs_scales,
	Output rhs_zero_points,
	DataType Tout,
	string padding,
	long rhs_quantization_min_val,
	long rhs_quantization_max_val,
	long[] window_strides = null,
	long[] explicit_padding = null,
	long[] lhs_dilation = null,
	long[] rhs_dilation = null,
	long batch_group_count = 1,
	long feature_group_count = 1,
	string dimension_numbers = null,
	long rhs_quantization_axis = -1,
	string opName = "UniformQuantizedConvolutionHybrid"
)

Parameters

lhs
Type: Emgu.TFOutput
Input to the operation.
rhs
Type: Emgu.TFOutput
Input to the operation.
rhs_scales
Type: Emgu.TFOutput
Input to the operation.
rhs_zero_points
Type: Emgu.TFOutput
Input to the operation.
Tout
Type: Emgu.TFDataType
Tout
padding
Type: SystemString
padding
rhs_quantization_min_val
Type: SystemInt64
rhs quantization min val
rhs_quantization_max_val
Type: SystemInt64
rhs quantization max val
window_strides (Optional)
Type: SystemInt64
window strides
explicit_padding (Optional)
Type: SystemInt64
explicit padding
lhs_dilation (Optional)
Type: SystemInt64
lhs dilation
rhs_dilation (Optional)
Type: SystemInt64
rhs dilation
batch_group_count (Optional)
Type: SystemInt64
batch group count
feature_group_count (Optional)
Type: SystemInt64
feature group count
dimension_numbers (Optional)
Type: SystemString
dimension numbers
rhs_quantization_axis (Optional)
Type: SystemInt64
rhs quantization axis
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] output(type: DtInvalid).
See Also