Click or drag to resize

GraphCudnnRNN Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation CudnnRNN(
	Output input,
	Output input_h,
	Output input_c,
	Output parameters,
	string rnn_mode = null,
	string input_mode = null,
	string direction = null,
	float dropout = 0f,
	long seed = 0,
	long seed2 = 0,
	bool is_training = true,
	string opName = "CudnnRNN"
)

Parameters

input
Type: Emgu.TFOutput
Input to the operation.
input_h
Type: Emgu.TFOutput
Input to the operation.
input_c
Type: Emgu.TFOutput
Input to the operation.
parameters
Type: Emgu.TFOutput
Input to the operation.
rnn_mode (Optional)
Type: SystemString
rnn mode
input_mode (Optional)
Type: SystemString
input mode
direction (Optional)
Type: SystemString
direction
dropout (Optional)
Type: SystemSingle
dropout
seed (Optional)
Type: SystemInt64
seed
seed2 (Optional)
Type: SystemInt64
seed2
is_training (Optional)
Type: SystemBoolean
is training
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] output(type: DtInvalid). [1] output_h(type: DtInvalid). [2] output_c(type: DtInvalid). [3] reserve_space(type: DtInvalid).
See Also