Click or drag to resize

GraphXlaDequantize Method

http://www.emgu.com
Takes the packed uint32 input and unpacks the input to uint8 to do

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.4.1.1202
Syntax
public Operation XlaDequantize(
	Output input,
	float min_range,
	float max_range,
	string mode,
	bool transpose_output,
	string opName = "XlaDequantize"
)

Parameters

input
Type: Emgu.TFOutput
Input to the operation: Input tensors whose types is uint32, shape is [d0, ..., dn].
min_range
Type: SystemSingle
The minimum scalar value possibly produced for the input.
max_range
Type: SystemSingle
The maximum scalar value possibly produced for the input.
mode
Type: SystemString
String to determine the dequantize mode in {"MIN_COMBINED", "MIN_FIRST", "SCALED"}.
transpose_output
Type: SystemBoolean
Boolean to determine if output is transposed. transpose_output is faster when input is large and rank of input is higher than 1.
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation

[Missing <returns> documentation for "M:Emgu.TF.Graph.XlaDequantize(Emgu.TF.Output,System.Single,System.Single,System.String,System.Boolean,System.String)"]

See Also