Click or drag to resize

GraphGRUBlockCellGrad Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation GRUBlockCellGrad(
	Output x,
	Output h_prev,
	Output w_ru,
	Output w_c,
	Output b_ru,
	Output b_c,
	Output r,
	Output u,
	Output c,
	Output d_h,
	string opName = "GRUBlockCellGrad"
)

Parameters

x
Type: Emgu.TFOutput
Input to the operation.
h_prev
Type: Emgu.TFOutput
Input to the operation.
w_ru
Type: Emgu.TFOutput
Input to the operation.
w_c
Type: Emgu.TFOutput
Input to the operation.
b_ru
Type: Emgu.TFOutput
Input to the operation.
b_c
Type: Emgu.TFOutput
Input to the operation.
r
Type: Emgu.TFOutput
Input to the operation.
u
Type: Emgu.TFOutput
Input to the operation.
c
Type: Emgu.TFOutput
Input to the operation.
d_h
Type: Emgu.TFOutput
Input to the operation.
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] d_x(type: DtInvalid). [1] d_h_prev(type: DtInvalid). [2] d_c_bar(type: DtInvalid). [3] d_r_bar_u_bar(type: DtInvalid).
See Also