Click or drag to resize

GraphGetMinibatchSplitsWithPhysicalReplica Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF (in Emgu.TF.dll) Version: 2.16.1.1620+d2904aaafaa66327b642f4fbd5e3c7133dd331e0
Syntax
public Operation GetMinibatchSplitsWithPhysicalReplica(
	Output program_key,
	Output row_ids,
	Output col_ids,
	Output gains,
	long sample_count,
	long num_replica,
	long table_vocab_size,
	long feature_width,
	long num_sc_per_chip,
	string table_name,
	string mini_batch_splits,
	string opName = "GetMinibatchSplitsWithPhysicalReplica"
)

Parameters

program_key
Type: Emgu.TFOutput
Input to the operation.
row_ids
Type: Emgu.TFOutput
Input to the operation.
col_ids
Type: Emgu.TFOutput
Input to the operation.
gains
Type: Emgu.TFOutput
Input to the operation.
sample_count
Type: SystemInt64
sample count
num_replica
Type: SystemInt64
num replica
table_vocab_size
Type: SystemInt64
table vocab size
feature_width
Type: SystemInt64
feature width
num_sc_per_chip
Type: SystemInt64
num sc per chip
table_name
Type: SystemString
table name
mini_batch_splits
Type: SystemString
mini batch splits
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] sorted_row_ids(type: DtInt32). [1] sorted_col_ids(type: DtInt32). [2] sorted_gains(type: DtFloat). [3] splits(type: DtInt64). [4] id_counts(type: DtInt32). [5] max_ids(type: DtInt32). [6] max_uniques(type: DtInt32).
See Also