Click or drag to resize

GraphBlockLSTMGradV2 Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation BlockLSTMGradV2(
	Output seq_len_max,
	Output x,
	Output cs_prev,
	Output h_prev,
	Output w,
	Output wci,
	Output wcf,
	Output wco,
	Output b,
	Output i,
	Output cs,
	Output f,
	Output o,
	Output ci,
	Output co,
	Output h,
	Output cs_grad,
	Output h_grad,
	bool use_peephole,
	string opName = "BlockLSTMGradV2"
)

Parameters

seq_len_max
Type: Emgu.TFOutput
Input to the operation.
x
Type: Emgu.TFOutput
Input to the operation.
cs_prev
Type: Emgu.TFOutput
Input to the operation.
h_prev
Type: Emgu.TFOutput
Input to the operation.
w
Type: Emgu.TFOutput
Input to the operation.
wci
Type: Emgu.TFOutput
Input to the operation.
wcf
Type: Emgu.TFOutput
Input to the operation.
wco
Type: Emgu.TFOutput
Input to the operation.
b
Type: Emgu.TFOutput
Input to the operation.
i
Type: Emgu.TFOutput
Input to the operation.
cs
Type: Emgu.TFOutput
Input to the operation.
f
Type: Emgu.TFOutput
Input to the operation.
o
Type: Emgu.TFOutput
Input to the operation.
ci
Type: Emgu.TFOutput
Input to the operation.
co
Type: Emgu.TFOutput
Input to the operation.
h
Type: Emgu.TFOutput
Input to the operation.
cs_grad
Type: Emgu.TFOutput
Input to the operation.
h_grad
Type: Emgu.TFOutput
Input to the operation.
use_peephole
Type: SystemBoolean
use peephole
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] x_grad(type: DtInvalid). [1] cs_prev_grad(type: DtInvalid). [2] h_prev_grad(type: DtInvalid). [3] w_grad(type: DtInvalid). [4] wci_grad(type: DtInvalid). [5] wcf_grad(type: DtInvalid). [6] wco_grad(type: DtInvalid). [7] b_grad(type: DtInvalid).
See Also