Click or drag to resize

GraphBatch Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation Batch(
	Output in_tensors,
	long num_batch_threads,
	long max_batch_size,
	long batch_timeout_micros,
	long grad_timeout_micros,
	long max_enqueued_batches = 10,
	long[] allowed_batch_sizes = null,
	string container = null,
	string shared_name = null,
	string batching_queue = null,
	string opName = "Batch"
)

Parameters

in_tensors
Type: Emgu.TFOutput
Input to the operation.
num_batch_threads
Type: SystemInt64
num batch threads
max_batch_size
Type: SystemInt64
max batch size
batch_timeout_micros
Type: SystemInt64
batch timeout micros
grad_timeout_micros
Type: SystemInt64
grad timeout micros
max_enqueued_batches (Optional)
Type: SystemInt64
max enqueued batches
allowed_batch_sizes (Optional)
Type: SystemInt64
allowed batch sizes
container (Optional)
Type: SystemString
container
shared_name (Optional)
Type: SystemString
shared name
batching_queue (Optional)
Type: SystemString
batching queue
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] batched_tensors(type: DtInvalid). [1] batch_index(type: DtInt64). [2] id(type: DtInt64).
See Also