Click or drag to resize

GraphBatchFunction Method

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

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

Parameters

in_tensors
Type: Emgu.TFOutput
Input to the operation.
captured_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
Tout
Type: Emgu.TFDataType
Tout
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
enable_large_batch_splitting (Optional)
Type: SystemBoolean
enable large batch splitting
opName (Optional)
Type: SystemString
The name of the operation

Return Value

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