Click or drag to resize

GraphUniformQuantizedAdd Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF (in Emgu.TF.dll) Version: 2.16.1.1620+d2904aaafaa66327b642f4fbd5e3c7133dd331e0
Syntax
public Operation UniformQuantizedAdd(
	Output lhs,
	Output rhs,
	Output lhs_scales,
	Output lhs_zero_points,
	Output rhs_scales,
	Output rhs_zero_points,
	Output output_scales,
	Output output_zero_points,
	long lhs_quantization_min_val,
	long lhs_quantization_max_val,
	long rhs_quantization_min_val,
	long rhs_quantization_max_val,
	long output_quantization_min_val,
	long output_quantization_max_val,
	long lhs_quantization_axis = -1,
	long rhs_quantization_axis = -1,
	long output_quantization_axis = -1,
	string opName = "UniformQuantizedAdd"
)

Parameters

lhs
Type: Emgu.TFOutput
Input to the operation.
rhs
Type: Emgu.TFOutput
Input to the operation.
lhs_scales
Type: Emgu.TFOutput
Input to the operation.
lhs_zero_points
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.
output_scales
Type: Emgu.TFOutput
Input to the operation.
output_zero_points
Type: Emgu.TFOutput
Input to the operation.
lhs_quantization_min_val
Type: SystemInt64
lhs quantization min val
lhs_quantization_max_val
Type: SystemInt64
lhs quantization max val
rhs_quantization_min_val
Type: SystemInt64
rhs quantization min val
rhs_quantization_max_val
Type: SystemInt64
rhs quantization max val
output_quantization_min_val
Type: SystemInt64
output quantization min val
output_quantization_max_val
Type: SystemInt64
output quantization max val
lhs_quantization_axis (Optional)
Type: SystemInt64
lhs quantization axis
rhs_quantization_axis (Optional)
Type: SystemInt64
rhs quantization axis
output_quantization_axis (Optional)
Type: SystemInt64
output quantization axis
opName (Optional)
Type: SystemString
The name of the operation

Return Value

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