Click or drag to resize

GraphCudnnRNNBackpropV3 Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation CudnnRNNBackpropV3(
	Output input,
	Output input_h,
	Output input_c,
	Output parameters,
	Output sequence_lengths,
	Output output,
	Output output_h,
	Output output_c,
	Output output_backprop,
	Output output_h_backprop,
	Output output_c_backprop,
	Output reserve_space,
	Output host_reserved,
	string rnn_mode = null,
	string input_mode = null,
	string direction = null,
	float dropout = 0f,
	long seed = 0,
	long seed2 = 0,
	long num_proj = 0,
	bool time_major = true,
	string opName = "CudnnRNNBackpropV3"
)

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.
sequence_lengths
Type: Emgu.TFOutput
Input to the operation.
output
Type: Emgu.TFOutput
Input to the operation.
output_h
Type: Emgu.TFOutput
Input to the operation.
output_c
Type: Emgu.TFOutput
Input to the operation.
output_backprop
Type: Emgu.TFOutput
Input to the operation.
output_h_backprop
Type: Emgu.TFOutput
Input to the operation.
output_c_backprop
Type: Emgu.TFOutput
Input to the operation.
reserve_space
Type: Emgu.TFOutput
Input to the operation.
host_reserved
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
num_proj (Optional)
Type: SystemInt64
num proj
time_major (Optional)
Type: SystemBoolean
time major
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] input_backprop(type: DtInvalid). [1] input_h_backprop(type: DtInvalid). [2] input_c_backprop(type: DtInvalid). [3] params_backprop(type: DtInvalid).
See Also