Click or drag to resize

GraphGetMinibatchesInCsrWithPhysicalReplica Method

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

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

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.
splits
Type: Emgu.TFOutput
Input to the operation.
id_counts
Type: Emgu.TFOutput
Input to the operation.
sample_count
Type: SystemInt64
sample count
num_replica
Type: SystemInt64
num replica
max_minibatches_per_sc
Type: SystemInt64
max minibatches per sc
max_ids_per_chip_per_sample
Type: SystemInt64
max ids per chip per sample
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_in_csr
Type: SystemString
mini batch in csr
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] row_pointers(type: DtInt32). [1] sorted_sample_ids(type: DtInt32). [2] sorted_token_ids(type: DtInt32). [3] sorted_gains(type: DtFloat). [4] row_pointers_unpadded_size(type: DtInt32). [5] ids_unpadded_size(type: DtInt32). [6] num_minibatches_per_physical_sparse_core(type: DtInt32).
See Also