Click or drag to resize

GraphLoadAndRemapMatrix Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation LoadAndRemapMatrix(
	Output ckpt_path,
	Output old_tensor_name,
	Output row_remapping,
	Output col_remapping,
	Output initializing_values,
	long num_rows,
	long num_cols,
	long max_rows_in_memory = -1,
	string opName = "LoadAndRemapMatrix"
)

Parameters

ckpt_path
Type: Emgu.TFOutput
Input to the operation.
old_tensor_name
Type: Emgu.TFOutput
Input to the operation.
row_remapping
Type: Emgu.TFOutput
Input to the operation.
col_remapping
Type: Emgu.TFOutput
Input to the operation.
initializing_values
Type: Emgu.TFOutput
Input to the operation.
num_rows
Type: SystemInt64
num rows
num_cols
Type: SystemInt64
num cols
max_rows_in_memory (Optional)
Type: SystemInt64
max rows in memory
opName (Optional)
Type: SystemString
The name of the operation

Return Value

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